@etherisc/gif-next 0.0.2-fe88ad7-208 → 0.0.2-ff1bf36-818

Sign up to get free protection for your applications and to get access to all the features.
Files changed (701) hide show
  1. package/README.md +59 -18
  2. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  3. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1253 -0
  4. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  5. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
  6. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  7. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
  8. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  9. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  10. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1032 -0
  12. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
  14. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
  16. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  17. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
  18. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
  20. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
  22. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  23. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1489 -0
  24. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
  26. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1159 -0
  28. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1502 -0
  30. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +842 -0
  32. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +906 -0
  34. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +914 -0
  36. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  37. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
  38. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  39. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +262 -1347
  40. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  41. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +389 -202
  42. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  43. package/artifacts/contracts/instance/Instance.sol/Instance.json +417 -2548
  44. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  45. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1626 -0
  46. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  47. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
  48. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  49. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +668 -397
  50. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  51. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +542 -345
  52. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  53. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +369 -95
  54. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  55. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3469 -0
  56. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  57. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  58. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  59. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -49
  60. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  61. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  62. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  63. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
  64. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  65. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
  66. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  67. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +25 -150
  68. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  69. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  70. package/artifacts/contracts/instance/module/{ITreasury.sol/ITreasury.json → IComponents.sol/IComponents.json} +2 -2
  71. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  72. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  73. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  74. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  75. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  76. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  77. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +1126 -0
  78. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  79. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
  80. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  81. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  82. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  83. package/artifacts/contracts/{instance/service/IBundleService.sol/IBundleService.json → oracle/IOracleComponent.sol/IOracleComponent.json} +407 -311
  84. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  85. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → oracle/IOracleService.sol/IOracleService.json} +303 -292
  86. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  87. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1018 -0
  88. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  89. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1034 -0
  90. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  91. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +730 -0
  92. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  93. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1395 -0
  94. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  95. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
  96. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  97. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1466 -0
  98. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  99. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +818 -0
  100. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  101. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +907 -0
  102. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  103. package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/IPoolComponent.sol/IPoolComponent.json} +408 -341
  104. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  105. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1218 -0
  106. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  107. package/artifacts/contracts/pool/Pool.sol/Pool.json +1181 -0
  108. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  109. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1625 -0
  110. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  111. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +758 -0
  112. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  113. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +852 -0
  114. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  115. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +722 -0
  116. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  117. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1243 -0
  118. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  119. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
  120. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  121. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1331 -0
  122. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  123. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +822 -0
  124. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  125. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IApplicationService.sol/IApplicationService.json} +216 -235
  126. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  127. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +788 -0
  128. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  129. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +800 -0
  130. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  131. package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → product/IPricingService.sol/IPricingService.json} +270 -220
  132. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  133. package/artifacts/contracts/{components/Product.sol/Product.json → product/IProductComponent.sol/IProductComponent.json} +448 -275
  134. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  135. package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → product/IRiskService.sol/IRiskService.json} +135 -132
  136. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  137. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1263 -0
  138. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  139. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +782 -0
  140. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  141. package/artifacts/contracts/product/PricingService.sol/PricingService.json +1017 -0
  142. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  143. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
  144. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  145. package/artifacts/contracts/product/Product.sol/Product.json +1201 -0
  146. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  147. package/artifacts/contracts/product/RiskService.sol/RiskService.json +695 -0
  148. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  149. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +702 -0
  150. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  151. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
  152. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  153. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +281 -15
  154. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  155. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +224 -260
  156. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  157. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
  158. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  159. package/artifacts/contracts/registry/Registry.sol/Registry.json +539 -35
  160. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  161. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1746 -0
  162. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  163. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +538 -281
  164. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  165. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +352 -82
  166. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  167. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
  168. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  169. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1159 -0
  170. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  171. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
  172. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  173. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +360 -96
  174. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  175. package/artifacts/contracts/shared/Component.sol/Component.json +832 -0
  176. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  177. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1680 -0
  178. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  179. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +804 -0
  180. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  181. package/artifacts/contracts/{instance/base/ComponentServiceBase.sol/ComponentServiceBase.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +199 -192
  182. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  183. package/artifacts/contracts/{components/BaseComponent.sol/BaseComponent.json → shared/IComponent.sol/IComponent.json} +269 -146
  184. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  185. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1033 -0
  186. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  187. package/artifacts/contracts/{components/Distribution.sol/Distribution.json → shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json} +262 -237
  188. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  189. package/artifacts/contracts/{instance/IInstanceBase.sol/IInstanceBase.json → shared/IKeyValueStore.sol/IKeyValueStore.json} +60 -34
  190. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  191. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
  192. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  193. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +34 -30
  194. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  195. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
  196. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  197. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +15 -35
  198. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  199. package/artifacts/contracts/{experiment/inheritance/IA.sol/ISharedA.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +15 -17
  200. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  201. package/artifacts/contracts/shared/IService.sol/IService.json +84 -159
  202. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
  203. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
  204. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  205. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +73 -0
  206. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  207. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +940 -0
  208. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  209. package/artifacts/contracts/{instance/base/IKeyValueStore.sol/IKeyValueStore.json → shared/KeyValueStore.sol/KeyValueStore.json} +88 -20
  210. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  211. package/artifacts/contracts/{experiment/statemachine/ISM.sol/ISM.json → shared/Lifecycle.sol/Lifecycle.json} +54 -45
  212. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  213. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  214. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  215. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +115 -29
  216. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  217. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
  218. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  219. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +132 -53
  220. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  221. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
  222. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  223. package/artifacts/contracts/shared/Service.sol/Service.json +189 -150
  224. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  225. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +382 -9
  226. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  227. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +108 -0
  228. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  229. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1412 -0
  230. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  231. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
  232. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  233. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +387 -0
  234. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  235. package/artifacts/contracts/staking/Staking.sol/Staking.json +1941 -0
  236. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  237. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
  238. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  239. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +761 -0
  240. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  241. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
  242. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  243. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1343 -0
  244. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  245. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +718 -0
  246. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  247. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
  248. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  249. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +576 -0
  250. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  251. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  252. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  253. package/artifacts/contracts/type/Amount.sol/AmountLib.json +374 -0
  254. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  255. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  256. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  257. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
  258. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  259. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  260. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  261. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  262. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  263. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  264. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  265. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  266. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  267. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  268. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  269. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
  270. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  271. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  272. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  273. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  274. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  275. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  276. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  277. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
  278. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  279. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
  280. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  281. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +222 -0
  282. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  283. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  284. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  285. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  286. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  287. package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
  288. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  289. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  290. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  291. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  292. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  293. package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
  294. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  295. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +535 -0
  296. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  297. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  298. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  299. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
  300. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  301. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +55 -0
  302. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  303. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +617 -0
  304. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  305. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  306. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  307. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +78 -0
  308. package/contracts/authorization/AccessAdmin.sol +591 -0
  309. package/contracts/authorization/AccessManagerCloneable.sol +16 -0
  310. package/contracts/authorization/Authorization.sol +217 -0
  311. package/contracts/authorization/IAccess.sol +48 -0
  312. package/contracts/authorization/IAccessAdmin.sol +136 -0
  313. package/contracts/authorization/IAuthorization.sol +54 -0
  314. package/contracts/authorization/IModuleAuthorization.sol +21 -0
  315. package/contracts/authorization/IServiceAuthorization.sol +38 -0
  316. package/contracts/authorization/ModuleAuthorization.sol +78 -0
  317. package/contracts/authorization/ServiceAuthorization.sol +90 -0
  318. package/contracts/distribution/BasicDistribution.sol +138 -0
  319. package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
  320. package/contracts/distribution/Distribution.sol +295 -0
  321. package/contracts/distribution/DistributionService.sol +322 -0
  322. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  323. package/contracts/distribution/IDistributionComponent.sol +52 -0
  324. package/contracts/distribution/IDistributionService.sol +95 -0
  325. package/contracts/instance/{BundleManager.sol → BundleSet.sol} +40 -43
  326. package/contracts/instance/IInstance.sol +56 -55
  327. package/contracts/instance/IInstanceService.sol +73 -21
  328. package/contracts/instance/Instance.sol +162 -209
  329. package/contracts/instance/InstanceAdmin.sol +285 -0
  330. package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
  331. package/contracts/instance/InstanceReader.sol +180 -87
  332. package/contracts/instance/InstanceService.sol +364 -247
  333. package/contracts/instance/InstanceServiceManager.sol +13 -27
  334. package/contracts/instance/InstanceStore.sol +277 -0
  335. package/contracts/instance/base/BalanceStore.sol +123 -0
  336. package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +4 -22
  337. package/contracts/instance/base/ObjectCounter.sol +21 -0
  338. package/contracts/instance/base/ObjectLifecycle.sol +105 -0
  339. package/contracts/instance/{ObjectManager.sol → base/ObjectSet.sol} +20 -42
  340. package/contracts/instance/module/IAccess.sol +19 -21
  341. package/contracts/instance/module/IBundle.sol +8 -8
  342. package/contracts/instance/module/IComponents.sol +46 -0
  343. package/contracts/instance/module/IDistribution.sol +6 -4
  344. package/contracts/instance/module/IPolicy.sol +56 -17
  345. package/contracts/instance/module/IRisk.sol +1 -1
  346. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  347. package/contracts/oracle/BasicOracle.sol +48 -0
  348. package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
  349. package/contracts/oracle/IOracle.sol +36 -0
  350. package/contracts/oracle/IOracleComponent.sol +33 -0
  351. package/contracts/oracle/IOracleService.sol +65 -0
  352. package/contracts/oracle/Oracle.sol +166 -0
  353. package/contracts/oracle/OracleService.sol +278 -0
  354. package/contracts/oracle/OracleServiceManager.sol +39 -0
  355. package/contracts/pool/BasicPool.sol +166 -0
  356. package/contracts/pool/BasicPoolAuthorization.sol +58 -0
  357. package/contracts/pool/BundleService.sol +436 -0
  358. package/contracts/pool/BundleServiceManager.sol +39 -0
  359. package/contracts/pool/IBundleService.sol +134 -0
  360. package/contracts/pool/IPoolComponent.sol +58 -0
  361. package/contracts/pool/IPoolService.sol +163 -0
  362. package/contracts/pool/Pool.sol +328 -0
  363. package/contracts/pool/PoolService.sol +541 -0
  364. package/contracts/pool/PoolServiceManager.sol +39 -0
  365. package/contracts/product/ApplicationService.sol +250 -0
  366. package/contracts/product/ApplicationServiceManager.sol +38 -0
  367. package/contracts/product/BasicProduct.sol +52 -0
  368. package/contracts/product/BasicProductAuthorization.sol +43 -0
  369. package/contracts/product/ClaimService.sol +416 -0
  370. package/contracts/product/ClaimServiceManager.sol +38 -0
  371. package/contracts/product/IApplicationService.sol +63 -0
  372. package/contracts/product/IClaimService.sol +100 -0
  373. package/contracts/product/IPolicyService.sol +84 -0
  374. package/contracts/product/IPricingService.sol +39 -0
  375. package/contracts/product/IProductComponent.sol +40 -0
  376. package/contracts/product/IRiskService.sol +33 -0
  377. package/contracts/product/PolicyService.sol +584 -0
  378. package/contracts/product/PolicyServiceManager.sol +39 -0
  379. package/contracts/product/PricingService.sol +304 -0
  380. package/contracts/product/PricingServiceManager.sol +39 -0
  381. package/contracts/product/Product.sol +410 -0
  382. package/contracts/product/RiskService.sol +97 -0
  383. package/contracts/product/RiskServiceManager.sol +39 -0
  384. package/contracts/registry/ChainNft.sol +16 -1
  385. package/contracts/registry/IRegistry.sol +67 -24
  386. package/contracts/registry/IRegistryService.sol +45 -34
  387. package/contracts/registry/ITransferInterceptor.sol +1 -0
  388. package/contracts/registry/Registry.sol +317 -137
  389. package/contracts/registry/RegistryAdmin.sol +374 -0
  390. package/contracts/registry/RegistryService.sol +114 -185
  391. package/contracts/registry/RegistryServiceManager.sol +24 -33
  392. package/contracts/registry/ReleaseLifecycle.sol +27 -0
  393. package/contracts/registry/ReleaseRegistry.sol +485 -0
  394. package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
  395. package/contracts/registry/TokenRegistry.sol +263 -58
  396. package/contracts/shared/Component.sol +268 -0
  397. package/contracts/shared/ComponentService.sol +641 -0
  398. package/contracts/shared/ComponentServiceManager.sol +35 -0
  399. package/contracts/shared/ComponentVerifyingService.sol +117 -0
  400. package/contracts/shared/IComponent.sol +70 -0
  401. package/contracts/shared/IComponentService.sol +108 -0
  402. package/contracts/shared/IInstanceLinkedComponent.sol +49 -0
  403. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  404. package/contracts/{instance/base → shared}/ILifecycle.sol +3 -4
  405. package/contracts/shared/INftOwnable.sol +13 -12
  406. package/contracts/shared/IPolicyHolder.sol +45 -0
  407. package/contracts/shared/IRegisterable.sol +4 -6
  408. package/contracts/shared/IRegistryLinked.sol +11 -0
  409. package/contracts/shared/IService.sol +15 -6
  410. package/contracts/shared/InitializableCustom.sol +177 -0
  411. package/contracts/shared/InitializableERC165.sol +27 -0
  412. package/contracts/shared/InstanceLinkedComponent.sol +172 -0
  413. package/contracts/shared/KeyValueStore.sol +131 -0
  414. package/contracts/shared/Lifecycle.sol +77 -0
  415. package/contracts/shared/NftIdSet.sol +65 -0
  416. package/contracts/shared/NftOwnable.sol +59 -86
  417. package/contracts/shared/PolicyHolder.sol +99 -0
  418. package/contracts/shared/Registerable.sol +26 -41
  419. package/contracts/shared/RegistryLinked.sol +43 -0
  420. package/contracts/shared/Service.sol +57 -33
  421. package/contracts/shared/TokenHandler.sol +122 -10
  422. package/contracts/shared/TokenHandlerDeployerLib.sol +12 -0
  423. package/contracts/staking/IStaking.sol +167 -0
  424. package/contracts/staking/IStakingService.sol +160 -0
  425. package/contracts/staking/StakeManagerLib.sol +206 -0
  426. package/contracts/staking/Staking.sol +497 -0
  427. package/contracts/staking/StakingLifecycle.sol +23 -0
  428. package/contracts/staking/StakingManager.sol +50 -0
  429. package/contracts/staking/StakingReader.sol +183 -0
  430. package/contracts/staking/StakingService.sol +407 -0
  431. package/contracts/staking/StakingServiceManager.sol +44 -0
  432. package/contracts/staking/StakingStore.sol +605 -0
  433. package/contracts/staking/TargetManagerLib.sol +207 -0
  434. package/contracts/{types → type}/AddressSet.sol +1 -1
  435. package/contracts/type/Amount.sol +135 -0
  436. package/contracts/{types → type}/Blocknumber.sol +27 -3
  437. package/contracts/type/ClaimId.sol +75 -0
  438. package/contracts/{types → type}/DistributorType.sol +2 -2
  439. package/contracts/{types → type}/Fee.sol +33 -23
  440. package/contracts/{types → type}/NftId.sol +21 -15
  441. package/contracts/{types → type}/NftIdSet.sol +2 -2
  442. package/contracts/type/ObjectType.sol +271 -0
  443. package/contracts/type/PayoutId.sol +82 -0
  444. package/contracts/{types → type}/Referral.sol +6 -1
  445. package/contracts/type/RequestId.sol +75 -0
  446. package/contracts/{types → type}/RiskId.sol +1 -1
  447. package/contracts/type/RoleId.sol +174 -0
  448. package/contracts/type/Seconds.sol +93 -0
  449. package/contracts/type/Selector.sol +102 -0
  450. package/contracts/{types → type}/StateId.sol +34 -4
  451. package/contracts/type/String.sol +53 -0
  452. package/contracts/{types → type}/Timestamp.sol +34 -15
  453. package/contracts/{types → type}/UFixed.sol +35 -9
  454. package/contracts/{types → type}/Version.sol +5 -2
  455. package/contracts/{shared → upgradeability}/IVersionable.sol +5 -48
  456. package/contracts/upgradeability/ProxyManager.sol +198 -0
  457. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  458. package/contracts/upgradeability/Versionable.sol +59 -0
  459. package/package.json +10 -7
  460. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  461. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  462. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  463. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  464. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -152
  465. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  466. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -275
  467. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  468. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -157
  469. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  470. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  471. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
  472. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
  473. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
  474. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
  475. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
  476. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
  477. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  478. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  479. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  480. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  481. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  482. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  483. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  484. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  485. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  486. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  487. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  488. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  489. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  490. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  491. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  492. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  493. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  494. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  495. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  496. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  497. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  498. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  499. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  500. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  501. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  502. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  503. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  504. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  505. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  506. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  507. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  508. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  509. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
  510. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
  511. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  512. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -788
  513. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  514. package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  515. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  516. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1047
  517. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  518. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +0 -763
  519. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  520. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -285
  521. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  522. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  523. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
  524. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  525. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  526. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  527. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -502
  528. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  529. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  530. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  531. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  532. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  533. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -945
  534. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  535. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -432
  536. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  537. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -814
  538. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  539. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -693
  540. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  541. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -420
  542. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  543. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  544. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +0 -466
  545. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  546. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +0 -446
  547. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  548. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  549. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  550. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  551. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -993
  552. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  553. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -464
  554. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  555. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -727
  556. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  557. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -420
  558. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  559. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -777
  560. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  561. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -420
  562. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  563. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  564. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  565. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -546
  566. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  567. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  568. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  569. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
  570. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  571. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -205
  572. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  573. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -349
  574. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
  575. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +0 -442
  576. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  577. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  578. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  579. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -228
  580. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  581. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  582. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  583. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -305
  584. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  585. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  586. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  587. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -600
  588. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  589. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  590. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  591. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  592. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  593. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -286
  594. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  595. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  596. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  597. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  598. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  599. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  600. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  601. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  602. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  603. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  604. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  605. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  606. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  607. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  608. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  609. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  610. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  611. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  612. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  613. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  614. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  615. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  616. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  617. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
  618. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  619. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  620. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  621. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  622. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  623. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  624. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -249
  625. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  626. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  627. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  628. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  629. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  630. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  631. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  632. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  633. package/contracts/components/BaseComponent.sol +0 -159
  634. package/contracts/components/Distribution.sol +0 -163
  635. package/contracts/components/IBaseComponent.sol +0 -34
  636. package/contracts/components/IDistributionComponent.sol +0 -44
  637. package/contracts/components/IPoolComponent.sol +0 -66
  638. package/contracts/components/IProductComponent.sol +0 -35
  639. package/contracts/components/Pool.sol +0 -271
  640. package/contracts/components/Product.sol +0 -292
  641. package/contracts/experiment/cloning/Cloner.sol +0 -47
  642. package/contracts/experiment/errors/Require.sol +0 -38
  643. package/contracts/experiment/errors/Revert.sol +0 -44
  644. package/contracts/experiment/inheritance/A.sol +0 -53
  645. package/contracts/experiment/inheritance/B.sol +0 -28
  646. package/contracts/experiment/inheritance/C.sol +0 -34
  647. package/contracts/experiment/inheritance/IA.sol +0 -13
  648. package/contracts/experiment/inheritance/IB.sol +0 -10
  649. package/contracts/experiment/inheritance/IC.sol +0 -12
  650. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  651. package/contracts/experiment/statemachine/ISM.sol +0 -25
  652. package/contracts/experiment/statemachine/SM.sol +0 -57
  653. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  654. package/contracts/experiment/types/TypeA.sol +0 -47
  655. package/contracts/experiment/types/TypeB.sol +0 -29
  656. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -23
  657. package/contracts/instance/IInstanceBase.sol +0 -26
  658. package/contracts/instance/InstanceAccessManager.sol +0 -303
  659. package/contracts/instance/InstanceBase.sol +0 -41
  660. package/contracts/instance/base/ComponentServiceBase.sol +0 -82
  661. package/contracts/instance/base/IInstanceBase.sol +0 -23
  662. package/contracts/instance/base/KeyValueStore.sol +0 -172
  663. package/contracts/instance/base/Lifecycle.sol +0 -100
  664. package/contracts/instance/module/ISetup.sol +0 -46
  665. package/contracts/instance/module/ITreasury.sol +0 -23
  666. package/contracts/instance/service/BundleService.sol +0 -260
  667. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  668. package/contracts/instance/service/ComponentOwnerService.sol +0 -315
  669. package/contracts/instance/service/DistributionService.sol +0 -113
  670. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  671. package/contracts/instance/service/IBundleService.sol +0 -45
  672. package/contracts/instance/service/IComponentOwnerService.sol +0 -20
  673. package/contracts/instance/service/IDistributionService.sol +0 -12
  674. package/contracts/instance/service/IPolicyService.sol +0 -87
  675. package/contracts/instance/service/IPoolService.sol +0 -20
  676. package/contracts/instance/service/IProductService.sol +0 -40
  677. package/contracts/instance/service/PolicyService.sol +0 -503
  678. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  679. package/contracts/instance/service/PoolService.sol +0 -124
  680. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  681. package/contracts/instance/service/ProductService.sol +0 -170
  682. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  683. package/contracts/registry/RegistryAccessManager.sol +0 -210
  684. package/contracts/registry/ReleaseManager.sol +0 -348
  685. package/contracts/shared/ContractDeployerLib.sol +0 -72
  686. package/contracts/shared/ERC165.sol +0 -25
  687. package/contracts/shared/ProxyManager.sol +0 -94
  688. package/contracts/shared/RegisterableUpgradable.sol +0 -16
  689. package/contracts/shared/Versionable.sol +0 -147
  690. package/contracts/test/TestFee.sol +0 -25
  691. package/contracts/test/TestRegisterable.sol +0 -18
  692. package/contracts/test/TestRoleId.sol +0 -14
  693. package/contracts/test/TestService.sol +0 -25
  694. package/contracts/test/TestToken.sol +0 -26
  695. package/contracts/test/TestVersion.sol +0 -44
  696. package/contracts/test/TestVersionable.sol +0 -17
  697. package/contracts/types/ChainId.sol +0 -38
  698. package/contracts/types/NumberId.sol +0 -52
  699. package/contracts/types/ObjectType.sol +0 -152
  700. package/contracts/types/RoleId.sol +0 -90
  701. /package/contracts/{types → type}/Key32.sol +0 -0
@@ -43,18 +43,13 @@
43
43
  },
44
44
  {
45
45
  "inputs": [
46
- {
47
- "internalType": "address",
48
- "name": "registry",
49
- "type": "address"
50
- },
51
46
  {
52
47
  "internalType": "NftId",
53
48
  "name": "nftId",
54
49
  "type": "uint96"
55
50
  }
56
51
  ],
57
- "name": "ErrorAlreadyLinked",
52
+ "name": "ErrorNftOwnableAlreadyLinked",
58
53
  "type": "error"
59
54
  },
60
55
  {
@@ -65,7 +60,12 @@
65
60
  "type": "address"
66
61
  }
67
62
  ],
68
- "name": "ErrorContractNotRegistered",
63
+ "name": "ErrorNftOwnableContractNotRegistered",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [],
68
+ "name": "ErrorNftOwnableInitialOwnerZero",
69
69
  "type": "error"
70
70
  },
71
71
  {
@@ -76,7 +76,7 @@
76
76
  "type": "address"
77
77
  }
78
78
  ],
79
- "name": "ErrorNotOwner",
79
+ "name": "ErrorNftOwnableNotOwner",
80
80
  "type": "error"
81
81
  },
82
82
  {
@@ -94,124 +94,231 @@
94
94
  "inputs": [
95
95
  {
96
96
  "internalType": "address",
97
- "name": "registryAddress",
97
+ "name": "registerableAddress",
98
98
  "type": "address"
99
99
  }
100
100
  ],
101
- "name": "ErrorRegisterableNotRegistry",
101
+ "name": "ErrorRegistryServiceInvalidAddress",
102
102
  "type": "error"
103
103
  },
104
104
  {
105
- "inputs": [],
106
- "name": "ErrorRegistryAddressZero",
105
+ "inputs": [
106
+ {
107
+ "internalType": "address",
108
+ "name": "initialOwner",
109
+ "type": "address"
110
+ }
111
+ ],
112
+ "name": "ErrorRegistryServiceInvalidInitialOwner",
107
113
  "type": "error"
108
114
  },
109
115
  {
110
116
  "inputs": [
111
117
  {
112
118
  "internalType": "address",
113
- "name": "registry",
119
+ "name": "notComponent",
114
120
  "type": "address"
115
121
  }
116
122
  ],
117
- "name": "ErrorRegistryAlreadyInitialized",
123
+ "name": "ErrorRegistryServiceNotComponent",
118
124
  "type": "error"
119
125
  },
120
126
  {
121
- "inputs": [],
122
- "name": "ErrorRegistryNotInitialized",
127
+ "inputs": [
128
+ {
129
+ "internalType": "address",
130
+ "name": "notDistribution",
131
+ "type": "address"
132
+ }
133
+ ],
134
+ "name": "ErrorRegistryServiceNotDistribution",
123
135
  "type": "error"
124
136
  },
125
137
  {
126
138
  "inputs": [
127
139
  {
128
140
  "internalType": "address",
129
- "name": "registerableAddress",
141
+ "name": "notInstance",
130
142
  "type": "address"
131
143
  }
132
144
  ],
133
- "name": "InvalidAddress",
145
+ "name": "ErrorRegistryServiceNotInstance",
134
146
  "type": "error"
135
147
  },
136
148
  {
137
149
  "inputs": [
138
150
  {
139
151
  "internalType": "address",
140
- "name": "initialOwner",
152
+ "name": "notPool",
141
153
  "type": "address"
142
154
  }
143
155
  ],
144
- "name": "InvalidInitialOwner",
156
+ "name": "ErrorRegistryServiceNotPool",
145
157
  "type": "error"
146
158
  },
147
159
  {
148
- "inputs": [],
149
- "name": "InvalidInitialization",
160
+ "inputs": [
161
+ {
162
+ "internalType": "address",
163
+ "name": "notProduct",
164
+ "type": "address"
165
+ }
166
+ ],
167
+ "name": "ErrorRegistryServiceNotProduct",
150
168
  "type": "error"
151
169
  },
152
170
  {
153
171
  "inputs": [],
154
- "name": "NotDistribution",
172
+ "name": "ErrorRegistryServiceNotRegistryOwner",
155
173
  "type": "error"
156
174
  },
157
175
  {
158
- "inputs": [],
159
- "name": "NotInitializing",
176
+ "inputs": [
177
+ {
178
+ "internalType": "address",
179
+ "name": "notService",
180
+ "type": "address"
181
+ }
182
+ ],
183
+ "name": "ErrorRegistryServiceNotService",
160
184
  "type": "error"
161
185
  },
162
186
  {
163
- "inputs": [],
164
- "name": "NotInstance",
187
+ "inputs": [
188
+ {
189
+ "internalType": "ObjectType",
190
+ "name": "objectType",
191
+ "type": "uint8"
192
+ }
193
+ ],
194
+ "name": "ErrorRegistryServiceObjectAddressNotZero",
165
195
  "type": "error"
166
196
  },
167
197
  {
168
- "inputs": [],
169
- "name": "NotPool",
198
+ "inputs": [
199
+ {
200
+ "internalType": "ObjectType",
201
+ "name": "objectType",
202
+ "type": "uint8"
203
+ },
204
+ {
205
+ "internalType": "address",
206
+ "name": "owner",
207
+ "type": "address"
208
+ }
209
+ ],
210
+ "name": "ErrorRegistryServiceObjectOwnerRegistered",
170
211
  "type": "error"
171
212
  },
172
213
  {
173
- "inputs": [],
174
- "name": "NotProduct",
214
+ "inputs": [
215
+ {
216
+ "internalType": "ObjectType",
217
+ "name": "objectType",
218
+ "type": "uint8"
219
+ }
220
+ ],
221
+ "name": "ErrorRegistryServiceObjectOwnerZero",
175
222
  "type": "error"
176
223
  },
177
224
  {
178
225
  "inputs": [
179
226
  {
180
- "internalType": "address",
181
- "name": "expectedOwner",
182
- "type": "address"
227
+ "internalType": "ObjectType",
228
+ "name": "expected",
229
+ "type": "uint8"
230
+ },
231
+ {
232
+ "internalType": "ObjectType",
233
+ "name": "found",
234
+ "type": "uint8"
183
235
  }
184
236
  ],
185
- "name": "NotRegisterableOwner",
237
+ "name": "ErrorRegistryServiceObjectTypeInvalid",
186
238
  "type": "error"
187
239
  },
188
240
  {
189
- "inputs": [],
190
- "name": "NotRegistryOwner",
241
+ "inputs": [
242
+ {
243
+ "internalType": "contract IRegisterable",
244
+ "name": "registerable",
245
+ "type": "address"
246
+ },
247
+ {
248
+ "internalType": "address",
249
+ "name": "found",
250
+ "type": "address"
251
+ }
252
+ ],
253
+ "name": "ErrorRegistryServiceRegisterableAddressInvalid",
191
254
  "type": "error"
192
255
  },
193
256
  {
194
- "inputs": [],
195
- "name": "NotService",
257
+ "inputs": [
258
+ {
259
+ "internalType": "contract IRegisterable",
260
+ "name": "registerable",
261
+ "type": "address"
262
+ },
263
+ {
264
+ "internalType": "address",
265
+ "name": "expected",
266
+ "type": "address"
267
+ },
268
+ {
269
+ "internalType": "address",
270
+ "name": "found",
271
+ "type": "address"
272
+ }
273
+ ],
274
+ "name": "ErrorRegistryServiceRegisterableOwnerInvalid",
196
275
  "type": "error"
197
276
  },
198
277
  {
199
- "inputs": [],
200
- "name": "RegisterableOwnerIsRegistered",
278
+ "inputs": [
279
+ {
280
+ "internalType": "contract IRegisterable",
281
+ "name": "registerable",
282
+ "type": "address"
283
+ },
284
+ {
285
+ "internalType": "address",
286
+ "name": "owner",
287
+ "type": "address"
288
+ }
289
+ ],
290
+ "name": "ErrorRegistryServiceRegisterableOwnerRegistered",
201
291
  "type": "error"
202
292
  },
203
293
  {
204
- "inputs": [],
205
- "name": "RegisterableOwnerIsZero",
294
+ "inputs": [
295
+ {
296
+ "internalType": "contract IRegisterable",
297
+ "name": "registerable",
298
+ "type": "address"
299
+ }
300
+ ],
301
+ "name": "ErrorRegistryServiceRegisterableOwnerZero",
206
302
  "type": "error"
207
303
  },
208
304
  {
209
- "inputs": [],
210
- "name": "SelfRegistration",
305
+ "inputs": [
306
+ {
307
+ "internalType": "contract IRegisterable",
308
+ "name": "registerable",
309
+ "type": "address"
310
+ }
311
+ ],
312
+ "name": "ErrorRegistryServiceRegisterableSelfRegistration",
211
313
  "type": "error"
212
314
  },
213
315
  {
214
316
  "inputs": [
317
+ {
318
+ "internalType": "contract IRegisterable",
319
+ "name": "registerable",
320
+ "type": "address"
321
+ },
215
322
  {
216
323
  "internalType": "ObjectType",
217
324
  "name": "expected",
@@ -223,7 +330,22 @@
223
330
  "type": "uint8"
224
331
  }
225
332
  ],
226
- "name": "UnexpectedRegisterableType",
333
+ "name": "ErrorRegistryServiceRegisterableTypeInvalid",
334
+ "type": "error"
335
+ },
336
+ {
337
+ "inputs": [],
338
+ "name": "ErrorServiceNotImplemented",
339
+ "type": "error"
340
+ },
341
+ {
342
+ "inputs": [],
343
+ "name": "InvalidInitialization",
344
+ "type": "error"
345
+ },
346
+ {
347
+ "inputs": [],
348
+ "name": "NotInitializing",
227
349
  "type": "error"
228
350
  },
229
351
  {
@@ -252,39 +374,14 @@
252
374
  "name": "Initialized",
253
375
  "type": "event"
254
376
  },
255
- {
256
- "anonymous": false,
257
- "inputs": [
258
- {
259
- "indexed": false,
260
- "internalType": "Version",
261
- "name": "version",
262
- "type": "uint24"
263
- },
264
- {
265
- "indexed": false,
266
- "internalType": "address",
267
- "name": "implementation",
268
- "type": "address"
269
- },
270
- {
271
- "indexed": false,
272
- "internalType": "address",
273
- "name": "activatedBy",
274
- "type": "address"
275
- }
276
- ],
277
- "name": "LogVersionableInitialized",
278
- "type": "event"
279
- },
280
377
  {
281
378
  "inputs": [],
282
- "name": "NFT_LOCK_ADDRESS",
379
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
283
380
  "outputs": [
284
381
  {
285
- "internalType": "address",
382
+ "internalType": "bytes32",
286
383
  "name": "",
287
- "type": "address"
384
+ "type": "bytes32"
288
385
  }
289
386
  ],
290
387
  "stateMutability": "view",
@@ -387,11 +484,6 @@
387
484
  "internalType": "struct IRegistry.ObjectInfo",
388
485
  "name": "info",
389
486
  "type": "tuple"
390
- },
391
- {
392
- "internalType": "bytes",
393
- "name": "data",
394
- "type": "bytes"
395
487
  }
396
488
  ],
397
489
  "stateMutability": "view",
@@ -399,12 +491,12 @@
399
491
  },
400
492
  {
401
493
  "inputs": [],
402
- "name": "getInitializedVersion",
494
+ "name": "getNftId",
403
495
  "outputs": [
404
496
  {
405
- "internalType": "uint64",
497
+ "internalType": "NftId",
406
498
  "name": "",
407
- "type": "uint64"
499
+ "type": "uint96"
408
500
  }
409
501
  ],
410
502
  "stateMutability": "view",
@@ -412,12 +504,12 @@
412
504
  },
413
505
  {
414
506
  "inputs": [],
415
- "name": "getMajorVersion",
507
+ "name": "getOwner",
416
508
  "outputs": [
417
509
  {
418
- "internalType": "VersionPart",
419
- "name": "majorVersion",
420
- "type": "uint8"
510
+ "internalType": "address",
511
+ "name": "",
512
+ "type": "address"
421
513
  }
422
514
  ],
423
515
  "stateMutability": "view",
@@ -425,12 +517,12 @@
425
517
  },
426
518
  {
427
519
  "inputs": [],
428
- "name": "getNftId",
520
+ "name": "getRegistry",
429
521
  "outputs": [
430
522
  {
431
- "internalType": "NftId",
523
+ "internalType": "contract IRegistry",
432
524
  "name": "",
433
- "type": "uint96"
525
+ "type": "address"
434
526
  }
435
527
  ],
436
528
  "stateMutability": "view",
@@ -438,185 +530,310 @@
438
530
  },
439
531
  {
440
532
  "inputs": [],
441
- "name": "getOwner",
533
+ "name": "getRoleId",
442
534
  "outputs": [
443
535
  {
444
- "internalType": "address",
445
- "name": "",
446
- "type": "address"
536
+ "internalType": "RoleId",
537
+ "name": "serviceRoleId",
538
+ "type": "uint64"
447
539
  }
448
540
  ],
449
- "stateMutability": "view",
541
+ "stateMutability": "pure",
450
542
  "type": "function"
451
543
  },
452
544
  {
453
545
  "inputs": [],
454
- "name": "getRegistry",
546
+ "name": "getVersion",
455
547
  "outputs": [
456
548
  {
457
- "internalType": "contract IRegistry",
549
+ "internalType": "Version",
458
550
  "name": "",
459
- "type": "address"
551
+ "type": "uint24"
460
552
  }
461
553
  ],
462
- "stateMutability": "view",
554
+ "stateMutability": "pure",
463
555
  "type": "function"
464
556
  },
465
557
  {
466
558
  "inputs": [],
467
- "name": "getVersion",
468
- "outputs": [
559
+ "name": "initializeERC165",
560
+ "outputs": [],
561
+ "stateMutability": "nonpayable",
562
+ "type": "function"
563
+ },
564
+ {
565
+ "inputs": [
469
566
  {
470
- "internalType": "Version",
471
- "name": "",
472
- "type": "uint24"
567
+ "internalType": "address",
568
+ "name": "initialOwner",
569
+ "type": "address"
570
+ },
571
+ {
572
+ "internalType": "address",
573
+ "name": "registryAddress",
574
+ "type": "address"
473
575
  }
474
576
  ],
475
- "stateMutability": "pure",
577
+ "name": "initializeNftOwnable",
578
+ "outputs": [],
579
+ "stateMutability": "nonpayable",
476
580
  "type": "function"
477
581
  },
478
582
  {
479
583
  "inputs": [
480
584
  {
481
- "internalType": "uint256",
482
- "name": "idx",
483
- "type": "uint256"
585
+ "internalType": "address",
586
+ "name": "registryAddress",
587
+ "type": "address"
588
+ },
589
+ {
590
+ "internalType": "NftId",
591
+ "name": "parentNftId",
592
+ "type": "uint96"
593
+ },
594
+ {
595
+ "internalType": "ObjectType",
596
+ "name": "objectType",
597
+ "type": "uint8"
598
+ },
599
+ {
600
+ "internalType": "bool",
601
+ "name": "isInterceptor",
602
+ "type": "bool"
603
+ },
604
+ {
605
+ "internalType": "address",
606
+ "name": "initialOwner",
607
+ "type": "address"
608
+ },
609
+ {
610
+ "internalType": "bytes",
611
+ "name": "registryData",
612
+ "type": "bytes"
484
613
  }
485
614
  ],
486
- "name": "getVersion",
615
+ "name": "initializeRegisterable",
616
+ "outputs": [],
617
+ "stateMutability": "nonpayable",
618
+ "type": "function"
619
+ },
620
+ {
621
+ "inputs": [
622
+ {
623
+ "internalType": "address",
624
+ "name": "registryAddress",
625
+ "type": "address"
626
+ }
627
+ ],
628
+ "name": "initializeRegistryLinked",
629
+ "outputs": [],
630
+ "stateMutability": "nonpayable",
631
+ "type": "function"
632
+ },
633
+ {
634
+ "inputs": [
635
+ {
636
+ "internalType": "address",
637
+ "name": "registry",
638
+ "type": "address"
639
+ },
640
+ {
641
+ "internalType": "address",
642
+ "name": "authority",
643
+ "type": "address"
644
+ },
645
+ {
646
+ "internalType": "address",
647
+ "name": "initialOwner",
648
+ "type": "address"
649
+ }
650
+ ],
651
+ "name": "initializeService",
652
+ "outputs": [],
653
+ "stateMutability": "nonpayable",
654
+ "type": "function"
655
+ },
656
+ {
657
+ "inputs": [
658
+ {
659
+ "internalType": "address",
660
+ "name": "activatedBy",
661
+ "type": "address"
662
+ },
663
+ {
664
+ "internalType": "bytes",
665
+ "name": "data",
666
+ "type": "bytes"
667
+ }
668
+ ],
669
+ "name": "initializeVersionable",
670
+ "outputs": [],
671
+ "stateMutability": "nonpayable",
672
+ "type": "function"
673
+ },
674
+ {
675
+ "inputs": [],
676
+ "name": "isConsumingScheduledOp",
487
677
  "outputs": [
488
678
  {
489
- "internalType": "Version",
679
+ "internalType": "bytes4",
490
680
  "name": "",
491
- "type": "uint24"
681
+ "type": "bytes4"
682
+ }
683
+ ],
684
+ "stateMutability": "view",
685
+ "type": "function"
686
+ },
687
+ {
688
+ "inputs": [],
689
+ "name": "linkToRegisteredNftId",
690
+ "outputs": [
691
+ {
692
+ "internalType": "NftId",
693
+ "name": "nftId",
694
+ "type": "uint96"
695
+ }
696
+ ],
697
+ "stateMutability": "nonpayable",
698
+ "type": "function"
699
+ },
700
+ {
701
+ "inputs": [
702
+ {
703
+ "components": [
704
+ {
705
+ "internalType": "NftId",
706
+ "name": "nftId",
707
+ "type": "uint96"
708
+ },
709
+ {
710
+ "internalType": "NftId",
711
+ "name": "parentNftId",
712
+ "type": "uint96"
713
+ },
714
+ {
715
+ "internalType": "ObjectType",
716
+ "name": "objectType",
717
+ "type": "uint8"
718
+ },
719
+ {
720
+ "internalType": "bool",
721
+ "name": "isInterceptor",
722
+ "type": "bool"
723
+ },
724
+ {
725
+ "internalType": "address",
726
+ "name": "objectAddress",
727
+ "type": "address"
728
+ },
729
+ {
730
+ "internalType": "address",
731
+ "name": "initialOwner",
732
+ "type": "address"
733
+ },
734
+ {
735
+ "internalType": "bytes",
736
+ "name": "data",
737
+ "type": "bytes"
738
+ }
739
+ ],
740
+ "internalType": "struct IRegistry.ObjectInfo",
741
+ "name": "info",
742
+ "type": "tuple"
492
743
  }
493
744
  ],
494
- "stateMutability": "view",
495
- "type": "function"
496
- },
497
- {
498
- "inputs": [],
499
- "name": "getVersionCount",
745
+ "name": "registerBundle",
500
746
  "outputs": [
501
747
  {
502
- "internalType": "uint256",
503
- "name": "",
504
- "type": "uint256"
748
+ "internalType": "NftId",
749
+ "name": "nftId",
750
+ "type": "uint96"
505
751
  }
506
752
  ],
507
- "stateMutability": "view",
753
+ "stateMutability": "nonpayable",
508
754
  "type": "function"
509
755
  },
510
756
  {
511
757
  "inputs": [
512
758
  {
513
- "internalType": "Version",
514
- "name": "_version",
515
- "type": "uint24"
759
+ "internalType": "contract IComponent",
760
+ "name": "component",
761
+ "type": "address"
762
+ },
763
+ {
764
+ "internalType": "ObjectType",
765
+ "name": "objectType",
766
+ "type": "uint8"
767
+ },
768
+ {
769
+ "internalType": "address",
770
+ "name": "initialOwner",
771
+ "type": "address"
516
772
  }
517
773
  ],
518
- "name": "getVersionInfo",
774
+ "name": "registerComponent",
519
775
  "outputs": [
520
776
  {
521
777
  "components": [
522
778
  {
523
- "internalType": "Version",
524
- "name": "version",
525
- "type": "uint24"
779
+ "internalType": "NftId",
780
+ "name": "nftId",
781
+ "type": "uint96"
526
782
  },
527
783
  {
528
- "internalType": "address",
529
- "name": "implementation",
530
- "type": "address"
784
+ "internalType": "NftId",
785
+ "name": "parentNftId",
786
+ "type": "uint96"
787
+ },
788
+ {
789
+ "internalType": "ObjectType",
790
+ "name": "objectType",
791
+ "type": "uint8"
792
+ },
793
+ {
794
+ "internalType": "bool",
795
+ "name": "isInterceptor",
796
+ "type": "bool"
531
797
  },
532
798
  {
533
799
  "internalType": "address",
534
- "name": "activatedBy",
800
+ "name": "objectAddress",
535
801
  "type": "address"
536
802
  },
537
803
  {
538
- "internalType": "Timestamp",
539
- "name": "activatedAt",
540
- "type": "uint40"
804
+ "internalType": "address",
805
+ "name": "initialOwner",
806
+ "type": "address"
541
807
  },
542
808
  {
543
- "internalType": "Blocknumber",
544
- "name": "activatedIn",
545
- "type": "uint32"
809
+ "internalType": "bytes",
810
+ "name": "data",
811
+ "type": "bytes"
546
812
  }
547
813
  ],
548
- "internalType": "struct IVersionable.VersionInfo",
549
- "name": "",
814
+ "internalType": "struct IRegistry.ObjectInfo",
815
+ "name": "info",
550
816
  "type": "tuple"
551
817
  }
552
818
  ],
553
- "stateMutability": "view",
819
+ "stateMutability": "nonpayable",
554
820
  "type": "function"
555
821
  },
556
822
  {
557
823
  "inputs": [
558
824
  {
559
- "internalType": "address",
560
- "name": "implementation",
825
+ "internalType": "contract IComponent",
826
+ "name": "distribution",
561
827
  "type": "address"
562
828
  },
563
829
  {
564
830
  "internalType": "address",
565
- "name": "activatedBy",
831
+ "name": "owner",
566
832
  "type": "address"
567
- },
568
- {
569
- "internalType": "bytes",
570
- "name": "data",
571
- "type": "bytes"
572
- }
573
- ],
574
- "name": "initialize",
575
- "outputs": [],
576
- "stateMutability": "nonpayable",
577
- "type": "function"
578
- },
579
- {
580
- "inputs": [],
581
- "name": "isConsumingScheduledOp",
582
- "outputs": [
583
- {
584
- "internalType": "bytes4",
585
- "name": "",
586
- "type": "bytes4"
587
- }
588
- ],
589
- "stateMutability": "view",
590
- "type": "function"
591
- },
592
- {
593
- "inputs": [
594
- {
595
- "internalType": "Version",
596
- "name": "_version",
597
- "type": "uint24"
598
833
  }
599
834
  ],
600
- "name": "isInitialized",
835
+ "name": "registerDistribution",
601
836
  "outputs": [
602
- {
603
- "internalType": "bool",
604
- "name": "",
605
- "type": "bool"
606
- }
607
- ],
608
- "stateMutability": "view",
609
- "type": "function"
610
- },
611
- {
612
- "inputs": [],
613
- "name": "linkToRegisteredNftId",
614
- "outputs": [],
615
- "stateMutability": "nonpayable",
616
- "type": "function"
617
- },
618
- {
619
- "inputs": [
620
837
  {
621
838
  "components": [
622
839
  {
@@ -660,32 +877,11 @@
660
877
  "type": "tuple"
661
878
  }
662
879
  ],
663
- "name": "registerBundle",
664
- "outputs": [
665
- {
666
- "internalType": "NftId",
667
- "name": "nftId",
668
- "type": "uint96"
669
- }
670
- ],
671
880
  "stateMutability": "nonpayable",
672
881
  "type": "function"
673
882
  },
674
883
  {
675
884
  "inputs": [
676
- {
677
- "internalType": "contract IBaseComponent",
678
- "name": "distribution",
679
- "type": "address"
680
- },
681
- {
682
- "internalType": "address",
683
- "name": "owner",
684
- "type": "address"
685
- }
686
- ],
687
- "name": "registerDistribution",
688
- "outputs": [
689
885
  {
690
886
  "components": [
691
887
  {
@@ -727,11 +923,14 @@
727
923
  "internalType": "struct IRegistry.ObjectInfo",
728
924
  "name": "info",
729
925
  "type": "tuple"
730
- },
926
+ }
927
+ ],
928
+ "name": "registerDistributor",
929
+ "outputs": [
731
930
  {
732
- "internalType": "bytes",
733
- "name": "data",
734
- "type": "bytes"
931
+ "internalType": "NftId",
932
+ "name": "nftId",
933
+ "type": "uint96"
735
934
  }
736
935
  ],
737
936
  "stateMutability": "nonpayable",
@@ -743,6 +942,11 @@
743
942
  "internalType": "contract IRegisterable",
744
943
  "name": "instance",
745
944
  "type": "address"
945
+ },
946
+ {
947
+ "internalType": "address",
948
+ "name": "owner",
949
+ "type": "address"
746
950
  }
747
951
  ],
748
952
  "name": "registerInstance",
@@ -788,13 +992,21 @@
788
992
  "internalType": "struct IRegistry.ObjectInfo",
789
993
  "name": "info",
790
994
  "type": "tuple"
791
- },
995
+ }
996
+ ],
997
+ "stateMutability": "nonpayable",
998
+ "type": "function"
999
+ },
1000
+ {
1001
+ "inputs": [
792
1002
  {
793
- "internalType": "bytes",
794
- "name": "data",
795
- "type": "bytes"
1003
+ "internalType": "bytes4",
1004
+ "name": "interfaceId",
1005
+ "type": "bytes4"
796
1006
  }
797
1007
  ],
1008
+ "name": "registerInterface",
1009
+ "outputs": [],
798
1010
  "stateMutability": "nonpayable",
799
1011
  "type": "function"
800
1012
  },
@@ -857,7 +1069,7 @@
857
1069
  {
858
1070
  "inputs": [
859
1071
  {
860
- "internalType": "contract IBaseComponent",
1072
+ "internalType": "contract IComponent",
861
1073
  "name": "pool",
862
1074
  "type": "address"
863
1075
  },
@@ -910,11 +1122,6 @@
910
1122
  "internalType": "struct IRegistry.ObjectInfo",
911
1123
  "name": "info",
912
1124
  "type": "tuple"
913
- },
914
- {
915
- "internalType": "bytes",
916
- "name": "data",
917
- "type": "bytes"
918
1125
  }
919
1126
  ],
920
1127
  "stateMutability": "nonpayable",
@@ -923,7 +1130,7 @@
923
1130
  {
924
1131
  "inputs": [
925
1132
  {
926
- "internalType": "contract IBaseComponent",
1133
+ "internalType": "contract IComponent",
927
1134
  "name": "product",
928
1135
  "type": "address"
929
1136
  },
@@ -976,11 +1183,6 @@
976
1183
  "internalType": "struct IRegistry.ObjectInfo",
977
1184
  "name": "info",
978
1185
  "type": "tuple"
979
- },
980
- {
981
- "internalType": "bytes",
982
- "name": "data",
983
- "type": "bytes"
984
1186
  }
985
1187
  ],
986
1188
  "stateMutability": "nonpayable",
@@ -1042,6 +1244,67 @@
1042
1244
  "stateMutability": "nonpayable",
1043
1245
  "type": "function"
1044
1246
  },
1247
+ {
1248
+ "inputs": [
1249
+ {
1250
+ "internalType": "contract IRegisterable",
1251
+ "name": "staking",
1252
+ "type": "address"
1253
+ },
1254
+ {
1255
+ "internalType": "address",
1256
+ "name": "owner",
1257
+ "type": "address"
1258
+ }
1259
+ ],
1260
+ "name": "registerStaking",
1261
+ "outputs": [
1262
+ {
1263
+ "components": [
1264
+ {
1265
+ "internalType": "NftId",
1266
+ "name": "nftId",
1267
+ "type": "uint96"
1268
+ },
1269
+ {
1270
+ "internalType": "NftId",
1271
+ "name": "parentNftId",
1272
+ "type": "uint96"
1273
+ },
1274
+ {
1275
+ "internalType": "ObjectType",
1276
+ "name": "objectType",
1277
+ "type": "uint8"
1278
+ },
1279
+ {
1280
+ "internalType": "bool",
1281
+ "name": "isInterceptor",
1282
+ "type": "bool"
1283
+ },
1284
+ {
1285
+ "internalType": "address",
1286
+ "name": "objectAddress",
1287
+ "type": "address"
1288
+ },
1289
+ {
1290
+ "internalType": "address",
1291
+ "name": "initialOwner",
1292
+ "type": "address"
1293
+ },
1294
+ {
1295
+ "internalType": "bytes",
1296
+ "name": "data",
1297
+ "type": "bytes"
1298
+ }
1299
+ ],
1300
+ "internalType": "struct IRegistry.ObjectInfo",
1301
+ "name": "info",
1302
+ "type": "tuple"
1303
+ }
1304
+ ],
1305
+ "stateMutability": "nonpayable",
1306
+ "type": "function"
1307
+ },
1045
1308
  {
1046
1309
  "inputs": [
1047
1310
  {
@@ -1076,118 +1339,112 @@
1076
1339
  },
1077
1340
  {
1078
1341
  "inputs": [
1079
- {
1080
- "internalType": "address",
1081
- "name": "implementation",
1082
- "type": "address"
1083
- },
1084
- {
1085
- "internalType": "address",
1086
- "name": "activatedBy",
1087
- "type": "address"
1088
- },
1089
1342
  {
1090
1343
  "internalType": "bytes",
1091
1344
  "name": "data",
1092
1345
  "type": "bytes"
1093
1346
  }
1094
1347
  ],
1095
- "name": "upgrade",
1348
+ "name": "upgradeVersionable",
1096
1349
  "outputs": [],
1097
1350
  "stateMutability": "nonpayable",
1098
1351
  "type": "function"
1099
1352
  }
1100
1353
  ],
1101
- "bytecode": "0x60806040523480156200001157600080fd5b50620000546301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600280546001600160a01b031916331790556200007062000076565b6200012a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000c75760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001275780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b612f58806200013a6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063834af15311610104578063b68d1809116100a2578063cde749f411610071578063cde749f414610547578063cf7a1d771461054f578063e285c9c414610562578063ed841d0c1461056a57600080fd5b8063b68d180914610504578063b88da75914610519578063bf7e214f1461052c578063c2bf08c81461053457600080fd5b80638fbc2d81116100de5780638fbc2d8114610497578063946dfcfe146104aa578063a745e3df146104d1578063b3c65015146104e457600080fd5b8063834af15314610467578063893d20e81461047a5780638fb360371461048257600080fd5b80635ab1bd5311610171578063644c45e01161014b578063644c45e0146104165780637286e5e51461042e5780637a9e5e4b146104415780638105cc7f1461045457600080fd5b80635ab1bd53146103b35780635c992fed146103d85780635d9662891461040357600080fd5b8063138461e0116101ad578063138461e0146102485780631eff4b22146102525780634d459c90146102875780634f421333146103a057600080fd5b806301ffc9a7146101d45780630d8e6e2c146102165780630fec111c14610232575b600080fd5b6102016101e236600461250e565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61021e610572565b60405162ffffff909116815260200161020d565b61023a6105fc565b60405161020d929190612608565b6102506108ea565b005b6102797f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161020d565b610343610295366004612647565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152600080516020612f0383398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a00161020d565b6102016103ae366004612647565b610b0c565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161020d565b6103eb6103e63660046127c7565b610bbf565b6040516001600160601b03909116815260200161020d565b61023a610411366004612899565b610c52565b600154600160a01b90046001600160601b03166103eb565b61023a61043c366004612899565b610de4565b61025061044f3660046128d2565b610e93565b6103eb6104623660046127c7565b610f1a565b61023a6104753660046128d2565b610f30565b6103c06110b7565b61048a6111d0565b60405161020d91906128ef565b61023a6104a5366004612899565b611209565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed90154610279565b6102506104df366004612904565b6112b8565b6104ec611412565b6040516001600160401b03909116815260200161020d565b60285b60405160ff909116815260200161020d565b61021e610527366004612965565b611433565b6103c0611484565b6103eb6105423660046127c7565b6114a0565b6105076114b6565b61025061055d366004612904565b611539565b6103c0600181565b610279600081565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156105d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f7919061297e565b905090565b6106046124d0565b606061060e611642565b60408051600680825260e0820190925292945090925060009190816020015b604080518082019091526000808252602082015281526020019060019003908161062d57905050905061065e604690565b816000815181106106715761067161299b565b602090810291909101015160ff9091169052805163834af15360e01b90829060009061069f5761069f61299b565b6020908102919091018101516001600160e01b03199092169101526106c2608c90565b816001815181106106d5576106d561299b565b602090810291909101015160ff90911690528051637286e5e560e01b90829060019081106107055761070561299b565b6020908102919091018101516001600160e01b0319909216910152610728607890565b8160028151811061073b5761073b61299b565b602090810291909101015160ff90911690528051638fbc2d8160e01b908290600290811061076b5761076b61299b565b6020908102919091018101516001600160e01b031990921691015261078e606e90565b816003815181106107a1576107a161299b565b602090810291909101015160ff90911690528051635d96628960e01b90829060039081106107d1576107d161299b565b6020908102919091018101516001600160e01b03199092169101526107f460d290565b816004815181106108075761080761299b565b602090810291909101015160ff90911690528051635c992fed60e01b90829060049081106108375761083761299b565b6020908102919091018101516001600160e01b031990921691015261085a60dc90565b8160058151811061086d5761086d61299b565b602090810291909101015160ff90911690528051631857e11960e31b908290600590811061089d5761089d61299b565b6020026020010151602001906001600160e01b03191690816001600160e01b03191681525050806040516020016108d491906129b1565b6040516020818303038152906040529150509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561094c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109709190612a18565b156109b7576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166109e05760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610a29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4d9190612a18565b610a75576040516372657a5160e01b81526001600160a01b03821660048201526024016109ae565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610abf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae39190612a40565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080600080516020612f0383398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610b94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb89190612a5d565b1192915050565b6000610bce335b600036611795565b610bd98260d261189b565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e90610c09908590600401612a76565b6020604051808303816000875af1158015610c28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4c9190612a40565b92915050565b610c5a6124d0565b6060610c6533610bc6565b6040516301ffc9a760e01b81526001600160a01b038516906301ffc9a790610c9890633ad74e8160e01b906004016128ef565b602060405180830381865afa158015610cb5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd99190612a18565b610cf657604051637a71998760e01b815260040160405180910390fd5b610d0384606e5b856119a6565b6001546040516352efcf2760e11b81529294509092506001600160a01b03169063a5df9e4e90610d37908590600401612a76565b6020604051808303816000875af1158015610d56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7a9190612a40565b6001600160601b0316825260408051629c230f60e51b815290516001600160a01b0386169163138461e091600480830192600092919082900301818387803b158015610dc557600080fd5b505af1158015610dd9573d6000803e3d6000fd5b505050509250929050565b610dec6124d0565b6060610df733610bc6565b6040516301ffc9a760e01b81526001600160a01b038516906301ffc9a790610e2a90634ce2a6c760e11b906004016128ef565b602060405180830381865afa158015610e47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6b9190612a18565b610e8857604051636f61f64160e01b815260040160405180910390fd5b610d0384608c610cfd565b33610e9c611484565b6001600160a01b0316816001600160a01b031614610ed75760405162d1953b60e31b81526001600160a01b03821660048201526024016109ae565b816001600160a01b03163b600003610f0d576040516361798f2f60e11b81526001600160a01b03831660048201526024016109ae565b610f1682611bac565b5050565b6000610f2533610bc6565b610bd982605061189b565b610f386124d0565b6040516301ffc9a760e01b81526060906001600160a01b038416906301ffc9a790610f6e906318da1e1f60e11b906004016128ef565b602060405180830381865afa158015610f8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610faf9190612a18565b610fcc57604051636795c76360e01b815260040160405180910390fd5b610fd8836046336119a6565b6001546040516352efcf2760e11b81529294509092506001600160a01b03169063a5df9e4e9061100c908590600401612a76565b6020604051808303816000875af115801561102b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104f9190612a40565b6001600160601b0316825260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192600092919082900301818387803b15801561109a57600080fd5b505af11580156110ae573d6000803e3d6000fd5b50505050915091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561111c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111409190612a18565b156111c057600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa15801561119c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f79190612a94565b506002546001600160a01b031690565b600080516020612ec3833981519152805460009190600160a01b900460ff166111fa576000611203565b638fb3603760e01b5b91505090565b6112116124d0565b606061121c33610bc6565b6040516301ffc9a760e01b81526001600160a01b038516906301ffc9a79061124f9063c8ea96c560e01b906004016128ef565b602060405180830381865afa15801561126c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112909190612a18565b6112ad576040516308707e3160e41b815260040160405180910390fd5b610d03846078610cfd565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c6112da610572565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561131a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133e9190612ab1565b600080516020612ee38339815191528054600160401b900460ff1680611371575080546001600160401b03808416911610155b1561138f5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556113ba8585611c0d565b6113c383611eac565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b60006105f7600080516020612ee3833981519152546001600160401b031690565b6000600080516020612f0383398151915260010182815481106114585761145861299b565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b600080516020612ec3833981519152546001600160a01b031690565b60006114ab33610bc6565b610bd98260dc61189b565b60006114c0610572565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015611515573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f79190612ae5565b600080516020612ee38339815191528054600160401b810460ff1615906001600160401b031660008115801561156c5750825b90506000826001600160401b031660011480156115885750303b155b905081158015611596575080155b156115b45760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156115de57845460ff60401b1916600160401b1785555b6115e88888611c0d565b6115f28787611eb4565b831561163857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b61164a6124d0565b606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806116966001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016116de6110b7565b6001600160a01b031681526020018260010180546116fb90612b02565b80601f016020809104026020016040519081016040528092919081815260200182805461172790612b02565b80156117745780601f1061174957610100808354040283529160200191611774565b820191906000526020600020905b81548152906001019060200180831161175757829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b600080516020612ec38339815191526000806117d06117b2611484565b87306117c2600460008a8c612b3c565b6117cb91612b66565b611fe8565b91509150816118935763ffffffff81161561187057825460ff60a01b1916600160a01b1783556117fe611484565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161182d93929190612b96565b600060405180830381600087803b15801561184757600080fd5b505af115801561185b573d6000803e3d6000fd5b5050845460ff60a01b19168555506118939050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016109ae565b505050505050565b60006080830152604082015160ff8281169116146118df576040808301519051632208245760e11b815260ff808416600483015290911660248201526044016109ae565b60a08201516001600160a01b03811661190b57604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa15801561195f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119839190612a18565b156119a157604051637142ceb360e11b815260040160405180910390fd5b505050565b6119ae6124d0565b6060846001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156119ee573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611a169190810190612c1b565b6001600160a01b03871660808301526040820151919350915060ff858116911614611a67576040808301519051632208245760e11b815260ff808716600483015290911660248201526044016109ae565b60a082015160ff8516604614611ab457836001600160a01b0316816001600160a01b031614611ab45760405163dfc430cb60e01b81526001600160a01b03851660048201526024016109ae565b856001600160a01b0316816001600160a01b031603611ae6576040516317faf4db60e11b815260040160405180910390fd5b6001600160a01b038116611b0d57604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611b61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b859190612a18565b15611ba357604051637142ceb360e11b815260040160405180910390fd5b50935093915050565b600080516020612ec383398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b611c156120f4565b600080516020612f038339815191526000611c45600080516020612ee3833981519152546001600160401b031690565b90506000611c51610572565b9050816001600160401b0316600103611c7e5760028301805462ffffff191662ffffff8316179055611ccc565b600283015462ffffff90811690821611611ccc5760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b60448201526064016109ae565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015611d80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611da49190612d13565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf68906114039083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b6101cf6120f4565b600080516020612ee38339815191528054600160401b810460ff1615906001600160401b0316600081158015611ee75750825b90506000826001600160401b03166001148015611f035750303b155b905081158015611f11575080155b15611f2f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611f5957845460ff60401b1916600160401b1785555b60008087806020019051810190611f709190612d3a565b91509150611f7d8261212d565b611f87818a612141565b611f9763bdc07c9b60e01b6121ac565b50508315611fdf57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516120579190612d69565b600060405180830381855afa9150503d8060008114612092576040519150601f19603f3d011682016040523d82523d6000602084013e612097565b606091505b509150915081156120e95760408151106120c957808060200190518101906120bf9190612d85565b90945092506120e9565b60208151106120e957808060200190518101906120e69190612a18565b93505b505094509492505050565b600080516020612ee383398151915254600160401b900460ff1661212b57604051631afcd79f60e31b815260040160405180910390fd5b565b6121356120f4565b61213e816121d1565b50565b6000602861214d6114b6565b6040805160ff9384166020820152929091169082015260600160405160208183030381529060405290506000612182846121e2565b905060006121958583603c848888612229565b6121a5637b6a51fd60e01b6121ac565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6121d96120f4565b61213e81611bac565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015610c28573d6000803e3d6000fd5b61226a6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61227482876122f5565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016122e48382612e03565b50611fdf6303fb044760e21b6121ac565b6001600160a01b03821661234b5760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e65722069732030000060448201526064016109ae565b600280546001600160a01b0319166001600160a01b038416179055610f16816001546001600160a01b0316156123a35760015460405163fcdbf2d960e01b81526001600160a01b0390911660048201526024016109ae565b6001600160a01b0381166123ca5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036124005760405163fdeac91f60e01b81526001600160a01b03821660048201526024016109ae565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a7906124469063102da10360e01b906004016128ef565b602060405180830381865afa92505050801561247f575060408051601f3d908101601f1916820190925261247c91810190612a18565b60015b6124a75760405163fdeac91f60e01b81526001600160a01b03821660048201526024016109ae565b80610f165760405163fdeac91f60e01b81526001600160a01b03831660048201526024016109ae565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b60006020828403121561252057600080fd5b81356001600160e01b03198116811461253857600080fd5b9392505050565b60005b8381101561255a578181015183820152602001612542565b50506000910152565b6000815180845261257b81602086016020860161253f565b601f01601f19169290920160200192915050565b60006001600160601b038083511684528060208401511660208501525060ff6040830151166040840152606082015115156060840152608082015160018060a01b0380821660808601528060a08501511660a0860152505060c082015160e060c085015261260060e0850182612563565b949350505050565b60408152600061261b604083018561258f565b828103602084015261262d8185612563565b95945050505050565b62ffffff8116811461213e57600080fd5b60006020828403121561265957600080fd5b813561253881612636565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b038111828210171561269c5761269c612664565b60405290565b604051601f8201601f191681016001600160401b03811182821017156126ca576126ca612664565b604052919050565b6001600160601b038116811461213e57600080fd5b80356126f2816126d2565b919050565b60ff8116811461213e57600080fd5b80356126f2816126f7565b801515811461213e57600080fd5b80356126f281612711565b6001600160a01b038116811461213e57600080fd5b80356126f28161272a565b60006001600160401b0382111561276357612763612664565b50601f01601f191660200190565b600082601f83011261278257600080fd5b81356127956127908261274a565b6126a2565b8181528460208386010111156127aa57600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156127d957600080fd5b81356001600160401b03808211156127f057600080fd5b9083019060e0828603121561280457600080fd5b61280c61267a565b612815836126e7565b8152612823602084016126e7565b602082015261283460408401612706565b60408201526128456060840161271f565b60608201526128566080840161273f565b608082015261286760a0840161273f565b60a082015260c08301358281111561287e57600080fd5b61288a87828601612771565b60c08301525095945050505050565b600080604083850312156128ac57600080fd5b82356128b78161272a565b915060208301356128c78161272a565b809150509250929050565b6000602082840312156128e457600080fd5b81356125388161272a565b6001600160e01b031991909116815260200190565b60008060006060848603121561291957600080fd5b83356129248161272a565b925060208401356129348161272a565b915060408401356001600160401b0381111561294f57600080fd5b61295b86828701612771565b9150509250925092565b60006020828403121561297757600080fd5b5035919050565b60006020828403121561299057600080fd5b815161253881612636565b634e487b7160e01b600052603260045260246000fd5b602080825282518282018190526000919060409081850190868401855b82811015612a00578151805160ff1685528601516001600160e01b0319168685015292840192908501906001016129ce565b5091979650505050505050565b80516126f281612711565b600060208284031215612a2a57600080fd5b815161253881612711565b80516126f2816126d2565b600060208284031215612a5257600080fd5b8151612538816126d2565b600060208284031215612a6f57600080fd5b5051919050565b602081526000612538602083018461258f565b80516126f28161272a565b600060208284031215612aa657600080fd5b81516125388161272a565b600060208284031215612ac357600080fd5b81516001600160401b038116811461253857600080fd5b80516126f2816126f7565b600060208284031215612af757600080fd5b8151612538816126f7565b600181811c90821680612b1657607f821691505b602082108103612b3657634e487b7160e01b600052602260045260246000fd5b50919050565b60008085851115612b4c57600080fd5b83861115612b5957600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015612b8e5780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600082601f830112612be757600080fd5b8151612bf56127908261274a565b818152846020838601011115612c0a57600080fd5b61260082602083016020870161253f565b60008060408385031215612c2e57600080fd5b82516001600160401b0380821115612c4557600080fd5b9084019060e08287031215612c5957600080fd5b612c6161267a565b612c6a83612a35565b8152612c7860208401612a35565b6020820152612c8960408401612ada565b6040820152612c9a60608401612a0d565b6060820152612cab60808401612a89565b6080820152612cbc60a08401612a89565b60a082015260c083015182811115612cd357600080fd5b612cdf88828601612bd6565b60c0830152506020860151909450915080821115612cfc57600080fd5b50612d0985828601612bd6565b9150509250929050565b600060208284031215612d2557600080fd5b815164ffffffffff8116811461253857600080fd5b60008060408385031215612d4d57600080fd5b8251612d588161272a565b60208401519092506128c78161272a565b60008251612d7b81846020870161253f565b9190910192915050565b60008060408385031215612d9857600080fd5b8251612da381612711565b602084015190925063ffffffff811681146128c757600080fd5b601f8211156119a157600081815260208120601f850160051c81016020861015612de45750805b601f850160051c820191505b8181101561189357828155600101612df0565b81516001600160401b03811115612e1c57612e1c612664565b612e3081612e2a8454612b02565b84612dbd565b602080601f831160018114612e655760008415612e4d5750858301515b600019600386901b1c1916600185901b178555611893565b600085815260208120601f198616915b82811015612e9457888601518255948401946001909101908401612e75565b5085821015612eb25787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a2646970667358221220202d0cb017c06a26551ff78284f3dae69d0bdb2234d5b902c732cfee825523eb64736f6c63430008140033",
1102
- "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063834af15311610104578063b68d1809116100a2578063cde749f411610071578063cde749f414610547578063cf7a1d771461054f578063e285c9c414610562578063ed841d0c1461056a57600080fd5b8063b68d180914610504578063b88da75914610519578063bf7e214f1461052c578063c2bf08c81461053457600080fd5b80638fbc2d81116100de5780638fbc2d8114610497578063946dfcfe146104aa578063a745e3df146104d1578063b3c65015146104e457600080fd5b8063834af15314610467578063893d20e81461047a5780638fb360371461048257600080fd5b80635ab1bd5311610171578063644c45e01161014b578063644c45e0146104165780637286e5e51461042e5780637a9e5e4b146104415780638105cc7f1461045457600080fd5b80635ab1bd53146103b35780635c992fed146103d85780635d9662891461040357600080fd5b8063138461e0116101ad578063138461e0146102485780631eff4b22146102525780634d459c90146102875780634f421333146103a057600080fd5b806301ffc9a7146101d45780630d8e6e2c146102165780630fec111c14610232575b600080fd5b6102016101e236600461250e565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61021e610572565b60405162ffffff909116815260200161020d565b61023a6105fc565b60405161020d929190612608565b6102506108ea565b005b6102797f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161020d565b610343610295366004612647565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152600080516020612f0383398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a00161020d565b6102016103ae366004612647565b610b0c565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161020d565b6103eb6103e63660046127c7565b610bbf565b6040516001600160601b03909116815260200161020d565b61023a610411366004612899565b610c52565b600154600160a01b90046001600160601b03166103eb565b61023a61043c366004612899565b610de4565b61025061044f3660046128d2565b610e93565b6103eb6104623660046127c7565b610f1a565b61023a6104753660046128d2565b610f30565b6103c06110b7565b61048a6111d0565b60405161020d91906128ef565b61023a6104a5366004612899565b611209565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed90154610279565b6102506104df366004612904565b6112b8565b6104ec611412565b6040516001600160401b03909116815260200161020d565b60285b60405160ff909116815260200161020d565b61021e610527366004612965565b611433565b6103c0611484565b6103eb6105423660046127c7565b6114a0565b6105076114b6565b61025061055d366004612904565b611539565b6103c0600181565b610279600081565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156105d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f7919061297e565b905090565b6106046124d0565b606061060e611642565b60408051600680825260e0820190925292945090925060009190816020015b604080518082019091526000808252602082015281526020019060019003908161062d57905050905061065e604690565b816000815181106106715761067161299b565b602090810291909101015160ff9091169052805163834af15360e01b90829060009061069f5761069f61299b565b6020908102919091018101516001600160e01b03199092169101526106c2608c90565b816001815181106106d5576106d561299b565b602090810291909101015160ff90911690528051637286e5e560e01b90829060019081106107055761070561299b565b6020908102919091018101516001600160e01b0319909216910152610728607890565b8160028151811061073b5761073b61299b565b602090810291909101015160ff90911690528051638fbc2d8160e01b908290600290811061076b5761076b61299b565b6020908102919091018101516001600160e01b031990921691015261078e606e90565b816003815181106107a1576107a161299b565b602090810291909101015160ff90911690528051635d96628960e01b90829060039081106107d1576107d161299b565b6020908102919091018101516001600160e01b03199092169101526107f460d290565b816004815181106108075761080761299b565b602090810291909101015160ff90911690528051635c992fed60e01b90829060049081106108375761083761299b565b6020908102919091018101516001600160e01b031990921691015261085a60dc90565b8160058151811061086d5761086d61299b565b602090810291909101015160ff90911690528051631857e11960e31b908290600590811061089d5761089d61299b565b6020026020010151602001906001600160e01b03191690816001600160e01b03191681525050806040516020016108d491906129b1565b6040516020818303038152906040529150509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561094c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109709190612a18565b156109b7576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166109e05760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610a29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4d9190612a18565b610a75576040516372657a5160e01b81526001600160a01b03821660048201526024016109ae565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610abf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae39190612a40565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080600080516020612f0383398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610b94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb89190612a5d565b1192915050565b6000610bce335b600036611795565b610bd98260d261189b565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e90610c09908590600401612a76565b6020604051808303816000875af1158015610c28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4c9190612a40565b92915050565b610c5a6124d0565b6060610c6533610bc6565b6040516301ffc9a760e01b81526001600160a01b038516906301ffc9a790610c9890633ad74e8160e01b906004016128ef565b602060405180830381865afa158015610cb5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd99190612a18565b610cf657604051637a71998760e01b815260040160405180910390fd5b610d0384606e5b856119a6565b6001546040516352efcf2760e11b81529294509092506001600160a01b03169063a5df9e4e90610d37908590600401612a76565b6020604051808303816000875af1158015610d56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7a9190612a40565b6001600160601b0316825260408051629c230f60e51b815290516001600160a01b0386169163138461e091600480830192600092919082900301818387803b158015610dc557600080fd5b505af1158015610dd9573d6000803e3d6000fd5b505050509250929050565b610dec6124d0565b6060610df733610bc6565b6040516301ffc9a760e01b81526001600160a01b038516906301ffc9a790610e2a90634ce2a6c760e11b906004016128ef565b602060405180830381865afa158015610e47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6b9190612a18565b610e8857604051636f61f64160e01b815260040160405180910390fd5b610d0384608c610cfd565b33610e9c611484565b6001600160a01b0316816001600160a01b031614610ed75760405162d1953b60e31b81526001600160a01b03821660048201526024016109ae565b816001600160a01b03163b600003610f0d576040516361798f2f60e11b81526001600160a01b03831660048201526024016109ae565b610f1682611bac565b5050565b6000610f2533610bc6565b610bd982605061189b565b610f386124d0565b6040516301ffc9a760e01b81526060906001600160a01b038416906301ffc9a790610f6e906318da1e1f60e11b906004016128ef565b602060405180830381865afa158015610f8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610faf9190612a18565b610fcc57604051636795c76360e01b815260040160405180910390fd5b610fd8836046336119a6565b6001546040516352efcf2760e11b81529294509092506001600160a01b03169063a5df9e4e9061100c908590600401612a76565b6020604051808303816000875af115801561102b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104f9190612a40565b6001600160601b0316825260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192600092919082900301818387803b15801561109a57600080fd5b505af11580156110ae573d6000803e3d6000fd5b50505050915091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561111c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111409190612a18565b156111c057600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa15801561119c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f79190612a94565b506002546001600160a01b031690565b600080516020612ec3833981519152805460009190600160a01b900460ff166111fa576000611203565b638fb3603760e01b5b91505090565b6112116124d0565b606061121c33610bc6565b6040516301ffc9a760e01b81526001600160a01b038516906301ffc9a79061124f9063c8ea96c560e01b906004016128ef565b602060405180830381865afa15801561126c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112909190612a18565b6112ad576040516308707e3160e41b815260040160405180910390fd5b610d03846078610cfd565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c6112da610572565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561131a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133e9190612ab1565b600080516020612ee38339815191528054600160401b900460ff1680611371575080546001600160401b03808416911610155b1561138f5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556113ba8585611c0d565b6113c383611eac565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b60006105f7600080516020612ee3833981519152546001600160401b031690565b6000600080516020612f0383398151915260010182815481106114585761145861299b565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b600080516020612ec3833981519152546001600160a01b031690565b60006114ab33610bc6565b610bd98260dc61189b565b60006114c0610572565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015611515573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f79190612ae5565b600080516020612ee38339815191528054600160401b810460ff1615906001600160401b031660008115801561156c5750825b90506000826001600160401b031660011480156115885750303b155b905081158015611596575080155b156115b45760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156115de57845460ff60401b1916600160401b1785555b6115e88888611c0d565b6115f28787611eb4565b831561163857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b61164a6124d0565b606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806116966001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016116de6110b7565b6001600160a01b031681526020018260010180546116fb90612b02565b80601f016020809104026020016040519081016040528092919081815260200182805461172790612b02565b80156117745780601f1061174957610100808354040283529160200191611774565b820191906000526020600020905b81548152906001019060200180831161175757829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b600080516020612ec38339815191526000806117d06117b2611484565b87306117c2600460008a8c612b3c565b6117cb91612b66565b611fe8565b91509150816118935763ffffffff81161561187057825460ff60a01b1916600160a01b1783556117fe611484565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161182d93929190612b96565b600060405180830381600087803b15801561184757600080fd5b505af115801561185b573d6000803e3d6000fd5b5050845460ff60a01b19168555506118939050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016109ae565b505050505050565b60006080830152604082015160ff8281169116146118df576040808301519051632208245760e11b815260ff808416600483015290911660248201526044016109ae565b60a08201516001600160a01b03811661190b57604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa15801561195f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119839190612a18565b156119a157604051637142ceb360e11b815260040160405180910390fd5b505050565b6119ae6124d0565b6060846001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156119ee573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611a169190810190612c1b565b6001600160a01b03871660808301526040820151919350915060ff858116911614611a67576040808301519051632208245760e11b815260ff808716600483015290911660248201526044016109ae565b60a082015160ff8516604614611ab457836001600160a01b0316816001600160a01b031614611ab45760405163dfc430cb60e01b81526001600160a01b03851660048201526024016109ae565b856001600160a01b0316816001600160a01b031603611ae6576040516317faf4db60e11b815260040160405180910390fd5b6001600160a01b038116611b0d57604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611b61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b859190612a18565b15611ba357604051637142ceb360e11b815260040160405180910390fd5b50935093915050565b600080516020612ec383398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b611c156120f4565b600080516020612f038339815191526000611c45600080516020612ee3833981519152546001600160401b031690565b90506000611c51610572565b9050816001600160401b0316600103611c7e5760028301805462ffffff191662ffffff8316179055611ccc565b600283015462ffffff90811690821611611ccc5760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b60448201526064016109ae565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015611d80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611da49190612d13565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf68906114039083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b6101cf6120f4565b600080516020612ee38339815191528054600160401b810460ff1615906001600160401b0316600081158015611ee75750825b90506000826001600160401b03166001148015611f035750303b155b905081158015611f11575080155b15611f2f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611f5957845460ff60401b1916600160401b1785555b60008087806020019051810190611f709190612d3a565b91509150611f7d8261212d565b611f87818a612141565b611f9763bdc07c9b60e01b6121ac565b50508315611fdf57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516120579190612d69565b600060405180830381855afa9150503d8060008114612092576040519150601f19603f3d011682016040523d82523d6000602084013e612097565b606091505b509150915081156120e95760408151106120c957808060200190518101906120bf9190612d85565b90945092506120e9565b60208151106120e957808060200190518101906120e69190612a18565b93505b505094509492505050565b600080516020612ee383398151915254600160401b900460ff1661212b57604051631afcd79f60e31b815260040160405180910390fd5b565b6121356120f4565b61213e816121d1565b50565b6000602861214d6114b6565b6040805160ff9384166020820152929091169082015260600160405160208183030381529060405290506000612182846121e2565b905060006121958583603c848888612229565b6121a5637b6a51fd60e01b6121ac565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6121d96120f4565b61213e81611bac565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015610c28573d6000803e3d6000fd5b61226a6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61227482876122f5565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016122e48382612e03565b50611fdf6303fb044760e21b6121ac565b6001600160a01b03821661234b5760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e65722069732030000060448201526064016109ae565b600280546001600160a01b0319166001600160a01b038416179055610f16816001546001600160a01b0316156123a35760015460405163fcdbf2d960e01b81526001600160a01b0390911660048201526024016109ae565b6001600160a01b0381166123ca5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036124005760405163fdeac91f60e01b81526001600160a01b03821660048201526024016109ae565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a7906124469063102da10360e01b906004016128ef565b602060405180830381865afa92505050801561247f575060408051601f3d908101601f1916820190925261247c91810190612a18565b60015b6124a75760405163fdeac91f60e01b81526001600160a01b03821660048201526024016109ae565b80610f165760405163fdeac91f60e01b81526001600160a01b03831660048201526024016109ae565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b60006020828403121561252057600080fd5b81356001600160e01b03198116811461253857600080fd5b9392505050565b60005b8381101561255a578181015183820152602001612542565b50506000910152565b6000815180845261257b81602086016020860161253f565b601f01601f19169290920160200192915050565b60006001600160601b038083511684528060208401511660208501525060ff6040830151166040840152606082015115156060840152608082015160018060a01b0380821660808601528060a08501511660a0860152505060c082015160e060c085015261260060e0850182612563565b949350505050565b60408152600061261b604083018561258f565b828103602084015261262d8185612563565b95945050505050565b62ffffff8116811461213e57600080fd5b60006020828403121561265957600080fd5b813561253881612636565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b038111828210171561269c5761269c612664565b60405290565b604051601f8201601f191681016001600160401b03811182821017156126ca576126ca612664565b604052919050565b6001600160601b038116811461213e57600080fd5b80356126f2816126d2565b919050565b60ff8116811461213e57600080fd5b80356126f2816126f7565b801515811461213e57600080fd5b80356126f281612711565b6001600160a01b038116811461213e57600080fd5b80356126f28161272a565b60006001600160401b0382111561276357612763612664565b50601f01601f191660200190565b600082601f83011261278257600080fd5b81356127956127908261274a565b6126a2565b8181528460208386010111156127aa57600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156127d957600080fd5b81356001600160401b03808211156127f057600080fd5b9083019060e0828603121561280457600080fd5b61280c61267a565b612815836126e7565b8152612823602084016126e7565b602082015261283460408401612706565b60408201526128456060840161271f565b60608201526128566080840161273f565b608082015261286760a0840161273f565b60a082015260c08301358281111561287e57600080fd5b61288a87828601612771565b60c08301525095945050505050565b600080604083850312156128ac57600080fd5b82356128b78161272a565b915060208301356128c78161272a565b809150509250929050565b6000602082840312156128e457600080fd5b81356125388161272a565b6001600160e01b031991909116815260200190565b60008060006060848603121561291957600080fd5b83356129248161272a565b925060208401356129348161272a565b915060408401356001600160401b0381111561294f57600080fd5b61295b86828701612771565b9150509250925092565b60006020828403121561297757600080fd5b5035919050565b60006020828403121561299057600080fd5b815161253881612636565b634e487b7160e01b600052603260045260246000fd5b602080825282518282018190526000919060409081850190868401855b82811015612a00578151805160ff1685528601516001600160e01b0319168685015292840192908501906001016129ce565b5091979650505050505050565b80516126f281612711565b600060208284031215612a2a57600080fd5b815161253881612711565b80516126f2816126d2565b600060208284031215612a5257600080fd5b8151612538816126d2565b600060208284031215612a6f57600080fd5b5051919050565b602081526000612538602083018461258f565b80516126f28161272a565b600060208284031215612aa657600080fd5b81516125388161272a565b600060208284031215612ac357600080fd5b81516001600160401b038116811461253857600080fd5b80516126f2816126f7565b600060208284031215612af757600080fd5b8151612538816126f7565b600181811c90821680612b1657607f821691505b602082108103612b3657634e487b7160e01b600052602260045260246000fd5b50919050565b60008085851115612b4c57600080fd5b83861115612b5957600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015612b8e5780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600082601f830112612be757600080fd5b8151612bf56127908261274a565b818152846020838601011115612c0a57600080fd5b61260082602083016020870161253f565b60008060408385031215612c2e57600080fd5b82516001600160401b0380821115612c4557600080fd5b9084019060e08287031215612c5957600080fd5b612c6161267a565b612c6a83612a35565b8152612c7860208401612a35565b6020820152612c8960408401612ada565b6040820152612c9a60608401612a0d565b6060820152612cab60808401612a89565b6080820152612cbc60a08401612a89565b60a082015260c083015182811115612cd357600080fd5b612cdf88828601612bd6565b60c0830152506020860151909450915080821115612cfc57600080fd5b50612d0985828601612bd6565b9150509250929050565b600060208284031215612d2557600080fd5b815164ffffffffff8116811461253857600080fd5b60008060408385031215612d4d57600080fd5b8251612d588161272a565b60208401519092506128c78161272a565b60008251612d7b81846020870161253f565b9190910192915050565b60008060408385031215612d9857600080fd5b8251612da381612711565b602084015190925063ffffffff811681146128c757600080fd5b601f8211156119a157600081815260208120601f850160051c81016020861015612de45750805b601f850160051c820191505b8181101561189357828155600101612df0565b81516001600160401b03811115612e1c57612e1c612664565b612e3081612e2a8454612b02565b84612dbd565b602080601f831160018114612e655760008415612e4d5750858301515b600019600386901b1c1916600185901b178555611893565b600085815260208120601f198616915b82811015612e9457888601518255948401946001909101908401612e75565b5085821015612eb25787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a2646970667358221220202d0cb017c06a26551ff78284f3dae69d0bdb2234d5b902c732cfee825523eb64736f6c63430008140033",
1354
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b612b63806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106101f2575f3560e01c8063675393bf116101145780638fbc2d81116100a9578063c2bf08c811610079578063c2bf08c81461047b578063c4c79d8b1461048e578063d943342d146104a1578063ed841d0c146104b4578063f7c34ee0146104bb575f80fd5b80638fbc2d811461043d578063ada9652e14610450578063b68d180914610464578063bf7e214f14610473575f80fd5b80638105cc7f116100e45780638105cc7f146103fa578063893d20e81461040d5780638e32e979146104155780638fb3603714610428575f80fd5b8063675393bf146103a15780636c741e78146103b45780637286e5e5146103d45780637a9e5e4b146103e7575f80fd5b8063329d6e741161018a5780635ab1bd531161015a5780635ab1bd53146103395780635c992fed1461035e5780635d96628914610371578063644c45e014610384575f80fd5b8063329d6e74146102f857806336fc697e1461030b57806349bb9e4b1461031357806357a8fba714610326575f80fd5b8063138461e0116101c5578063138461e01461027b5780631eff4b221461029b578063214cdb80146102d057806327bb7a33146102e5575f80fd5b806301ffc9a7146101f6578063026bc43b146102375780630d8e6e2c146102575780630fec111c14610273575b5f80fd5b610222610204366004612180565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61024a6102453660046121d2565b6104ce565b60405161022e9190612237565b61025f610686565b60405162ffffff909116815260200161022e565b61024a61070d565b610283610899565b6040516001600160601b03909116815260200161022e565b6102c27f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161022e565b6102e36102de366004612180565b6108a3565b005b6102e36102f33660046123ff565b6108cf565b6102e3610306366004612492565b610974565b6102e3610abe565b6102e36103213660046124c3565b610b03565b61028361033436600461250f565b610bff565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161022e565b61028361036c36600461250f565b610c8a565b61024a61037f3660046121d2565b610c9f565b5f80516020612ace833981519152546001600160601b0316610283565b6102e36103af3660046125df565b610de5565b6103bc610ef7565b6040516001600160401b03909116815260200161022e565b61024a6103e23660046121d2565b610fed565b6102e36103f53660046125df565b6110a3565b61028361040836600461250f565b611125565b61034661113a565b6102e36104233660046125fa565b61126b565b6104306113a8565b60405161022e9190612642565b61024a61044b3660046121d2565b6113dd565b6102c25f80516020612ace83398151915281565b6040516002815260200161022e565b610346611493565b61028361048936600461250f565b6114ae565b61024a61049c3660046121d2565b6114c3565b61024a6104af366004612657565b6114df565b6102c25f81565b6102e36104c93660046121d2565b611626565b6104d6612143565b6104e2335b5f3661169c565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061051590632b1cb34b60e11b90600401612642565b602060405180830381865afa158015610530573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610554919061268f565b61058157604051631c8275e960e21b81526001600160a01b03841660048201526024015b60405180910390fd5b61058e83600a5b8461179a565b90506105a26001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b81526004016105cd9190612237565b6020604051808303815f875af11580156105e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061060d91906126b5565b6001600160601b0316815260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192602092919082900301815f875af115801561065b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061067f91906126b5565b5092915050565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156106e4573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061070891906126d0565b905090565b610715612143565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561078b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107af91906126b5565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016107f761113a565b6001600160a01b03168152602001826001018054610814906126f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610840906126f2565b801561088b5780601f106108625761010080835404028352916020019161088b565b820191905f5260205f20905b81548152906001019060200180831161086e57829003601f168201915b505050505081525091505090565b5f61070830611a0b565b6108ab611c04565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6108d7611c04565b6108e18287611626565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30161096a8382612775565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610996610686565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156109d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109f89190612843565b5f80516020612b0e8339815191528054600160401b900460ff1680610a2a575080546001600160401b03808416911610155b15610a485760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610a7283611c3c565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610ac6611c04565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f80516020612b0e8339815191528054600160401b810460ff1615906001600160401b03165f81158015610b345750825b90505f826001600160401b03166001148015610b4f5750303b155b905081158015610b5d575080155b15610b7b5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610ba557845460ff60401b1916600160401b1785555b610baf8787611c44565b8315610bf657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b5f610c09336104db565b610c1482601c611d5f565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e90610c44908590600401612237565b6020604051808303815f875af1158015610c60573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c8491906126b5565b92915050565b5f610c94336104db565b610c14826015611d5f565b610ca7612143565b610cb0336104db565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610ce39063a388186360e01b90600401612642565b602060405180830381865afa158015610cfe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d22919061268f565b610d4a5760405163704b6c6d60e11b81526001600160a01b0384166004820152602401610578565b610d5583600c610588565b9050610d696001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b8152600401610d949190612237565b6020604051808303815f875af1158015610db0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dd491906126b5565b6001600160601b0316815292915050565b610ded611c04565b806001600160a01b03163b5f03610e225760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610578565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a790610e68906318788cbb60e11b90600401612642565b602060405180830381865afa925050508015610ea1575060408051601f3d908101601f19168201909252610e9e9181019061268f565b60015b610ec95760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610578565b80610ef25760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610578565b505b50565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d36002604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015610f62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f869190612869565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015610fc9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107089190612843565b610ff5612143565b610ffe336104db565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061103190636ec6c77160e11b90600401612642565b602060405180830381865afa15801561104c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611070919061268f565b611098576040516304c983f360e41b81526001600160a01b0384166004820152602401610578565b610d5583600f610588565b336110ac611493565b6001600160a01b0316816001600160a01b0316146110e75760405162d1953b60e31b81526001600160a01b0382166004820152602401610578565b816001600160a01b03163b5f0361111c576040516361798f2f60e11b81526001600160a01b0383166004820152602401610578565b610ef282611eb8565b5f61112f336104db565b610c14826020611d5f565b5f805f80516020612ace83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156111a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111ca919061268f565b15611255576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561122b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061124f919061288f565b91505090565b54600160601b90046001600160a01b0316919050565b611273611c04565b6112ef83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112b3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112d791906126b5565b60085f8560405180602001604052805f8152506108cf565b6001600160a01b0382161561130c5761130782611f18565b611383565b5f6113176002611f29565b9050611381816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611358573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061137c919061288f565b611f18565b505b611393634a531f3360e01b6108a3565b6113a363daf9067160e01b6108a3565b505050565b5f80516020612aee83398151915280545f9190600160a01b900460ff166113cf575f61124f565b638fb3603760e01b91505090565b6113e5612143565b6113ee336104db565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790611421906301a39f4760e01b90600401612642565b602060405180830381865afa15801561143c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611460919061268f565b611488576040516367237f5b60e11b81526001600160a01b0384166004820152602401610578565b610d5583600e610588565b5f80516020612aee833981519152546001600160a01b031690565b5f6114b8336104db565b610c1482601e611d5f565b6114cb612143565b6114d4336104db565b610d55836003610588565b6114e7612143565b6114f0336104db565b6040516301ffc9a760e01b81526001600160a01b038516906301ffc9a79061152390632986755f60e11b90600401612642565b602060405180830381865afa15801561153e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611562919061268f565b61158a57604051632624ae7760e01b81526001600160a01b0385166004820152602401610578565b61159584848461179a565b90506115a96001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b81526004016115d49190612237565b6020604051808303815f875af11580156115f0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061161491906126b5565b6001600160601b031681529392505050565b61162e611c04565b61163781610de5565b61163f610abe565b6001600160a01b0382166116665760405163f17ef42d60e01b815260040160405180910390fd5b505f80516020612ace83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b5f80516020612aee8339815191525f806116d46116b7611493565b87306116c660045f8a8c6128aa565b6116cf916128d1565b61202a565b91509150816117925763ffffffff81161561176f57825460ff60a01b1916600160a01b178355611702611493565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161173193929190612907565b5f604051808303815f87803b158015611748575f80fd5b505af115801561175a573d5f803e3d5ffd5b5050845460ff60a01b19168555506117929050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610578565b505050505050565b6117a2612143565b836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa1580156117dd573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526118049190810190612993565b9050836001600160a01b031681608001516001600160a01b0316146118555760808101516040516306704ad960e11b81526001600160a01b0380871660048301529091166024820152604401610578565b604081015160ff8481169116146118a157604080820151905163137f2ac560e31b81526001600160a01b038616600482015260ff80861660248301529091166044820152606401610578565b60a08101516001600160a01b03808216908416146118ed576040516335ce70c360e21b81526001600160a01b038087166004830152808516602483015282166044820152606401610578565b846001600160a01b0316816001600160a01b03160361192a57604051638e80a3f960e01b81526001600160a01b0386166004820152602401610578565b6001600160a01b03811661195c576040516343e40cb560e01b81526001600160a01b0386166004820152602401610578565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156119ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119d2919061268f565b15611a03576040516309ad872b60e41b81526001600160a01b03808716600483015282166024820152604401610578565b509392505050565b5f805f80516020612ace83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611a77573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a9b919061268f565b15611ac75780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610578565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015611b19573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b3d919061268f565b611b655760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610578565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015611bb7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bdb91906126b5565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f80516020612b0e83398151915254600160401b900460ff16611c3a57604051631afcd79f60e31b815260040160405180910390fd5b565b6101f2611c04565b5f80516020612b0e8339815191528054600160401b810460ff1615906001600160401b03165f81158015611c755750825b90505f826001600160401b03166001148015611c905750303b155b905081158015611c9e575080155b15611cbc5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611ce657845460ff60401b1916600160401b1785555b5f8087806020019051810190611cfc9190612a55565b91509150611d0b82828b61126b565b611d1b6393a3e0eb60e01b6108a3565b50508315610bf657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610bed565b60808201516001600160a01b031615611d965760408083015190516340fda83160e11b815260ff9091166004820152602401610578565b604082015160ff828116911614611dd3576040808301519051632e5fbed960e21b815260ff80841660048301529091166024820152604401610578565b60a08201516001600160a01b038116611e0a576040808401519051633312954f60e21b815260ff9091166004820152602401610578565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611e5c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e80919061268f565b156113a357604080840151905163b4139d2560e01b815260ff90911660048201526001600160a01b0382166024820152604401610578565b5f80516020612aee83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b611f20611c04565b610ef481612132565b5f611f3c6001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611f9f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fc39190612869565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015612006573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c84919061288f565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516120989190612a82565b5f60405180830381855afa9150503d805f81146120d0576040519150601f19603f3d011682016040523d82523d5f602084013e6120d5565b606091505b5091509150811561212757604081511061210757808060200190518101906120fd9190612a98565b9094509250612127565b60208151106121275780806020019051810190612124919061268f565b93505b505094509492505050565b61213a611c04565b610ef481611eb8565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b5f60208284031215612190575f80fd5b81356001600160e01b0319811681146121a7575f80fd5b9392505050565b6001600160a01b0381168114610ef4575f80fd5b80356121cd816121ae565b919050565b5f80604083850312156121e3575f80fd5b82356121ee816121ae565b915060208301356121fe816121ae565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f606083015161227f608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526122c3610100840182612209565b949350505050565b6001600160601b0381168114610ef4575f80fd5b80356121cd816122cb565b60ff81168114610ef4575f80fd5b80356121cd816122ea565b8015158114610ef4575f80fd5b80356121cd81612303565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b03811182821017156123515761235161231b565b60405290565b604051601f8201601f191681016001600160401b038111828210171561237f5761237f61231b565b604052919050565b5f6001600160401b0382111561239f5761239f61231b565b50601f01601f191660200190565b5f82601f8301126123bc575f80fd5b81356123cf6123ca82612387565b612357565b8181528460208386010111156123e3575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f805f8060c08789031215612414575f80fd5b863561241f816121ae565b9550602087013561242f816122cb565b9450604087013561243f816122ea565b9350606087013561244f81612303565b9250608087013561245f816121ae565b915060a08701356001600160401b03811115612479575f80fd5b61248589828a016123ad565b9150509295509295509295565b5f602082840312156124a2575f80fd5b81356001600160401b038111156124b7575f80fd5b6122c3848285016123ad565b5f80604083850312156124d4575f80fd5b82356124df816121ae565b915060208301356001600160401b038111156124f9575f80fd5b612505858286016123ad565b9150509250929050565b5f6020828403121561251f575f80fd5b81356001600160401b03811115612534575f80fd5b820160e08185031215612545575f80fd5b61254d61232f565b612556826122df565b8152612564602083016122df565b6020820152612575604083016122f8565b604082015261258660608301612310565b6060820152612597608083016121c2565b60808201526125a860a083016121c2565b60a082015260c08201356001600160401b038111156125c5575f80fd5b6125d1868285016123ad565b60c083015250949350505050565b5f602082840312156125ef575f80fd5b81356121a7816121ae565b5f805f6060848603121561260c575f80fd5b8335612617816121ae565b92506020840135612627816121ae565b91506040840135612637816121ae565b809150509250925092565b6001600160e01b031991909116815260200190565b5f805f60608486031215612669575f80fd5b8335612674816121ae565b92506020840135612627816122ea565b80516121cd81612303565b5f6020828403121561269f575f80fd5b81516121a781612303565b80516121cd816122cb565b5f602082840312156126c5575f80fd5b81516121a7816122cb565b5f602082840312156126e0575f80fd5b815162ffffff811681146121a7575f80fd5b600181811c9082168061270657607f821691505b60208210810361272457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156113a357805f5260205f20601f840160051c8101602085101561274f5750805b601f840160051c820191505b8181101561276e575f815560010161275b565b5050505050565b81516001600160401b0381111561278e5761278e61231b565b6127a28161279c84546126f2565b8461272a565b6020601f8211600181146127d4575f83156127bd5750848201515b5f19600385901b1c1916600184901b17845561276e565b5f84815260208120601f198516915b8281101561280357878501518255602094850194600190920191016127e3565b508482101561282057868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160401b0381168114610ef4575f80fd5b5f60208284031215612853575f80fd5b81516121a78161282f565b80516121cd816122ea565b5f60208284031215612879575f80fd5b81516121a7816122ea565b80516121cd816121ae565b5f6020828403121561289f575f80fd5b81516121a7816121ae565b5f80858511156128b8575f80fd5b838611156128c4575f80fd5b5050820193919092039150565b80356001600160e01b0319811690600484101561067f576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f82601f830112612955575f80fd5b81516129636123ca82612387565b818152846020838601011115612977575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f602082840312156129a3575f80fd5b81516001600160401b038111156129b8575f80fd5b820160e081850312156129c9575f80fd5b6129d161232f565b6129da826126aa565b81526129e8602083016126aa565b60208201526129f96040830161285e565b6040820152612a0a60608301612684565b6060820152612a1b60808301612884565b6080820152612a2c60a08301612884565b60a082015260c08201516001600160401b03811115612a49575f80fd5b6125d186828501612946565b5f8060408385031215612a66575f80fd5b8251612a71816121ae565b60208401519092506121fe816121ae565b5f82518060208501845e5f920191825250919050565b5f8060408385031215612aa9575f80fd5b8251612ab481612303565b602084015190925063ffffffff811681146121fe575f80fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220edded31d57b17df74aefaa45800882ae1f30c6cef11c502e9c55a97a75331b0b64736f6c634300081a0033",
1355
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101f2575f3560e01c8063675393bf116101145780638fbc2d81116100a9578063c2bf08c811610079578063c2bf08c81461047b578063c4c79d8b1461048e578063d943342d146104a1578063ed841d0c146104b4578063f7c34ee0146104bb575f80fd5b80638fbc2d811461043d578063ada9652e14610450578063b68d180914610464578063bf7e214f14610473575f80fd5b80638105cc7f116100e45780638105cc7f146103fa578063893d20e81461040d5780638e32e979146104155780638fb3603714610428575f80fd5b8063675393bf146103a15780636c741e78146103b45780637286e5e5146103d45780637a9e5e4b146103e7575f80fd5b8063329d6e741161018a5780635ab1bd531161015a5780635ab1bd53146103395780635c992fed1461035e5780635d96628914610371578063644c45e014610384575f80fd5b8063329d6e74146102f857806336fc697e1461030b57806349bb9e4b1461031357806357a8fba714610326575f80fd5b8063138461e0116101c5578063138461e01461027b5780631eff4b221461029b578063214cdb80146102d057806327bb7a33146102e5575f80fd5b806301ffc9a7146101f6578063026bc43b146102375780630d8e6e2c146102575780630fec111c14610273575b5f80fd5b610222610204366004612180565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61024a6102453660046121d2565b6104ce565b60405161022e9190612237565b61025f610686565b60405162ffffff909116815260200161022e565b61024a61070d565b610283610899565b6040516001600160601b03909116815260200161022e565b6102c27f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161022e565b6102e36102de366004612180565b6108a3565b005b6102e36102f33660046123ff565b6108cf565b6102e3610306366004612492565b610974565b6102e3610abe565b6102e36103213660046124c3565b610b03565b61028361033436600461250f565b610bff565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161022e565b61028361036c36600461250f565b610c8a565b61024a61037f3660046121d2565b610c9f565b5f80516020612ace833981519152546001600160601b0316610283565b6102e36103af3660046125df565b610de5565b6103bc610ef7565b6040516001600160401b03909116815260200161022e565b61024a6103e23660046121d2565b610fed565b6102e36103f53660046125df565b6110a3565b61028361040836600461250f565b611125565b61034661113a565b6102e36104233660046125fa565b61126b565b6104306113a8565b60405161022e9190612642565b61024a61044b3660046121d2565b6113dd565b6102c25f80516020612ace83398151915281565b6040516002815260200161022e565b610346611493565b61028361048936600461250f565b6114ae565b61024a61049c3660046121d2565b6114c3565b61024a6104af366004612657565b6114df565b6102c25f81565b6102e36104c93660046121d2565b611626565b6104d6612143565b6104e2335b5f3661169c565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061051590632b1cb34b60e11b90600401612642565b602060405180830381865afa158015610530573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610554919061268f565b61058157604051631c8275e960e21b81526001600160a01b03841660048201526024015b60405180910390fd5b61058e83600a5b8461179a565b90506105a26001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b81526004016105cd9190612237565b6020604051808303815f875af11580156105e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061060d91906126b5565b6001600160601b0316815260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192602092919082900301815f875af115801561065b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061067f91906126b5565b5092915050565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156106e4573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061070891906126d0565b905090565b610715612143565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561078b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107af91906126b5565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016107f761113a565b6001600160a01b03168152602001826001018054610814906126f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610840906126f2565b801561088b5780601f106108625761010080835404028352916020019161088b565b820191905f5260205f20905b81548152906001019060200180831161086e57829003601f168201915b505050505081525091505090565b5f61070830611a0b565b6108ab611c04565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6108d7611c04565b6108e18287611626565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30161096a8382612775565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610996610686565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156109d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109f89190612843565b5f80516020612b0e8339815191528054600160401b900460ff1680610a2a575080546001600160401b03808416911610155b15610a485760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610a7283611c3c565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610ac6611c04565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f80516020612b0e8339815191528054600160401b810460ff1615906001600160401b03165f81158015610b345750825b90505f826001600160401b03166001148015610b4f5750303b155b905081158015610b5d575080155b15610b7b5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610ba557845460ff60401b1916600160401b1785555b610baf8787611c44565b8315610bf657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b5f610c09336104db565b610c1482601c611d5f565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e90610c44908590600401612237565b6020604051808303815f875af1158015610c60573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c8491906126b5565b92915050565b5f610c94336104db565b610c14826015611d5f565b610ca7612143565b610cb0336104db565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610ce39063a388186360e01b90600401612642565b602060405180830381865afa158015610cfe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d22919061268f565b610d4a5760405163704b6c6d60e11b81526001600160a01b0384166004820152602401610578565b610d5583600c610588565b9050610d696001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b8152600401610d949190612237565b6020604051808303815f875af1158015610db0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dd491906126b5565b6001600160601b0316815292915050565b610ded611c04565b806001600160a01b03163b5f03610e225760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610578565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a790610e68906318788cbb60e11b90600401612642565b602060405180830381865afa925050508015610ea1575060408051601f3d908101601f19168201909252610e9e9181019061268f565b60015b610ec95760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610578565b80610ef25760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610578565b505b50565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d36002604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015610f62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f869190612869565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015610fc9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107089190612843565b610ff5612143565b610ffe336104db565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061103190636ec6c77160e11b90600401612642565b602060405180830381865afa15801561104c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611070919061268f565b611098576040516304c983f360e41b81526001600160a01b0384166004820152602401610578565b610d5583600f610588565b336110ac611493565b6001600160a01b0316816001600160a01b0316146110e75760405162d1953b60e31b81526001600160a01b0382166004820152602401610578565b816001600160a01b03163b5f0361111c576040516361798f2f60e11b81526001600160a01b0383166004820152602401610578565b610ef282611eb8565b5f61112f336104db565b610c14826020611d5f565b5f805f80516020612ace83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156111a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111ca919061268f565b15611255576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561122b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061124f919061288f565b91505090565b54600160601b90046001600160a01b0316919050565b611273611c04565b6112ef83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112b3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112d791906126b5565b60085f8560405180602001604052805f8152506108cf565b6001600160a01b0382161561130c5761130782611f18565b611383565b5f6113176002611f29565b9050611381816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611358573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061137c919061288f565b611f18565b505b611393634a531f3360e01b6108a3565b6113a363daf9067160e01b6108a3565b505050565b5f80516020612aee83398151915280545f9190600160a01b900460ff166113cf575f61124f565b638fb3603760e01b91505090565b6113e5612143565b6113ee336104db565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790611421906301a39f4760e01b90600401612642565b602060405180830381865afa15801561143c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611460919061268f565b611488576040516367237f5b60e11b81526001600160a01b0384166004820152602401610578565b610d5583600e610588565b5f80516020612aee833981519152546001600160a01b031690565b5f6114b8336104db565b610c1482601e611d5f565b6114cb612143565b6114d4336104db565b610d55836003610588565b6114e7612143565b6114f0336104db565b6040516301ffc9a760e01b81526001600160a01b038516906301ffc9a79061152390632986755f60e11b90600401612642565b602060405180830381865afa15801561153e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611562919061268f565b61158a57604051632624ae7760e01b81526001600160a01b0385166004820152602401610578565b61159584848461179a565b90506115a96001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b81526004016115d49190612237565b6020604051808303815f875af11580156115f0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061161491906126b5565b6001600160601b031681529392505050565b61162e611c04565b61163781610de5565b61163f610abe565b6001600160a01b0382166116665760405163f17ef42d60e01b815260040160405180910390fd5b505f80516020612ace83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b5f80516020612aee8339815191525f806116d46116b7611493565b87306116c660045f8a8c6128aa565b6116cf916128d1565b61202a565b91509150816117925763ffffffff81161561176f57825460ff60a01b1916600160a01b178355611702611493565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161173193929190612907565b5f604051808303815f87803b158015611748575f80fd5b505af115801561175a573d5f803e3d5ffd5b5050845460ff60a01b19168555506117929050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610578565b505050505050565b6117a2612143565b836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa1580156117dd573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526118049190810190612993565b9050836001600160a01b031681608001516001600160a01b0316146118555760808101516040516306704ad960e11b81526001600160a01b0380871660048301529091166024820152604401610578565b604081015160ff8481169116146118a157604080820151905163137f2ac560e31b81526001600160a01b038616600482015260ff80861660248301529091166044820152606401610578565b60a08101516001600160a01b03808216908416146118ed576040516335ce70c360e21b81526001600160a01b038087166004830152808516602483015282166044820152606401610578565b846001600160a01b0316816001600160a01b03160361192a57604051638e80a3f960e01b81526001600160a01b0386166004820152602401610578565b6001600160a01b03811661195c576040516343e40cb560e01b81526001600160a01b0386166004820152602401610578565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156119ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119d2919061268f565b15611a03576040516309ad872b60e41b81526001600160a01b03808716600483015282166024820152604401610578565b509392505050565b5f805f80516020612ace83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611a77573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a9b919061268f565b15611ac75780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610578565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015611b19573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b3d919061268f565b611b655760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610578565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015611bb7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bdb91906126b5565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f80516020612b0e83398151915254600160401b900460ff16611c3a57604051631afcd79f60e31b815260040160405180910390fd5b565b6101f2611c04565b5f80516020612b0e8339815191528054600160401b810460ff1615906001600160401b03165f81158015611c755750825b90505f826001600160401b03166001148015611c905750303b155b905081158015611c9e575080155b15611cbc5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611ce657845460ff60401b1916600160401b1785555b5f8087806020019051810190611cfc9190612a55565b91509150611d0b82828b61126b565b611d1b6393a3e0eb60e01b6108a3565b50508315610bf657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610bed565b60808201516001600160a01b031615611d965760408083015190516340fda83160e11b815260ff9091166004820152602401610578565b604082015160ff828116911614611dd3576040808301519051632e5fbed960e21b815260ff80841660048301529091166024820152604401610578565b60a08201516001600160a01b038116611e0a576040808401519051633312954f60e21b815260ff9091166004820152602401610578565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611e5c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e80919061268f565b156113a357604080840151905163b4139d2560e01b815260ff90911660048201526001600160a01b0382166024820152604401610578565b5f80516020612aee83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b611f20611c04565b610ef481612132565b5f611f3c6001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611f9f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fc39190612869565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015612006573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c84919061288f565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516120989190612a82565b5f60405180830381855afa9150503d805f81146120d0576040519150601f19603f3d011682016040523d82523d5f602084013e6120d5565b606091505b5091509150811561212757604081511061210757808060200190518101906120fd9190612a98565b9094509250612127565b60208151106121275780806020019051810190612124919061268f565b93505b505094509492505050565b61213a611c04565b610ef481611eb8565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b5f60208284031215612190575f80fd5b81356001600160e01b0319811681146121a7575f80fd5b9392505050565b6001600160a01b0381168114610ef4575f80fd5b80356121cd816121ae565b919050565b5f80604083850312156121e3575f80fd5b82356121ee816121ae565b915060208301356121fe816121ae565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f606083015161227f608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526122c3610100840182612209565b949350505050565b6001600160601b0381168114610ef4575f80fd5b80356121cd816122cb565b60ff81168114610ef4575f80fd5b80356121cd816122ea565b8015158114610ef4575f80fd5b80356121cd81612303565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b03811182821017156123515761235161231b565b60405290565b604051601f8201601f191681016001600160401b038111828210171561237f5761237f61231b565b604052919050565b5f6001600160401b0382111561239f5761239f61231b565b50601f01601f191660200190565b5f82601f8301126123bc575f80fd5b81356123cf6123ca82612387565b612357565b8181528460208386010111156123e3575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f805f8060c08789031215612414575f80fd5b863561241f816121ae565b9550602087013561242f816122cb565b9450604087013561243f816122ea565b9350606087013561244f81612303565b9250608087013561245f816121ae565b915060a08701356001600160401b03811115612479575f80fd5b61248589828a016123ad565b9150509295509295509295565b5f602082840312156124a2575f80fd5b81356001600160401b038111156124b7575f80fd5b6122c3848285016123ad565b5f80604083850312156124d4575f80fd5b82356124df816121ae565b915060208301356001600160401b038111156124f9575f80fd5b612505858286016123ad565b9150509250929050565b5f6020828403121561251f575f80fd5b81356001600160401b03811115612534575f80fd5b820160e08185031215612545575f80fd5b61254d61232f565b612556826122df565b8152612564602083016122df565b6020820152612575604083016122f8565b604082015261258660608301612310565b6060820152612597608083016121c2565b60808201526125a860a083016121c2565b60a082015260c08201356001600160401b038111156125c5575f80fd5b6125d1868285016123ad565b60c083015250949350505050565b5f602082840312156125ef575f80fd5b81356121a7816121ae565b5f805f6060848603121561260c575f80fd5b8335612617816121ae565b92506020840135612627816121ae565b91506040840135612637816121ae565b809150509250925092565b6001600160e01b031991909116815260200190565b5f805f60608486031215612669575f80fd5b8335612674816121ae565b92506020840135612627816122ea565b80516121cd81612303565b5f6020828403121561269f575f80fd5b81516121a781612303565b80516121cd816122cb565b5f602082840312156126c5575f80fd5b81516121a7816122cb565b5f602082840312156126e0575f80fd5b815162ffffff811681146121a7575f80fd5b600181811c9082168061270657607f821691505b60208210810361272457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156113a357805f5260205f20601f840160051c8101602085101561274f5750805b601f840160051c820191505b8181101561276e575f815560010161275b565b5050505050565b81516001600160401b0381111561278e5761278e61231b565b6127a28161279c84546126f2565b8461272a565b6020601f8211600181146127d4575f83156127bd5750848201515b5f19600385901b1c1916600184901b17845561276e565b5f84815260208120601f198516915b8281101561280357878501518255602094850194600190920191016127e3565b508482101561282057868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160401b0381168114610ef4575f80fd5b5f60208284031215612853575f80fd5b81516121a78161282f565b80516121cd816122ea565b5f60208284031215612879575f80fd5b81516121a7816122ea565b80516121cd816121ae565b5f6020828403121561289f575f80fd5b81516121a7816121ae565b5f80858511156128b8575f80fd5b838611156128c4575f80fd5b5050820193919092039150565b80356001600160e01b0319811690600484101561067f576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f82601f830112612955575f80fd5b81516129636123ca82612387565b818152846020838601011115612977575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f602082840312156129a3575f80fd5b81516001600160401b038111156129b8575f80fd5b820160e081850312156129c9575f80fd5b6129d161232f565b6129da826126aa565b81526129e8602083016126aa565b60208201526129f96040830161285e565b6040820152612a0a60608301612684565b6060820152612a1b60808301612884565b6080820152612a2c60a08301612884565b60a082015260c08201516001600160401b03811115612a49575f80fd5b6125d186828501612946565b5f8060408385031215612a66575f80fd5b8251612a71816121ae565b60208401519092506121fe816121ae565b5f82518060208501845e5f920191825250919050565b5f8060408385031215612aa9575f80fd5b8251612ab481612303565b602084015190925063ffffffff811681146121fe575f80fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220edded31d57b17df74aefaa45800882ae1f30c6cef11c502e9c55a97a75331b0b64736f6c634300081a0033",
1103
1356
  "linkReferences": {
1104
- "contracts/types/Blocknumber.sol": {
1105
- "BlocknumberLib": [
1357
+ "contracts/type/NftId.sol": {
1358
+ "NftIdLib": [
1106
1359
  {
1107
1360
  "length": 20,
1108
- "start": 3220
1109
- }
1110
- ]
1111
- },
1112
- "contracts/types/NftId.sol": {
1113
- "NftIdLib": [
1361
+ "start": 2076
1362
+ },
1114
1363
  {
1115
1364
  "length": 20,
1116
- "start": 2636
1365
+ "start": 4676
1117
1366
  },
1118
1367
  {
1119
1368
  "length": 20,
1120
- "start": 4636
1369
+ "start": 6933
1121
1370
  }
1122
1371
  ]
1123
1372
  },
1124
- "contracts/types/Timestamp.sol": {
1125
- "TimestampLib": [
1373
+ "contracts/type/RoleId.sol": {
1374
+ "RoleIdLib": [
1126
1375
  {
1127
1376
  "length": 20,
1128
- "start": 7808
1377
+ "start": 4048
1129
1378
  }
1130
1379
  ]
1131
1380
  },
1132
- "contracts/types/Version.sol": {
1381
+ "contracts/type/Version.sol": {
1133
1382
  "VersionLib": [
1134
1383
  {
1135
1384
  "length": 20,
1136
- "start": 1747
1385
+ "start": 1922
1137
1386
  },
1138
1387
  {
1139
1388
  "length": 20,
1140
- "start": 5108
1389
+ "start": 2636
1390
+ }
1391
+ ],
1392
+ "VersionPartLib": [
1393
+ {
1394
+ "length": 20,
1395
+ "start": 4096
1141
1396
  },
1142
1397
  {
1143
1398
  "length": 20,
1144
- "start": 5653
1399
+ "start": 8253
1145
1400
  }
1146
1401
  ]
1147
1402
  }
1148
1403
  },
1149
1404
  "deployedLinkReferences": {
1150
- "contracts/types/Blocknumber.sol": {
1151
- "BlocknumberLib": [
1405
+ "contracts/type/NftId.sol": {
1406
+ "NftIdLib": [
1152
1407
  {
1153
1408
  "length": 20,
1154
- "start": 2906
1155
- }
1156
- ]
1157
- },
1158
- "contracts/types/NftId.sol": {
1159
- "NftIdLib": [
1409
+ "start": 1862
1410
+ },
1160
1411
  {
1161
1412
  "length": 20,
1162
- "start": 2322
1413
+ "start": 4462
1163
1414
  },
1164
1415
  {
1165
1416
  "length": 20,
1166
- "start": 4322
1417
+ "start": 6719
1167
1418
  }
1168
1419
  ]
1169
1420
  },
1170
- "contracts/types/Timestamp.sol": {
1171
- "TimestampLib": [
1421
+ "contracts/type/RoleId.sol": {
1422
+ "RoleIdLib": [
1172
1423
  {
1173
1424
  "length": 20,
1174
- "start": 7494
1425
+ "start": 3834
1175
1426
  }
1176
1427
  ]
1177
1428
  },
1178
- "contracts/types/Version.sol": {
1429
+ "contracts/type/Version.sol": {
1179
1430
  "VersionLib": [
1180
1431
  {
1181
1432
  "length": 20,
1182
- "start": 1433
1433
+ "start": 1708
1183
1434
  },
1184
1435
  {
1185
1436
  "length": 20,
1186
- "start": 4794
1437
+ "start": 2422
1438
+ }
1439
+ ],
1440
+ "VersionPartLib": [
1441
+ {
1442
+ "length": 20,
1443
+ "start": 3882
1187
1444
  },
1188
1445
  {
1189
1446
  "length": 20,
1190
- "start": 5339
1447
+ "start": 8039
1191
1448
  }
1192
1449
  ]
1193
1450
  }