@etherisc/gif-next 0.0.2-a4b0112-775 → 0.0.2-a5cf039-146

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (370) hide show
  1. package/README.md +264 -7
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
  3. package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → components/BaseComponent.sol/BaseComponent.json} +162 -147
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +610 -0
  6. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/{IPool.sol/IPoolComponent.json → IBaseComponent.sol/IBaseComponent.json} +125 -113
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +152 -0
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  11. package/artifacts/contracts/{instance/policy/IPolicy.sol/IPolicyModule.json → components/IPoolComponent.sol/IPoolComponent.json} +124 -129
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +157 -0
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +523 -77
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +505 -97
  18. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
  19. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
  20. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
  21. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
  22. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
  23. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
  24. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +2 -2
  26. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +2 -2
  28. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +2 -2
  30. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  31. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +2 -2
  32. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  33. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  34. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  35. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  36. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  37. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  38. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
  39. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
  40. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
  41. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
  42. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
  43. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
  44. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  45. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
  46. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  47. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
  48. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  49. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
  50. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +4 -0
  51. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +114 -0
  52. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +4 -0
  53. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +1132 -0
  54. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +4 -0
  55. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +1082 -0
  56. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  57. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +244 -1372
  58. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  59. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +421 -0
  60. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  61. package/artifacts/contracts/instance/Instance.sol/Instance.json +2736 -950
  62. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
  63. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +930 -0
  64. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  65. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1283 -0
  66. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  67. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +724 -0
  68. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  69. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +432 -0
  70. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  71. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +481 -0
  72. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  73. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +113 -0
  74. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  75. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
  76. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  77. package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
  78. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +4 -0
  79. package/artifacts/contracts/instance/base/IService.sol/IService.json +421 -0
  80. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  81. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +502 -0
  82. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  83. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
  84. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +4 -0
  85. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +468 -0
  86. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  87. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +211 -0
  88. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  89. package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
  90. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  91. package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
  92. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  93. package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
  94. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  95. package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
  96. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
  97. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
  98. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
  99. package/artifacts/contracts/instance/{treasury → module}/ITreasury.sol/ITreasury.json +1 -1
  100. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
  101. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +827 -0
  102. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
  103. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +466 -0
  104. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  105. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +446 -0
  106. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  107. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +561 -0
  108. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  109. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +751 -0
  110. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  111. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +239 -2
  112. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  113. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +287 -31
  114. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  115. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +872 -0
  116. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  117. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
  118. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  119. package/artifacts/contracts/registry/Registry.sol/Registry.json +500 -43
  120. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  121. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1261 -0
  122. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  123. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +504 -0
  124. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
  125. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
  126. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  127. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  128. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  129. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
  130. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  131. package/artifacts/contracts/{components/Component.sol/Component.json → shared/IRegisterable.sol/IRegisterable.json} +98 -102
  132. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  133. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
  134. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  135. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +158 -0
  136. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  137. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +349 -0
  138. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  139. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +274 -0
  140. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  141. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
  142. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  143. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  144. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  145. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +228 -0
  146. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  147. package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
  148. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  149. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +305 -0
  150. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  151. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
  152. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  153. package/artifacts/contracts/test/TestService.sol/TestService.json +600 -0
  154. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  155. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
  156. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  157. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
  158. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  159. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +286 -0
  160. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  161. package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
  162. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  163. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  164. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  165. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
  166. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  167. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
  168. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  169. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
  170. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  171. package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
  172. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  173. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
  174. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  175. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
  176. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  177. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
  178. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
  179. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
  180. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  181. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
  182. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
  183. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
  184. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  185. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  186. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  187. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
  188. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  189. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  190. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  191. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +77 -2
  192. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
  193. package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
  194. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
  195. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
  196. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  197. package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
  198. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  199. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +30 -0
  200. package/contracts/components/BaseComponent.sol +86 -0
  201. package/contracts/components/Distribution.sol +166 -0
  202. package/contracts/components/IBaseComponent.sol +24 -0
  203. package/contracts/components/IDistributionComponent.sol +43 -0
  204. package/contracts/components/IPoolComponent.sol +62 -0
  205. package/contracts/components/IProductComponent.sol +35 -0
  206. package/contracts/components/Pool.sol +232 -25
  207. package/contracts/components/Product.sol +254 -46
  208. package/contracts/experiment/cloning/Cloner.sol +47 -0
  209. package/contracts/instance/AccessManagedSimple.sol +122 -0
  210. package/contracts/instance/AccessManagerSimple.sol +692 -0
  211. package/contracts/instance/IAccessManagerSimple.sol +391 -0
  212. package/contracts/instance/IInstance.sol +24 -21
  213. package/contracts/instance/IInstanceService.sol +17 -0
  214. package/contracts/instance/Instance.sol +422 -52
  215. package/contracts/instance/InstanceAccessManager.sol +288 -0
  216. package/contracts/instance/InstanceReader.sol +290 -0
  217. package/contracts/instance/InstanceService.sol +127 -0
  218. package/contracts/instance/InstanceServiceManager.sol +56 -0
  219. package/contracts/instance/base/ComponentServiceBase.sol +49 -0
  220. package/contracts/instance/base/IInstanceBase.sol +23 -0
  221. package/contracts/instance/base/IKeyValueStore.sol +49 -0
  222. package/contracts/instance/base/ILifecycle.sol +30 -0
  223. package/contracts/instance/base/IService.sol +15 -0
  224. package/contracts/instance/base/KeyValueStore.sol +172 -0
  225. package/contracts/instance/base/Lifecycle.sol +100 -0
  226. package/contracts/instance/base/ServiceBase.sol +44 -0
  227. package/contracts/instance/module/IAccess.sol +38 -0
  228. package/contracts/instance/module/IBundle.sol +19 -0
  229. package/contracts/instance/module/IDistribution.sol +39 -0
  230. package/contracts/instance/module/IPolicy.sol +45 -0
  231. package/contracts/instance/module/IRisk.sol +11 -0
  232. package/contracts/instance/module/ISetup.sol +43 -0
  233. package/contracts/instance/module/ITreasury.sol +23 -0
  234. package/contracts/instance/service/ComponentOwnerService.sol +317 -0
  235. package/contracts/instance/service/IComponentOwnerService.sol +20 -0
  236. package/contracts/instance/service/IDistributionService.sol +12 -0
  237. package/contracts/instance/service/IPoolService.sol +37 -0
  238. package/contracts/instance/service/IProductService.sol +107 -0
  239. package/contracts/registry/ChainNft.sol +129 -62
  240. package/contracts/registry/IRegistry.sol +35 -45
  241. package/contracts/registry/IRegistryService.sol +35 -0
  242. package/contracts/registry/ITransferInterceptor.sol +6 -0
  243. package/contracts/registry/Registry.sol +367 -126
  244. package/contracts/registry/RegistryService.sol +439 -0
  245. package/contracts/registry/RegistryServiceManager.sol +64 -0
  246. package/contracts/shared/ContractDeployerLib.sol +72 -0
  247. package/contracts/shared/ERC165.sol +21 -0
  248. package/contracts/shared/INftOwnable.sol +22 -0
  249. package/contracts/shared/IRegisterable.sol +17 -0
  250. package/contracts/shared/IVersionable.sol +96 -0
  251. package/contracts/shared/NftOwnable.sol +136 -0
  252. package/contracts/shared/ProxyManager.sol +94 -0
  253. package/contracts/shared/Registerable.sol +89 -0
  254. package/contracts/shared/TokenHandler.sol +27 -0
  255. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  256. package/contracts/shared/Versionable.sol +147 -0
  257. package/contracts/test/TestFee.sol +25 -0
  258. package/contracts/test/TestRegisterable.sol +18 -0
  259. package/contracts/test/TestRoleId.sol +14 -0
  260. package/contracts/test/TestService.sol +26 -0
  261. package/contracts/test/TestToken.sol +26 -0
  262. package/contracts/test/TestVersion.sol +44 -0
  263. package/contracts/test/TestVersionable.sol +17 -0
  264. package/contracts/test/Usdc.sol +26 -0
  265. package/contracts/types/AddressSet.sol +58 -0
  266. package/contracts/types/DistributorType.sol +55 -0
  267. package/contracts/types/Fee.sol +44 -20
  268. package/contracts/types/Key32.sol +50 -0
  269. package/contracts/types/NftId.sol +22 -1
  270. package/contracts/types/NftIdSet.sol +60 -0
  271. package/contracts/types/NumberId.sol +52 -0
  272. package/contracts/types/ObjectType.sol +60 -15
  273. package/contracts/types/Referral.sol +85 -0
  274. package/contracts/types/RiskId.sol +43 -0
  275. package/contracts/types/RoleId.sol +82 -0
  276. package/contracts/types/StateId.sol +14 -4
  277. package/contracts/types/Timestamp.sol +29 -4
  278. package/contracts/types/UFixed.sol +150 -31
  279. package/contracts/types/Version.sol +104 -0
  280. package/package.json +14 -5
  281. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  282. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  283. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  284. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  285. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  286. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
  287. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  288. package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
  289. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  290. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  291. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  292. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  293. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  294. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  295. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
  296. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  297. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  298. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
  299. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  300. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  301. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
  302. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  303. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
  304. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  305. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
  306. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  307. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
  308. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  309. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
  310. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
  311. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
  312. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
  313. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  314. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  315. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  316. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
  317. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  318. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  319. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
  320. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  321. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
  322. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  323. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  324. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  325. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -127
  326. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  327. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  328. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  329. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
  330. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  331. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  332. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
  333. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  334. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
  335. package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  336. package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
  337. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  338. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
  339. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  340. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
  341. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  342. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
  343. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  344. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
  345. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  346. package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
  347. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  348. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  349. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  350. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -453
  351. package/contracts/components/Component.sol +0 -77
  352. package/contracts/components/IPool.sol +0 -15
  353. package/contracts/components/IProduct.sol +0 -16
  354. package/contracts/experiment/statemachine/README.md +0 -112
  355. package/contracts/instance/access/Access.sol +0 -165
  356. package/contracts/instance/access/IAccess.sol +0 -63
  357. package/contracts/instance/component/ComponentModule.sol +0 -274
  358. package/contracts/instance/component/IComponent.sol +0 -74
  359. package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
  360. package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
  361. package/contracts/instance/policy/IPolicy.sol +0 -50
  362. package/contracts/instance/policy/PolicyModule.sol +0 -114
  363. package/contracts/instance/pool/IPoolModule.sol +0 -23
  364. package/contracts/instance/pool/PoolModule.sol +0 -81
  365. package/contracts/instance/product/IProductService.sol +0 -36
  366. package/contracts/instance/product/ProductService.sol +0 -136
  367. package/contracts/instance/treasury/ITreasury.sol +0 -91
  368. package/contracts/instance/treasury/TokenHandler.sol +0 -24
  369. package/contracts/instance/treasury/TreasuryModule.sol +0 -168
  370. package/contracts/registry/IChainNft.sol +0 -21
@@ -7,18 +7,18 @@
7
7
  "inputs": [
8
8
  {
9
9
  "internalType": "address",
10
- "name": "registry",
10
+ "name": "accessManagerAddress",
11
11
  "type": "address"
12
12
  },
13
13
  {
14
14
  "internalType": "address",
15
- "name": "componentOwnerService",
15
+ "name": "registryAddress",
16
16
  "type": "address"
17
17
  },
18
18
  {
19
- "internalType": "address",
20
- "name": "productService",
21
- "type": "address"
19
+ "internalType": "NftId",
20
+ "name": "registryNftId",
21
+ "type": "uint96"
22
22
  }
23
23
  ],
24
24
  "stateMutability": "nonpayable",
@@ -27,551 +27,553 @@
27
27
  {
28
28
  "inputs": [
29
29
  {
30
- "internalType": "NftId",
31
- "name": "nftId",
32
- "type": "uint96"
33
- },
30
+ "internalType": "address",
31
+ "name": "authority",
32
+ "type": "address"
33
+ }
34
+ ],
35
+ "name": "AccessManagedInvalidAuthority",
36
+ "type": "error"
37
+ },
38
+ {
39
+ "inputs": [
34
40
  {
35
- "internalType": "ObjectType",
36
- "name": "objectType",
37
- "type": "uint8"
41
+ "internalType": "address",
42
+ "name": "caller",
43
+ "type": "address"
38
44
  },
39
45
  {
40
- "internalType": "StateId",
41
- "name": "fromStateId",
42
- "type": "uint8"
43
- },
46
+ "internalType": "uint32",
47
+ "name": "delay",
48
+ "type": "uint32"
49
+ }
50
+ ],
51
+ "name": "AccessManagedRequiredDelay",
52
+ "type": "error"
53
+ },
54
+ {
55
+ "inputs": [
44
56
  {
45
- "internalType": "StateId",
46
- "name": "toStateId",
47
- "type": "uint8"
57
+ "internalType": "address",
58
+ "name": "caller",
59
+ "type": "address"
48
60
  }
49
61
  ],
50
- "name": "ErrorInvalidStateTransition",
62
+ "name": "AccessManagedUnauthorized",
51
63
  "type": "error"
52
64
  },
53
65
  {
54
66
  "inputs": [
67
+ {
68
+ "internalType": "address",
69
+ "name": "registry",
70
+ "type": "address"
71
+ },
55
72
  {
56
73
  "internalType": "NftId",
57
74
  "name": "nftId",
58
75
  "type": "uint96"
59
- },
60
- {
61
- "internalType": "ObjectType",
62
- "name": "objectType",
63
- "type": "uint8"
64
76
  }
65
77
  ],
66
- "name": "ErrorNoLifecycle",
78
+ "name": "ErrorAlreadyLinked",
67
79
  "type": "error"
68
80
  },
69
81
  {
70
- "anonymous": false,
71
82
  "inputs": [
72
83
  {
73
- "indexed": false,
74
- "internalType": "bytes32",
75
- "name": "role",
76
- "type": "bytes32"
77
- },
78
- {
79
- "indexed": false,
80
84
  "internalType": "address",
81
- "name": "member",
85
+ "name": "contractAddress",
82
86
  "type": "address"
83
- },
87
+ }
88
+ ],
89
+ "name": "ErrorContractNotRegistered",
90
+ "type": "error"
91
+ },
92
+ {
93
+ "inputs": [
84
94
  {
85
- "indexed": false,
86
- "internalType": "bool",
87
- "name": "isMember",
88
- "type": "bool"
95
+ "internalType": "RoleId",
96
+ "name": "roleId",
97
+ "type": "uint64"
89
98
  }
90
99
  ],
91
- "name": "LogAccessRoleGranted",
92
- "type": "event"
100
+ "name": "ErrorGrantNonexstentRole",
101
+ "type": "error"
93
102
  },
94
103
  {
95
- "anonymous": false,
96
104
  "inputs": [
97
105
  {
98
- "indexed": false,
99
- "internalType": "NftId",
100
- "name": "nftId",
101
- "type": "uint96"
106
+ "internalType": "ObjectType",
107
+ "name": "objectType",
108
+ "type": "uint8"
102
109
  },
103
110
  {
104
- "indexed": false,
105
111
  "internalType": "StateId",
106
112
  "name": "fromStateId",
107
113
  "type": "uint8"
108
114
  },
109
115
  {
110
- "indexed": false,
111
116
  "internalType": "StateId",
112
117
  "name": "toStateId",
113
118
  "type": "uint8"
114
119
  }
115
120
  ],
116
- "name": "LogBundleStateChanged",
117
- "type": "event"
121
+ "name": "ErrorInvalidStateTransition",
122
+ "type": "error"
118
123
  },
119
124
  {
120
- "anonymous": false,
121
125
  "inputs": [
122
126
  {
123
- "indexed": false,
124
127
  "internalType": "NftId",
125
128
  "name": "nftId",
126
129
  "type": "uint96"
127
130
  },
128
131
  {
129
- "indexed": false,
130
132
  "internalType": "ObjectType",
131
133
  "name": "objectType",
132
134
  "type": "uint8"
133
- },
134
- {
135
- "indexed": false,
136
- "internalType": "StateId",
137
- "name": "fromStateId",
138
- "type": "uint8"
139
- },
140
- {
141
- "indexed": false,
142
- "internalType": "StateId",
143
- "name": "toStateId",
144
- "type": "uint8"
145
135
  }
146
136
  ],
147
- "name": "LogComponentStateChanged",
148
- "type": "event"
137
+ "name": "ErrorNoLifecycle",
138
+ "type": "error"
149
139
  },
150
140
  {
151
- "anonymous": false,
152
141
  "inputs": [
153
142
  {
154
- "indexed": false,
155
- "internalType": "uint256",
156
- "name": "idx",
157
- "type": "uint256"
158
- },
159
- {
160
- "indexed": false,
161
143
  "internalType": "address",
162
- "name": "module",
144
+ "name": "account",
163
145
  "type": "address"
164
- },
165
- {
166
- "indexed": false,
167
- "internalType": "string",
168
- "name": "comment",
169
- "type": "string"
170
146
  }
171
147
  ],
172
- "name": "LogDebug",
173
- "type": "event"
148
+ "name": "ErrorNotOwner",
149
+ "type": "error"
174
150
  },
175
151
  {
176
- "anonymous": false,
177
152
  "inputs": [
178
153
  {
179
- "indexed": false,
180
- "internalType": "NftId",
181
- "name": "nftId",
182
- "type": "uint96"
183
- },
184
- {
185
- "indexed": false,
186
- "internalType": "StateId",
187
- "name": "fromStateId",
188
- "type": "uint8"
189
- },
190
- {
191
- "indexed": false,
192
- "internalType": "StateId",
193
- "name": "toStateId",
194
- "type": "uint8"
154
+ "internalType": "address",
155
+ "name": "registryAddress",
156
+ "type": "address"
195
157
  }
196
158
  ],
197
- "name": "LogPolicyStateChanged",
198
- "type": "event"
159
+ "name": "ErrorNotRegistry",
160
+ "type": "error"
199
161
  },
200
162
  {
201
- "inputs": [],
202
- "name": "INITIAL_CAPITAL",
203
- "outputs": [
163
+ "inputs": [
204
164
  {
205
- "internalType": "uint256",
206
- "name": "",
207
- "type": "uint256"
165
+ "internalType": "address",
166
+ "name": "registryAddress",
167
+ "type": "address"
208
168
  }
209
169
  ],
210
- "stateMutability": "view",
211
- "type": "function"
170
+ "name": "ErrorRegisterableNotRegistry",
171
+ "type": "error"
212
172
  },
213
173
  {
214
174
  "inputs": [],
215
- "name": "INITIAL_LOCKED_CAPITAL",
216
- "outputs": [
175
+ "name": "ErrorRegistryAddressZero",
176
+ "type": "error"
177
+ },
178
+ {
179
+ "inputs": [
217
180
  {
218
- "internalType": "uint256",
219
- "name": "",
220
- "type": "uint256"
181
+ "internalType": "address",
182
+ "name": "registry",
183
+ "type": "address"
221
184
  }
222
185
  ],
223
- "stateMutability": "view",
224
- "type": "function"
186
+ "name": "ErrorRegistryAlreadyInitialized",
187
+ "type": "error"
225
188
  },
226
189
  {
227
190
  "inputs": [],
228
- "name": "ORACLE_OWNER",
229
- "outputs": [
191
+ "name": "ErrorRegistryNotInitialized",
192
+ "type": "error"
193
+ },
194
+ {
195
+ "inputs": [
230
196
  {
231
- "internalType": "string",
232
- "name": "",
233
- "type": "string"
197
+ "internalType": "RoleId",
198
+ "name": "roleId",
199
+ "type": "uint64"
234
200
  }
235
201
  ],
236
- "stateMutability": "view",
237
- "type": "function"
202
+ "name": "ErrorRenounceNonexstentRole",
203
+ "type": "error"
238
204
  },
239
205
  {
240
- "inputs": [],
241
- "name": "ORACLE_OWNER_ROLE",
242
- "outputs": [
206
+ "inputs": [
243
207
  {
244
- "internalType": "bytes32",
245
- "name": "role",
246
- "type": "bytes32"
208
+ "internalType": "RoleId",
209
+ "name": "roleId",
210
+ "type": "uint64"
247
211
  }
248
212
  ],
249
- "stateMutability": "view",
250
- "type": "function"
213
+ "name": "ErrorRevokeNonexstentRole",
214
+ "type": "error"
251
215
  },
252
216
  {
253
- "inputs": [],
254
- "name": "POOL_OWNER",
255
- "outputs": [
217
+ "inputs": [
256
218
  {
257
- "internalType": "string",
258
- "name": "",
259
- "type": "string"
219
+ "internalType": "RoleId",
220
+ "name": "roleId",
221
+ "type": "uint64"
260
222
  }
261
223
  ],
262
- "stateMutability": "view",
263
- "type": "function"
224
+ "name": "ErrorRoleIdInvalid",
225
+ "type": "error"
264
226
  },
265
227
  {
266
- "inputs": [],
267
- "name": "POOL_OWNER_ROLE",
268
- "outputs": [
228
+ "inputs": [
269
229
  {
270
- "internalType": "bytes32",
271
- "name": "role",
272
- "type": "bytes32"
230
+ "internalType": "RoleId",
231
+ "name": "roleId",
232
+ "type": "uint64"
273
233
  }
274
234
  ],
275
- "stateMutability": "view",
276
- "type": "function"
235
+ "name": "ErrorRoleIdNotActive",
236
+ "type": "error"
277
237
  },
278
238
  {
279
- "inputs": [],
280
- "name": "PRODUCT_OWNER",
281
- "outputs": [
239
+ "inputs": [
282
240
  {
283
- "internalType": "string",
284
- "name": "",
285
- "type": "string"
241
+ "internalType": "RoleId",
242
+ "name": "roleId",
243
+ "type": "uint64"
286
244
  }
287
245
  ],
288
- "stateMutability": "view",
289
- "type": "function"
246
+ "name": "ErrorRoleIdTooBig",
247
+ "type": "error"
290
248
  },
291
249
  {
292
- "inputs": [],
293
- "name": "PRODUCT_OWNER_ROLE",
294
- "outputs": [
250
+ "inputs": [
295
251
  {
296
- "internalType": "bytes32",
297
- "name": "role",
298
- "type": "bytes32"
252
+ "internalType": "RoleId",
253
+ "name": "roleId",
254
+ "type": "uint64"
299
255
  }
300
256
  ],
301
- "stateMutability": "view",
302
- "type": "function"
257
+ "name": "ErrorRoleIdTooSmall",
258
+ "type": "error"
303
259
  },
304
260
  {
305
261
  "inputs": [
306
262
  {
307
- "internalType": "NftId",
308
- "name": "nftId",
309
- "type": "uint96"
263
+ "internalType": "RoleId",
264
+ "name": "roleId",
265
+ "type": "uint64"
310
266
  }
311
267
  ],
312
- "name": "activate",
313
- "outputs": [],
314
- "stateMutability": "nonpayable",
315
- "type": "function"
268
+ "name": "ErrorRoleNameEmpty",
269
+ "type": "error"
316
270
  },
317
271
  {
318
272
  "inputs": [
319
273
  {
320
- "internalType": "uint256",
321
- "name": "amount",
322
- "type": "uint256"
274
+ "internalType": "RoleId",
275
+ "name": "roleId",
276
+ "type": "uint64"
323
277
  },
324
278
  {
325
- "components": [
326
- {
327
- "internalType": "UFixed",
328
- "name": "fractionalFee",
329
- "type": "uint256"
330
- },
331
- {
332
- "internalType": "uint256",
333
- "name": "fixedFee",
334
- "type": "uint256"
335
- }
336
- ],
337
- "internalType": "struct Fee",
338
- "name": "fee",
339
- "type": "tuple"
279
+ "internalType": "ShortString",
280
+ "name": "name",
281
+ "type": "bytes32"
340
282
  }
341
283
  ],
342
- "name": "calculateFeeAmount",
343
- "outputs": [
344
- {
345
- "internalType": "uint256",
346
- "name": "feeAmount",
347
- "type": "uint256"
348
- },
284
+ "name": "ErrorRoleNameNotUnique",
285
+ "type": "error"
286
+ },
287
+ {
288
+ "inputs": [
349
289
  {
350
- "internalType": "uint256",
351
- "name": "netAmount",
352
- "type": "uint256"
290
+ "internalType": "address",
291
+ "name": "target",
292
+ "type": "address"
353
293
  }
354
294
  ],
355
- "stateMutability": "pure",
356
- "type": "function"
295
+ "name": "ErrorTargetDoesNotExist",
296
+ "type": "error"
357
297
  },
358
298
  {
359
- "inputs": [
299
+ "inputs": [],
300
+ "name": "InvalidInitialization",
301
+ "type": "error"
302
+ },
303
+ {
304
+ "inputs": [],
305
+ "name": "InvalidShortString",
306
+ "type": "error"
307
+ },
308
+ {
309
+ "inputs": [],
310
+ "name": "NotInitializing",
311
+ "type": "error"
312
+ },
313
+ {
314
+ "inputs": [
360
315
  {
361
- "internalType": "NftId",
362
- "name": "nftId",
363
- "type": "uint96"
364
- },
316
+ "internalType": "string",
317
+ "name": "str",
318
+ "type": "string"
319
+ }
320
+ ],
321
+ "name": "StringTooLong",
322
+ "type": "error"
323
+ },
324
+ {
325
+ "anonymous": false,
326
+ "inputs": [
327
+ {
328
+ "indexed": false,
329
+ "internalType": "address",
330
+ "name": "authority",
331
+ "type": "address"
332
+ }
333
+ ],
334
+ "name": "AuthorityUpdated",
335
+ "type": "event"
336
+ },
337
+ {
338
+ "anonymous": false,
339
+ "inputs": [
340
+ {
341
+ "indexed": false,
342
+ "internalType": "uint64",
343
+ "name": "version",
344
+ "type": "uint64"
345
+ }
346
+ ],
347
+ "name": "Initialized",
348
+ "type": "event"
349
+ },
350
+ {
351
+ "anonymous": false,
352
+ "inputs": [
365
353
  {
354
+ "indexed": false,
366
355
  "internalType": "ObjectType",
367
356
  "name": "objectType",
368
357
  "type": "uint8"
369
358
  },
370
359
  {
371
- "internalType": "StateId",
372
- "name": "fromId",
373
- "type": "uint8"
360
+ "indexed": false,
361
+ "internalType": "KeyId",
362
+ "name": "keyId",
363
+ "type": "bytes31"
374
364
  },
375
365
  {
366
+ "indexed": false,
376
367
  "internalType": "StateId",
377
- "name": "toId",
368
+ "name": "state",
378
369
  "type": "uint8"
379
- }
380
- ],
381
- "name": "checkAndLogTransition",
382
- "outputs": [
370
+ },
383
371
  {
384
- "internalType": "StateId",
385
- "name": "",
386
- "type": "uint8"
372
+ "indexed": false,
373
+ "internalType": "address",
374
+ "name": "createdBy",
375
+ "type": "address"
376
+ },
377
+ {
378
+ "indexed": false,
379
+ "internalType": "address",
380
+ "name": "txOrigin",
381
+ "type": "address"
387
382
  }
388
383
  ],
389
- "stateMutability": "nonpayable",
390
- "type": "function"
384
+ "name": "LogInfoCreated",
385
+ "type": "event"
391
386
  },
392
387
  {
393
- "inputs": [],
394
- "name": "components",
395
- "outputs": [
388
+ "anonymous": false,
389
+ "inputs": [
396
390
  {
397
- "internalType": "uint256",
398
- "name": "numberOfCompnents",
399
- "type": "uint256"
391
+ "indexed": false,
392
+ "internalType": "ObjectType",
393
+ "name": "objectType",
394
+ "type": "uint8"
395
+ },
396
+ {
397
+ "indexed": false,
398
+ "internalType": "KeyId",
399
+ "name": "keyId",
400
+ "type": "bytes31"
401
+ },
402
+ {
403
+ "indexed": false,
404
+ "internalType": "StateId",
405
+ "name": "state",
406
+ "type": "uint8"
407
+ },
408
+ {
409
+ "indexed": false,
410
+ "internalType": "address",
411
+ "name": "updatedBy",
412
+ "type": "address"
413
+ },
414
+ {
415
+ "indexed": false,
416
+ "internalType": "address",
417
+ "name": "txOrigin",
418
+ "type": "address"
419
+ },
420
+ {
421
+ "indexed": false,
422
+ "internalType": "Blocknumber",
423
+ "name": "lastUpdatedIn",
424
+ "type": "uint32"
400
425
  }
401
426
  ],
402
- "stateMutability": "view",
403
- "type": "function"
427
+ "name": "LogInfoUpdated",
428
+ "type": "event"
404
429
  },
405
430
  {
431
+ "anonymous": false,
406
432
  "inputs": [
407
433
  {
408
- "components": [
409
- {
410
- "internalType": "NftId",
411
- "name": "nftId",
412
- "type": "uint96"
413
- },
414
- {
415
- "internalType": "NftId",
416
- "name": "parentNftId",
417
- "type": "uint96"
418
- },
419
- {
420
- "internalType": "ObjectType",
421
- "name": "objectType",
422
- "type": "uint8"
423
- },
424
- {
425
- "internalType": "address",
426
- "name": "objectAddress",
427
- "type": "address"
428
- },
429
- {
430
- "internalType": "address",
431
- "name": "initialOwner",
432
- "type": "address"
433
- }
434
- ],
435
- "internalType": "struct IRegistry.RegistryInfo",
436
- "name": "productInfo",
437
- "type": "tuple"
434
+ "indexed": false,
435
+ "internalType": "ObjectType",
436
+ "name": "objectType",
437
+ "type": "uint8"
438
438
  },
439
439
  {
440
- "internalType": "address",
441
- "name": "applicationOwner",
442
- "type": "address"
440
+ "indexed": false,
441
+ "internalType": "KeyId",
442
+ "name": "keyId",
443
+ "type": "bytes31"
443
444
  },
444
445
  {
445
- "internalType": "uint256",
446
- "name": "sumInsuredAmount",
447
- "type": "uint256"
446
+ "indexed": false,
447
+ "internalType": "StateId",
448
+ "name": "stateOld",
449
+ "type": "uint8"
448
450
  },
449
451
  {
450
- "internalType": "uint256",
451
- "name": "premiumAmount",
452
- "type": "uint256"
452
+ "indexed": false,
453
+ "internalType": "StateId",
454
+ "name": "stateNew",
455
+ "type": "uint8"
453
456
  },
454
457
  {
455
- "internalType": "uint256",
456
- "name": "lifetime",
457
- "type": "uint256"
458
+ "indexed": false,
459
+ "internalType": "address",
460
+ "name": "updatedBy",
461
+ "type": "address"
458
462
  },
459
463
  {
460
- "internalType": "NftId",
461
- "name": "bundleNftId",
462
- "type": "uint96"
464
+ "indexed": false,
465
+ "internalType": "address",
466
+ "name": "txOrigin",
467
+ "type": "address"
468
+ },
469
+ {
470
+ "indexed": false,
471
+ "internalType": "Blocknumber",
472
+ "name": "lastUpdatedIn",
473
+ "type": "uint32"
463
474
  }
464
475
  ],
465
- "name": "createApplication",
476
+ "name": "LogStateUpdated",
477
+ "type": "event"
478
+ },
479
+ {
480
+ "inputs": [],
481
+ "name": "ADMIN_ROLE",
466
482
  "outputs": [
467
483
  {
468
- "internalType": "NftId",
469
- "name": "nftId",
470
- "type": "uint96"
484
+ "internalType": "uint64",
485
+ "name": "",
486
+ "type": "uint64"
471
487
  }
472
488
  ],
473
- "stateMutability": "nonpayable",
489
+ "stateMutability": "view",
474
490
  "type": "function"
475
491
  },
476
492
  {
477
- "inputs": [
478
- {
479
- "internalType": "string",
480
- "name": "roleName",
481
- "type": "string"
482
- }
483
- ],
484
- "name": "createRole",
493
+ "inputs": [],
494
+ "name": "CUSTOM_ROLE_ID_MIN",
485
495
  "outputs": [
486
496
  {
487
- "internalType": "bytes32",
488
- "name": "role",
489
- "type": "bytes32"
497
+ "internalType": "uint64",
498
+ "name": "",
499
+ "type": "uint64"
490
500
  }
491
501
  ],
492
- "stateMutability": "nonpayable",
502
+ "stateMutability": "view",
493
503
  "type": "function"
494
504
  },
495
505
  {
496
- "inputs": [
506
+ "inputs": [],
507
+ "name": "EXECUTION_DELAY",
508
+ "outputs": [
497
509
  {
498
- "internalType": "bytes32",
499
- "name": "role",
500
- "type": "bytes32"
510
+ "internalType": "uint32",
511
+ "name": "",
512
+ "type": "uint32"
501
513
  }
502
514
  ],
503
- "name": "disableRole",
504
- "outputs": [],
505
- "stateMutability": "nonpayable",
515
+ "stateMutability": "view",
506
516
  "type": "function"
507
517
  },
508
518
  {
509
- "inputs": [
519
+ "inputs": [],
520
+ "name": "PUBLIC_ROLE",
521
+ "outputs": [
510
522
  {
511
- "internalType": "bytes32",
512
- "name": "role",
513
- "type": "bytes32"
523
+ "internalType": "uint64",
524
+ "name": "",
525
+ "type": "uint64"
514
526
  }
515
527
  ],
516
- "name": "enableRole",
517
- "outputs": [],
518
- "stateMutability": "nonpayable",
528
+ "stateMutability": "view",
519
529
  "type": "function"
520
530
  },
521
531
  {
522
- "inputs": [
523
- {
524
- "internalType": "NftId",
525
- "name": "nftId",
526
- "type": "uint96"
527
- }
528
- ],
529
- "name": "getBundleNftForPolicy",
532
+ "inputs": [],
533
+ "name": "REGISTERABLE_LOCATION_V1",
530
534
  "outputs": [
531
535
  {
532
- "internalType": "NftId",
533
- "name": "bundleNft",
534
- "type": "uint96"
536
+ "internalType": "bytes32",
537
+ "name": "",
538
+ "type": "bytes32"
535
539
  }
536
540
  ],
537
541
  "stateMutability": "view",
538
542
  "type": "function"
539
543
  },
540
544
  {
541
- "inputs": [
545
+ "inputs": [],
546
+ "name": "authority",
547
+ "outputs": [
542
548
  {
543
549
  "internalType": "address",
544
- "name": "componentAddress",
550
+ "name": "",
545
551
  "type": "address"
546
552
  }
547
553
  ],
548
- "name": "getComponentId",
549
- "outputs": [
550
- {
551
- "internalType": "NftId",
552
- "name": "componentNftId",
553
- "type": "uint96"
554
- }
555
- ],
556
554
  "stateMutability": "view",
557
555
  "type": "function"
558
556
  },
559
557
  {
560
558
  "inputs": [
561
559
  {
562
- "internalType": "uint256",
563
- "name": "idx",
564
- "type": "uint256"
565
- }
566
- ],
567
- "name": "getComponentId",
568
- "outputs": [
560
+ "internalType": "ObjectType",
561
+ "name": "objectType",
562
+ "type": "uint8"
563
+ },
569
564
  {
570
- "internalType": "NftId",
571
- "name": "componentNftId",
572
- "type": "uint96"
565
+ "internalType": "StateId",
566
+ "name": "fromId",
567
+ "type": "uint8"
568
+ },
569
+ {
570
+ "internalType": "StateId",
571
+ "name": "toId",
572
+ "type": "uint8"
573
573
  }
574
574
  ],
575
+ "name": "checkTransition",
576
+ "outputs": [],
575
577
  "stateMutability": "view",
576
578
  "type": "function"
577
579
  },
@@ -579,267 +581,154 @@
579
581
  "inputs": [
580
582
  {
581
583
  "internalType": "NftId",
582
- "name": "nftId",
584
+ "name": "bundleNftId",
583
585
  "type": "uint96"
584
- }
585
- ],
586
- "name": "getComponentInfo",
587
- "outputs": [
588
- {
589
- "components": [
590
- {
591
- "internalType": "NftId",
592
- "name": "nftId",
593
- "type": "uint96"
594
- },
595
- {
596
- "internalType": "StateId",
597
- "name": "state",
598
- "type": "uint8"
599
- },
600
- {
601
- "internalType": "contract IERC20Metadata",
602
- "name": "token",
603
- "type": "address"
604
- }
605
- ],
606
- "internalType": "struct IComponent.ComponentInfo",
607
- "name": "",
608
- "type": "tuple"
609
- }
610
- ],
611
- "stateMutability": "view",
612
- "type": "function"
613
- },
614
- {
615
- "inputs": [],
616
- "name": "getComponentOwnerService",
617
- "outputs": [
618
- {
619
- "internalType": "contract IComponentOwnerService",
620
- "name": "",
621
- "type": "address"
622
- }
623
- ],
624
- "stateMutability": "view",
625
- "type": "function"
626
- },
627
- {
628
- "inputs": [],
629
- "name": "getData",
630
- "outputs": [
631
- {
632
- "internalType": "bytes",
633
- "name": "data",
634
- "type": "bytes"
635
- }
636
- ],
637
- "stateMutability": "pure",
638
- "type": "function"
639
- },
640
- {
641
- "inputs": [],
642
- "name": "getInitialOwner",
643
- "outputs": [
644
- {
645
- "internalType": "address",
646
- "name": "deployer",
647
- "type": "address"
648
- }
649
- ],
650
- "stateMutability": "view",
651
- "type": "function"
652
- },
653
- {
654
- "inputs": [
655
- {
656
- "internalType": "ObjectType",
657
- "name": "objectType",
658
- "type": "uint8"
659
- }
660
- ],
661
- "name": "getInitialState",
662
- "outputs": [
663
- {
664
- "internalType": "StateId",
665
- "name": "",
666
- "type": "uint8"
667
- }
668
- ],
669
- "stateMutability": "view",
670
- "type": "function"
671
- },
672
- {
673
- "inputs": [],
674
- "name": "getNftId",
675
- "outputs": [
676
- {
677
- "internalType": "NftId",
678
- "name": "nftId",
679
- "type": "uint96"
680
- }
681
- ],
682
- "stateMutability": "view",
683
- "type": "function"
684
- },
685
- {
686
- "inputs": [],
687
- "name": "getOwner",
688
- "outputs": [
689
- {
690
- "internalType": "address",
691
- "name": "owner",
692
- "type": "address"
693
- }
694
- ],
695
- "stateMutability": "view",
696
- "type": "function"
697
- },
698
- {
699
- "inputs": [],
700
- "name": "getParentNftId",
701
- "outputs": [
702
- {
703
- "internalType": "NftId",
704
- "name": "",
705
- "type": "uint96"
706
- }
707
- ],
708
- "stateMutability": "pure",
709
- "type": "function"
710
- },
711
- {
712
- "inputs": [
713
- {
714
- "internalType": "NftId",
715
- "name": "nftId",
716
- "type": "uint96"
717
- }
718
- ],
719
- "name": "getPolicyInfo",
720
- "outputs": [
586
+ },
721
587
  {
722
588
  "components": [
723
589
  {
724
590
  "internalType": "NftId",
725
- "name": "nftId",
591
+ "name": "poolNftId",
726
592
  "type": "uint96"
727
593
  },
728
594
  {
729
- "internalType": "StateId",
730
- "name": "state",
731
- "type": "uint8"
732
- },
733
- {
734
- "internalType": "uint256",
735
- "name": "sumInsuredAmount",
736
- "type": "uint256"
737
- },
738
- {
739
- "internalType": "uint256",
740
- "name": "premiumAmount",
741
- "type": "uint256"
742
- },
743
- {
744
- "internalType": "uint256",
745
- "name": "premiumPaidAmount",
746
- "type": "uint256"
595
+ "components": [
596
+ {
597
+ "internalType": "UFixed",
598
+ "name": "fractionalFee",
599
+ "type": "uint256"
600
+ },
601
+ {
602
+ "internalType": "uint256",
603
+ "name": "fixedFee",
604
+ "type": "uint256"
605
+ }
606
+ ],
607
+ "internalType": "struct Fee",
608
+ "name": "fee",
609
+ "type": "tuple"
747
610
  },
748
611
  {
749
- "internalType": "uint256",
750
- "name": "lifetime",
751
- "type": "uint256"
612
+ "internalType": "bytes",
613
+ "name": "filter",
614
+ "type": "bytes"
752
615
  },
753
616
  {
754
617
  "internalType": "uint256",
755
- "name": "createdAt",
618
+ "name": "capitalAmount",
756
619
  "type": "uint256"
757
620
  },
758
621
  {
759
622
  "internalType": "uint256",
760
- "name": "updatedAt",
623
+ "name": "lockedAmount",
761
624
  "type": "uint256"
762
625
  },
763
626
  {
764
627
  "internalType": "uint256",
765
- "name": "activatedAt",
628
+ "name": "balanceAmount",
766
629
  "type": "uint256"
767
630
  },
768
631
  {
769
- "internalType": "uint256",
632
+ "internalType": "Timestamp",
770
633
  "name": "expiredAt",
771
- "type": "uint256"
634
+ "type": "uint40"
772
635
  },
773
636
  {
774
- "internalType": "uint256",
637
+ "internalType": "Timestamp",
775
638
  "name": "closedAt",
776
- "type": "uint256"
639
+ "type": "uint40"
777
640
  }
778
641
  ],
779
- "internalType": "struct IPolicy.PolicyInfo",
780
- "name": "info",
642
+ "internalType": "struct IBundle.BundleInfo",
643
+ "name": "bundle",
781
644
  "type": "tuple"
782
645
  }
783
646
  ],
784
- "stateMutability": "view",
647
+ "name": "createBundle",
648
+ "outputs": [],
649
+ "stateMutability": "nonpayable",
785
650
  "type": "function"
786
651
  },
787
652
  {
788
653
  "inputs": [
789
654
  {
790
655
  "internalType": "NftId",
791
- "name": "nftId",
656
+ "name": "policyNftId",
792
657
  "type": "uint96"
793
- }
794
- ],
795
- "name": "getPoolInfo",
796
- "outputs": [
658
+ },
659
+ {
660
+ "internalType": "NumberId",
661
+ "name": "claimId",
662
+ "type": "uint32"
663
+ },
797
664
  {
798
665
  "components": [
799
- {
800
- "internalType": "NftId",
801
- "name": "nftId",
802
- "type": "uint96"
803
- },
804
666
  {
805
667
  "internalType": "uint256",
806
- "name": "capital",
668
+ "name": "claimAmount",
807
669
  "type": "uint256"
808
670
  },
809
671
  {
810
672
  "internalType": "uint256",
811
- "name": "lockedCapital",
673
+ "name": "paidAmount",
812
674
  "type": "uint256"
675
+ },
676
+ {
677
+ "internalType": "bytes",
678
+ "name": "data",
679
+ "type": "bytes"
680
+ },
681
+ {
682
+ "internalType": "Timestamp",
683
+ "name": "closedAt",
684
+ "type": "uint40"
813
685
  }
814
686
  ],
815
- "internalType": "struct IPool.PoolInfo",
816
- "name": "info",
687
+ "internalType": "struct IPolicy.ClaimInfo",
688
+ "name": "claim",
817
689
  "type": "tuple"
818
690
  }
819
691
  ],
820
- "stateMutability": "view",
692
+ "name": "createClaim",
693
+ "outputs": [],
694
+ "stateMutability": "nonpayable",
821
695
  "type": "function"
822
696
  },
823
697
  {
824
698
  "inputs": [
825
699
  {
826
- "internalType": "NftId",
827
- "name": "poolNftId",
828
- "type": "uint96"
700
+ "internalType": "RoleId",
701
+ "name": "roleId",
702
+ "type": "uint64"
703
+ },
704
+ {
705
+ "internalType": "string",
706
+ "name": "name",
707
+ "type": "string"
829
708
  }
830
709
  ],
831
- "name": "getPoolSetup",
832
- "outputs": [
710
+ "name": "createCustomRole",
711
+ "outputs": [],
712
+ "stateMutability": "nonpayable",
713
+ "type": "function"
714
+ },
715
+ {
716
+ "inputs": [
717
+ {
718
+ "internalType": "NftId",
719
+ "name": "distributionNftId",
720
+ "type": "uint96"
721
+ },
833
722
  {
834
723
  "components": [
835
724
  {
836
725
  "internalType": "NftId",
837
- "name": "poolNftId",
726
+ "name": "productNftId",
838
727
  "type": "uint96"
839
728
  },
840
729
  {
841
- "internalType": "address",
842
- "name": "wallet",
730
+ "internalType": "contract TokenHandler",
731
+ "name": "tokenHandler",
843
732
  "type": "address"
844
733
  },
845
734
  {
@@ -856,58 +745,172 @@
856
745
  }
857
746
  ],
858
747
  "internalType": "struct Fee",
859
- "name": "stakingFee",
748
+ "name": "distributionFee",
860
749
  "type": "tuple"
861
750
  },
862
751
  {
863
- "components": [
864
- {
865
- "internalType": "UFixed",
866
- "name": "fractionalFee",
867
- "type": "uint256"
868
- },
869
- {
870
- "internalType": "uint256",
871
- "name": "fixedFee",
872
- "type": "uint256"
873
- }
874
- ],
875
- "internalType": "struct Fee",
876
- "name": "performanceFee",
877
- "type": "tuple"
752
+ "internalType": "bool",
753
+ "name": "isIntercepting",
754
+ "type": "bool"
755
+ },
756
+ {
757
+ "internalType": "address",
758
+ "name": "wallet",
759
+ "type": "address"
878
760
  }
879
761
  ],
880
- "internalType": "struct ITreasuryModule.PoolSetup",
762
+ "internalType": "struct ISetup.DistributionSetupInfo",
881
763
  "name": "setup",
882
764
  "type": "tuple"
883
765
  }
884
766
  ],
885
- "stateMutability": "view",
886
- "type": "function"
887
- },
888
- {
889
- "inputs": [],
890
- "name": "getProductService",
891
- "outputs": [
892
- {
893
- "internalType": "contract IProductService",
894
- "name": "",
895
- "type": "address"
896
- }
897
- ],
898
- "stateMutability": "view",
767
+ "name": "createDistributionSetup",
768
+ "outputs": [],
769
+ "stateMutability": "nonpayable",
899
770
  "type": "function"
900
771
  },
901
772
  {
902
773
  "inputs": [
903
774
  {
904
775
  "internalType": "NftId",
905
- "name": "productNftId",
776
+ "name": "policyNftId",
906
777
  "type": "uint96"
778
+ },
779
+ {
780
+ "internalType": "NumberId",
781
+ "name": "payoutId",
782
+ "type": "uint32"
783
+ },
784
+ {
785
+ "components": [
786
+ {
787
+ "internalType": "NumberId",
788
+ "name": "claimId",
789
+ "type": "uint32"
790
+ },
791
+ {
792
+ "internalType": "uint256",
793
+ "name": "amount",
794
+ "type": "uint256"
795
+ },
796
+ {
797
+ "internalType": "bytes",
798
+ "name": "data",
799
+ "type": "bytes"
800
+ },
801
+ {
802
+ "internalType": "Timestamp",
803
+ "name": "paidAt",
804
+ "type": "uint40"
805
+ }
806
+ ],
807
+ "internalType": "struct IPolicy.PayoutInfo",
808
+ "name": "payout",
809
+ "type": "tuple"
907
810
  }
908
811
  ],
909
- "name": "getProductSetup",
910
- "outputs": [
812
+ "name": "createDistributor",
813
+ "outputs": [],
814
+ "stateMutability": "nonpayable",
815
+ "type": "function"
816
+ },
817
+ {
818
+ "inputs": [
819
+ {
820
+ "internalType": "NftId",
821
+ "name": "policyNftId",
822
+ "type": "uint96"
823
+ },
824
+ {
825
+ "internalType": "NumberId",
826
+ "name": "payoutId",
827
+ "type": "uint32"
828
+ },
829
+ {
830
+ "components": [
831
+ {
832
+ "internalType": "NumberId",
833
+ "name": "claimId",
834
+ "type": "uint32"
835
+ },
836
+ {
837
+ "internalType": "uint256",
838
+ "name": "amount",
839
+ "type": "uint256"
840
+ },
841
+ {
842
+ "internalType": "bytes",
843
+ "name": "data",
844
+ "type": "bytes"
845
+ },
846
+ {
847
+ "internalType": "Timestamp",
848
+ "name": "paidAt",
849
+ "type": "uint40"
850
+ }
851
+ ],
852
+ "internalType": "struct IPolicy.PayoutInfo",
853
+ "name": "payout",
854
+ "type": "tuple"
855
+ }
856
+ ],
857
+ "name": "createDistributorType",
858
+ "outputs": [],
859
+ "stateMutability": "nonpayable",
860
+ "type": "function"
861
+ },
862
+ {
863
+ "inputs": [
864
+ {
865
+ "internalType": "NftId",
866
+ "name": "policyNftId",
867
+ "type": "uint96"
868
+ },
869
+ {
870
+ "internalType": "NumberId",
871
+ "name": "payoutId",
872
+ "type": "uint32"
873
+ },
874
+ {
875
+ "components": [
876
+ {
877
+ "internalType": "NumberId",
878
+ "name": "claimId",
879
+ "type": "uint32"
880
+ },
881
+ {
882
+ "internalType": "uint256",
883
+ "name": "amount",
884
+ "type": "uint256"
885
+ },
886
+ {
887
+ "internalType": "bytes",
888
+ "name": "data",
889
+ "type": "bytes"
890
+ },
891
+ {
892
+ "internalType": "Timestamp",
893
+ "name": "paidAt",
894
+ "type": "uint40"
895
+ }
896
+ ],
897
+ "internalType": "struct IPolicy.PayoutInfo",
898
+ "name": "payout",
899
+ "type": "tuple"
900
+ }
901
+ ],
902
+ "name": "createPayout",
903
+ "outputs": [],
904
+ "stateMutability": "nonpayable",
905
+ "type": "function"
906
+ },
907
+ {
908
+ "inputs": [
909
+ {
910
+ "internalType": "NftId",
911
+ "name": "policyNftId",
912
+ "type": "uint96"
913
+ },
911
914
  {
912
915
  "components": [
913
916
  {
@@ -917,18 +920,103 @@
917
920
  },
918
921
  {
919
922
  "internalType": "NftId",
920
- "name": "distributorNftId",
923
+ "name": "bundleNftId",
921
924
  "type": "uint96"
922
925
  },
923
926
  {
924
- "internalType": "NftId",
925
- "name": "poolNftId",
926
- "type": "uint96"
927
+ "internalType": "ReferralId",
928
+ "name": "referralId",
929
+ "type": "bytes8"
927
930
  },
928
931
  {
929
- "internalType": "contract IERC20",
930
- "name": "token",
931
- "type": "address"
932
+ "internalType": "RiskId",
933
+ "name": "riskId",
934
+ "type": "bytes8"
935
+ },
936
+ {
937
+ "internalType": "uint256",
938
+ "name": "sumInsuredAmount",
939
+ "type": "uint256"
940
+ },
941
+ {
942
+ "internalType": "uint256",
943
+ "name": "premiumAmount",
944
+ "type": "uint256"
945
+ },
946
+ {
947
+ "internalType": "uint256",
948
+ "name": "premiumPaidAmount",
949
+ "type": "uint256"
950
+ },
951
+ {
952
+ "internalType": "uint256",
953
+ "name": "lifetime",
954
+ "type": "uint256"
955
+ },
956
+ {
957
+ "internalType": "bytes",
958
+ "name": "applicationData",
959
+ "type": "bytes"
960
+ },
961
+ {
962
+ "internalType": "bytes",
963
+ "name": "policyData",
964
+ "type": "bytes"
965
+ },
966
+ {
967
+ "internalType": "uint16",
968
+ "name": "claimsCount",
969
+ "type": "uint16"
970
+ },
971
+ {
972
+ "internalType": "uint16",
973
+ "name": "openClaimsCount",
974
+ "type": "uint16"
975
+ },
976
+ {
977
+ "internalType": "uint256",
978
+ "name": "payoutAmount",
979
+ "type": "uint256"
980
+ },
981
+ {
982
+ "internalType": "Timestamp",
983
+ "name": "activatedAt",
984
+ "type": "uint40"
985
+ },
986
+ {
987
+ "internalType": "Timestamp",
988
+ "name": "expiredAt",
989
+ "type": "uint40"
990
+ },
991
+ {
992
+ "internalType": "Timestamp",
993
+ "name": "closedAt",
994
+ "type": "uint40"
995
+ }
996
+ ],
997
+ "internalType": "struct IPolicy.PolicyInfo",
998
+ "name": "policy",
999
+ "type": "tuple"
1000
+ }
1001
+ ],
1002
+ "name": "createPolicy",
1003
+ "outputs": [],
1004
+ "stateMutability": "nonpayable",
1005
+ "type": "function"
1006
+ },
1007
+ {
1008
+ "inputs": [
1009
+ {
1010
+ "internalType": "NftId",
1011
+ "name": "distributionNftId",
1012
+ "type": "uint96"
1013
+ },
1014
+ {
1015
+ "components": [
1016
+ {
1017
+ "internalType": "NftId",
1018
+ "name": "productNftId",
1019
+ "type": "uint96"
932
1020
  },
933
1021
  {
934
1022
  "internalType": "contract TokenHandler",
@@ -936,9 +1024,9 @@
936
1024
  "type": "address"
937
1025
  },
938
1026
  {
939
- "internalType": "address",
940
- "name": "wallet",
941
- "type": "address"
1027
+ "internalType": "UFixed",
1028
+ "name": "collateralizationLevel",
1029
+ "type": "uint256"
942
1030
  },
943
1031
  {
944
1032
  "components": [
@@ -954,7 +1042,7 @@
954
1042
  }
955
1043
  ],
956
1044
  "internalType": "struct Fee",
957
- "name": "policyFee",
1045
+ "name": "poolFee",
958
1046
  "type": "tuple"
959
1047
  },
960
1048
  {
@@ -971,175 +1059,326 @@
971
1059
  }
972
1060
  ],
973
1061
  "internalType": "struct Fee",
974
- "name": "processingFee",
1062
+ "name": "stakingFee",
1063
+ "type": "tuple"
1064
+ },
1065
+ {
1066
+ "components": [
1067
+ {
1068
+ "internalType": "UFixed",
1069
+ "name": "fractionalFee",
1070
+ "type": "uint256"
1071
+ },
1072
+ {
1073
+ "internalType": "uint256",
1074
+ "name": "fixedFee",
1075
+ "type": "uint256"
1076
+ }
1077
+ ],
1078
+ "internalType": "struct Fee",
1079
+ "name": "performanceFee",
975
1080
  "type": "tuple"
1081
+ },
1082
+ {
1083
+ "internalType": "bool",
1084
+ "name": "isIntercepting",
1085
+ "type": "bool"
1086
+ },
1087
+ {
1088
+ "internalType": "address",
1089
+ "name": "wallet",
1090
+ "type": "address"
976
1091
  }
977
1092
  ],
978
- "internalType": "struct ITreasuryModule.ProductSetup",
1093
+ "internalType": "struct ISetup.PoolSetupInfo",
979
1094
  "name": "setup",
980
1095
  "type": "tuple"
981
1096
  }
982
1097
  ],
983
- "stateMutability": "view",
984
- "type": "function"
985
- },
986
- {
987
- "inputs": [],
988
- "name": "getRegistry",
989
- "outputs": [
990
- {
991
- "internalType": "contract IRegistry",
992
- "name": "registry",
993
- "type": "address"
994
- }
995
- ],
996
- "stateMutability": "view",
997
- "type": "function"
998
- },
999
- {
1000
- "inputs": [
1001
- {
1002
- "internalType": "uint256",
1003
- "name": "idx",
1004
- "type": "uint256"
1005
- }
1006
- ],
1007
- "name": "getRole",
1008
- "outputs": [
1009
- {
1010
- "internalType": "bytes32",
1011
- "name": "role",
1012
- "type": "bytes32"
1013
- }
1014
- ],
1015
- "stateMutability": "view",
1016
- "type": "function"
1017
- },
1018
- {
1019
- "inputs": [],
1020
- "name": "getRoleCount",
1021
- "outputs": [
1022
- {
1023
- "internalType": "uint256",
1024
- "name": "roles",
1025
- "type": "uint256"
1026
- }
1027
- ],
1028
- "stateMutability": "view",
1098
+ "name": "createPoolSetup",
1099
+ "outputs": [],
1100
+ "stateMutability": "nonpayable",
1029
1101
  "type": "function"
1030
1102
  },
1031
1103
  {
1032
1104
  "inputs": [
1033
1105
  {
1034
- "internalType": "string",
1035
- "name": "roleName",
1036
- "type": "string"
1037
- }
1038
- ],
1039
- "name": "getRoleForName",
1040
- "outputs": [
1041
- {
1042
- "internalType": "bytes32",
1043
- "name": "role",
1044
- "type": "bytes32"
1045
- }
1046
- ],
1047
- "stateMutability": "pure",
1048
- "type": "function"
1049
- },
1050
- {
1051
- "inputs": [
1106
+ "internalType": "NftId",
1107
+ "name": "productNftId",
1108
+ "type": "uint96"
1109
+ },
1052
1110
  {
1053
- "internalType": "ObjectType",
1054
- "name": "cType",
1055
- "type": "uint8"
1111
+ "components": [
1112
+ {
1113
+ "internalType": "contract IERC20Metadata",
1114
+ "name": "token",
1115
+ "type": "address"
1116
+ },
1117
+ {
1118
+ "internalType": "contract TokenHandler",
1119
+ "name": "tokenHandler",
1120
+ "type": "address"
1121
+ },
1122
+ {
1123
+ "internalType": "NftId",
1124
+ "name": "distributionNftId",
1125
+ "type": "uint96"
1126
+ },
1127
+ {
1128
+ "internalType": "NftId",
1129
+ "name": "poolNftId",
1130
+ "type": "uint96"
1131
+ },
1132
+ {
1133
+ "components": [
1134
+ {
1135
+ "internalType": "UFixed",
1136
+ "name": "fractionalFee",
1137
+ "type": "uint256"
1138
+ },
1139
+ {
1140
+ "internalType": "uint256",
1141
+ "name": "fixedFee",
1142
+ "type": "uint256"
1143
+ }
1144
+ ],
1145
+ "internalType": "struct Fee",
1146
+ "name": "distributionFee",
1147
+ "type": "tuple"
1148
+ },
1149
+ {
1150
+ "components": [
1151
+ {
1152
+ "internalType": "UFixed",
1153
+ "name": "fractionalFee",
1154
+ "type": "uint256"
1155
+ },
1156
+ {
1157
+ "internalType": "uint256",
1158
+ "name": "fixedFee",
1159
+ "type": "uint256"
1160
+ }
1161
+ ],
1162
+ "internalType": "struct Fee",
1163
+ "name": "productFee",
1164
+ "type": "tuple"
1165
+ },
1166
+ {
1167
+ "components": [
1168
+ {
1169
+ "internalType": "UFixed",
1170
+ "name": "fractionalFee",
1171
+ "type": "uint256"
1172
+ },
1173
+ {
1174
+ "internalType": "uint256",
1175
+ "name": "fixedFee",
1176
+ "type": "uint256"
1177
+ }
1178
+ ],
1179
+ "internalType": "struct Fee",
1180
+ "name": "processingFee",
1181
+ "type": "tuple"
1182
+ },
1183
+ {
1184
+ "components": [
1185
+ {
1186
+ "internalType": "UFixed",
1187
+ "name": "fractionalFee",
1188
+ "type": "uint256"
1189
+ },
1190
+ {
1191
+ "internalType": "uint256",
1192
+ "name": "fixedFee",
1193
+ "type": "uint256"
1194
+ }
1195
+ ],
1196
+ "internalType": "struct Fee",
1197
+ "name": "poolFee",
1198
+ "type": "tuple"
1199
+ },
1200
+ {
1201
+ "components": [
1202
+ {
1203
+ "internalType": "UFixed",
1204
+ "name": "fractionalFee",
1205
+ "type": "uint256"
1206
+ },
1207
+ {
1208
+ "internalType": "uint256",
1209
+ "name": "fixedFee",
1210
+ "type": "uint256"
1211
+ }
1212
+ ],
1213
+ "internalType": "struct Fee",
1214
+ "name": "stakingFee",
1215
+ "type": "tuple"
1216
+ },
1217
+ {
1218
+ "components": [
1219
+ {
1220
+ "internalType": "UFixed",
1221
+ "name": "fractionalFee",
1222
+ "type": "uint256"
1223
+ },
1224
+ {
1225
+ "internalType": "uint256",
1226
+ "name": "fixedFee",
1227
+ "type": "uint256"
1228
+ }
1229
+ ],
1230
+ "internalType": "struct Fee",
1231
+ "name": "performanceFee",
1232
+ "type": "tuple"
1233
+ }
1234
+ ],
1235
+ "internalType": "struct ISetup.ProductSetupInfo",
1236
+ "name": "setup",
1237
+ "type": "tuple"
1056
1238
  }
1057
1239
  ],
1058
- "name": "getRoleForType",
1059
- "outputs": [
1240
+ "name": "createProductSetup",
1241
+ "outputs": [],
1242
+ "stateMutability": "nonpayable",
1243
+ "type": "function"
1244
+ },
1245
+ {
1246
+ "inputs": [
1060
1247
  {
1061
- "internalType": "bytes32",
1062
- "name": "role",
1063
- "type": "bytes32"
1248
+ "internalType": "NftId",
1249
+ "name": "policyNftId",
1250
+ "type": "uint96"
1251
+ },
1252
+ {
1253
+ "internalType": "NumberId",
1254
+ "name": "payoutId",
1255
+ "type": "uint32"
1256
+ },
1257
+ {
1258
+ "components": [
1259
+ {
1260
+ "internalType": "NumberId",
1261
+ "name": "claimId",
1262
+ "type": "uint32"
1263
+ },
1264
+ {
1265
+ "internalType": "uint256",
1266
+ "name": "amount",
1267
+ "type": "uint256"
1268
+ },
1269
+ {
1270
+ "internalType": "bytes",
1271
+ "name": "data",
1272
+ "type": "bytes"
1273
+ },
1274
+ {
1275
+ "internalType": "Timestamp",
1276
+ "name": "paidAt",
1277
+ "type": "uint40"
1278
+ }
1279
+ ],
1280
+ "internalType": "struct IPolicy.PayoutInfo",
1281
+ "name": "payout",
1282
+ "type": "tuple"
1064
1283
  }
1065
1284
  ],
1066
- "stateMutability": "view",
1285
+ "name": "createReferral",
1286
+ "outputs": [],
1287
+ "stateMutability": "nonpayable",
1067
1288
  "type": "function"
1068
1289
  },
1069
1290
  {
1070
1291
  "inputs": [
1071
1292
  {
1072
- "internalType": "bytes32",
1073
- "name": "role",
1074
- "type": "bytes32"
1075
- }
1076
- ],
1077
- "name": "getRoleInfo",
1078
- "outputs": [
1293
+ "internalType": "RiskId",
1294
+ "name": "riskId",
1295
+ "type": "bytes8"
1296
+ },
1079
1297
  {
1080
1298
  "components": [
1081
1299
  {
1082
- "internalType": "bytes32",
1083
- "name": "id",
1084
- "type": "bytes32"
1085
- },
1086
- {
1087
- "internalType": "string",
1088
- "name": "name",
1089
- "type": "string"
1300
+ "internalType": "NftId",
1301
+ "name": "productNftId",
1302
+ "type": "uint96"
1090
1303
  },
1091
1304
  {
1092
- "internalType": "bool",
1093
- "name": "isActive",
1094
- "type": "bool"
1305
+ "internalType": "bytes",
1306
+ "name": "data",
1307
+ "type": "bytes"
1095
1308
  }
1096
1309
  ],
1097
- "internalType": "struct IAccess.RoleInfo",
1098
- "name": "info",
1310
+ "internalType": "struct IRisk.RiskInfo",
1311
+ "name": "risk",
1099
1312
  "type": "tuple"
1100
1313
  }
1101
1314
  ],
1102
- "stateMutability": "view",
1315
+ "name": "createRisk",
1316
+ "outputs": [],
1317
+ "stateMutability": "nonpayable",
1103
1318
  "type": "function"
1104
1319
  },
1105
1320
  {
1106
1321
  "inputs": [
1107
1322
  {
1108
- "internalType": "bytes32",
1109
- "name": "role",
1110
- "type": "bytes32"
1323
+ "internalType": "RoleId",
1324
+ "name": "roleId",
1325
+ "type": "uint64"
1111
1326
  },
1112
1327
  {
1113
- "internalType": "uint256",
1114
- "name": "idx",
1115
- "type": "uint256"
1328
+ "internalType": "string",
1329
+ "name": "name",
1330
+ "type": "string"
1116
1331
  }
1117
1332
  ],
1118
- "name": "getRoleMember",
1119
- "outputs": [
1333
+ "name": "createStandardRole",
1334
+ "outputs": [],
1335
+ "stateMutability": "nonpayable",
1336
+ "type": "function"
1337
+ },
1338
+ {
1339
+ "inputs": [
1120
1340
  {
1121
1341
  "internalType": "address",
1122
- "name": "roleMembers",
1342
+ "name": "target",
1123
1343
  "type": "address"
1344
+ },
1345
+ {
1346
+ "components": [
1347
+ {
1348
+ "internalType": "ShortString",
1349
+ "name": "name",
1350
+ "type": "bytes32"
1351
+ },
1352
+ {
1353
+ "internalType": "bool",
1354
+ "name": "isCustom",
1355
+ "type": "bool"
1356
+ }
1357
+ ],
1358
+ "internalType": "struct IAccess.TargetInfo",
1359
+ "name": "targetInfo",
1360
+ "type": "tuple"
1124
1361
  }
1125
1362
  ],
1126
- "stateMutability": "view",
1363
+ "name": "createTarget",
1364
+ "outputs": [],
1365
+ "stateMutability": "nonpayable",
1127
1366
  "type": "function"
1128
1367
  },
1129
1368
  {
1130
1369
  "inputs": [
1131
1370
  {
1132
- "internalType": "bytes32",
1133
- "name": "role",
1371
+ "internalType": "Key32",
1372
+ "name": "key32",
1134
1373
  "type": "bytes32"
1135
1374
  }
1136
1375
  ],
1137
- "name": "getRoleMemberCount",
1376
+ "name": "exists",
1138
1377
  "outputs": [
1139
1378
  {
1140
- "internalType": "uint256",
1141
- "name": "roleMembers",
1142
- "type": "uint256"
1379
+ "internalType": "bool",
1380
+ "name": "",
1381
+ "type": "bool"
1143
1382
  }
1144
1383
  ],
1145
1384
  "stateMutability": "view",
@@ -1148,17 +1387,56 @@
1148
1387
  {
1149
1388
  "inputs": [
1150
1389
  {
1151
- "internalType": "NftId",
1152
- "name": "productNftId",
1153
- "type": "uint96"
1390
+ "internalType": "Key32",
1391
+ "name": "key32",
1392
+ "type": "bytes32"
1154
1393
  }
1155
1394
  ],
1156
- "name": "getTokenHandler",
1395
+ "name": "get",
1157
1396
  "outputs": [
1158
1397
  {
1159
- "internalType": "contract TokenHandler",
1160
- "name": "tokenHandler",
1161
- "type": "address"
1398
+ "components": [
1399
+ {
1400
+ "components": [
1401
+ {
1402
+ "internalType": "ObjectType",
1403
+ "name": "objectType",
1404
+ "type": "uint8"
1405
+ },
1406
+ {
1407
+ "internalType": "StateId",
1408
+ "name": "state",
1409
+ "type": "uint8"
1410
+ },
1411
+ {
1412
+ "internalType": "address",
1413
+ "name": "updatedBy",
1414
+ "type": "address"
1415
+ },
1416
+ {
1417
+ "internalType": "Blocknumber",
1418
+ "name": "updatedIn",
1419
+ "type": "uint32"
1420
+ },
1421
+ {
1422
+ "internalType": "Blocknumber",
1423
+ "name": "createdIn",
1424
+ "type": "uint32"
1425
+ }
1426
+ ],
1427
+ "internalType": "struct IKeyValueStore.Metadata",
1428
+ "name": "metadata",
1429
+ "type": "tuple"
1430
+ },
1431
+ {
1432
+ "internalType": "bytes",
1433
+ "name": "data",
1434
+ "type": "bytes"
1435
+ }
1436
+ ],
1437
+ "internalType": "struct IKeyValueStore.Value",
1438
+ "name": "value",
1439
+ "type": "tuple"
1162
1440
  }
1163
1441
  ],
1164
1442
  "stateMutability": "view",
@@ -1166,54 +1444,177 @@
1166
1444
  },
1167
1445
  {
1168
1446
  "inputs": [],
1169
- "name": "getType",
1447
+ "name": "getComponentOwnerService",
1170
1448
  "outputs": [
1171
1449
  {
1172
- "internalType": "ObjectType",
1173
- "name": "objectType",
1174
- "type": "uint8"
1450
+ "internalType": "contract IComponentOwnerService",
1451
+ "name": "",
1452
+ "type": "address"
1175
1453
  }
1176
1454
  ],
1177
- "stateMutability": "pure",
1455
+ "stateMutability": "view",
1178
1456
  "type": "function"
1179
1457
  },
1180
1458
  {
1181
1459
  "inputs": [
1182
1460
  {
1183
- "internalType": "bytes32",
1184
- "name": "role",
1461
+ "internalType": "Key32",
1462
+ "name": "key32",
1185
1463
  "type": "bytes32"
1186
- },
1187
- {
1188
- "internalType": "address",
1189
- "name": "member",
1464
+ }
1465
+ ],
1466
+ "name": "getData",
1467
+ "outputs": [
1468
+ {
1469
+ "internalType": "bytes",
1470
+ "name": "data",
1471
+ "type": "bytes"
1472
+ }
1473
+ ],
1474
+ "stateMutability": "view",
1475
+ "type": "function"
1476
+ },
1477
+ {
1478
+ "inputs": [],
1479
+ "name": "getInitialInfo",
1480
+ "outputs": [
1481
+ {
1482
+ "components": [
1483
+ {
1484
+ "internalType": "NftId",
1485
+ "name": "nftId",
1486
+ "type": "uint96"
1487
+ },
1488
+ {
1489
+ "internalType": "NftId",
1490
+ "name": "parentNftId",
1491
+ "type": "uint96"
1492
+ },
1493
+ {
1494
+ "internalType": "ObjectType",
1495
+ "name": "objectType",
1496
+ "type": "uint8"
1497
+ },
1498
+ {
1499
+ "internalType": "bool",
1500
+ "name": "isInterceptor",
1501
+ "type": "bool"
1502
+ },
1503
+ {
1504
+ "internalType": "address",
1505
+ "name": "objectAddress",
1506
+ "type": "address"
1507
+ },
1508
+ {
1509
+ "internalType": "address",
1510
+ "name": "initialOwner",
1511
+ "type": "address"
1512
+ },
1513
+ {
1514
+ "internalType": "bytes",
1515
+ "name": "data",
1516
+ "type": "bytes"
1517
+ }
1518
+ ],
1519
+ "internalType": "struct IRegistry.ObjectInfo",
1520
+ "name": "",
1521
+ "type": "tuple"
1522
+ },
1523
+ {
1524
+ "internalType": "bytes",
1525
+ "name": "data",
1526
+ "type": "bytes"
1527
+ }
1528
+ ],
1529
+ "stateMutability": "view",
1530
+ "type": "function"
1531
+ },
1532
+ {
1533
+ "inputs": [
1534
+ {
1535
+ "internalType": "ObjectType",
1536
+ "name": "objectType",
1537
+ "type": "uint8"
1538
+ }
1539
+ ],
1540
+ "name": "getInitialState",
1541
+ "outputs": [
1542
+ {
1543
+ "internalType": "StateId",
1544
+ "name": "",
1545
+ "type": "uint8"
1546
+ }
1547
+ ],
1548
+ "stateMutability": "view",
1549
+ "type": "function"
1550
+ },
1551
+ {
1552
+ "inputs": [],
1553
+ "name": "getInstanceReader",
1554
+ "outputs": [
1555
+ {
1556
+ "internalType": "contract InstanceReader",
1557
+ "name": "",
1190
1558
  "type": "address"
1191
1559
  }
1192
1560
  ],
1193
- "name": "grantRole",
1194
- "outputs": [],
1195
- "stateMutability": "nonpayable",
1561
+ "stateMutability": "view",
1196
1562
  "type": "function"
1197
1563
  },
1198
1564
  {
1199
1565
  "inputs": [
1200
1566
  {
1201
- "internalType": "bytes32",
1202
- "name": "role",
1567
+ "internalType": "Key32",
1568
+ "name": "key32",
1203
1569
  "type": "bytes32"
1204
- },
1570
+ }
1571
+ ],
1572
+ "name": "getMetadata",
1573
+ "outputs": [
1205
1574
  {
1206
- "internalType": "address",
1207
- "name": "member",
1208
- "type": "address"
1575
+ "components": [
1576
+ {
1577
+ "internalType": "ObjectType",
1578
+ "name": "objectType",
1579
+ "type": "uint8"
1580
+ },
1581
+ {
1582
+ "internalType": "StateId",
1583
+ "name": "state",
1584
+ "type": "uint8"
1585
+ },
1586
+ {
1587
+ "internalType": "address",
1588
+ "name": "updatedBy",
1589
+ "type": "address"
1590
+ },
1591
+ {
1592
+ "internalType": "Blocknumber",
1593
+ "name": "updatedIn",
1594
+ "type": "uint32"
1595
+ },
1596
+ {
1597
+ "internalType": "Blocknumber",
1598
+ "name": "createdIn",
1599
+ "type": "uint32"
1600
+ }
1601
+ ],
1602
+ "internalType": "struct IKeyValueStore.Metadata",
1603
+ "name": "metadata",
1604
+ "type": "tuple"
1209
1605
  }
1210
1606
  ],
1211
- "name": "hasRole",
1607
+ "stateMutability": "view",
1608
+ "type": "function"
1609
+ },
1610
+ {
1611
+ "inputs": [],
1612
+ "name": "getNftId",
1212
1613
  "outputs": [
1213
1614
  {
1214
- "internalType": "bool",
1615
+ "internalType": "NftId",
1215
1616
  "name": "",
1216
- "type": "bool"
1617
+ "type": "uint96"
1217
1618
  }
1218
1619
  ],
1219
1620
  "stateMutability": "view",
@@ -1221,25 +1622,25 @@
1221
1622
  },
1222
1623
  {
1223
1624
  "inputs": [],
1224
- "name": "isRegisterable",
1625
+ "name": "getOwner",
1225
1626
  "outputs": [
1226
1627
  {
1227
- "internalType": "bool",
1628
+ "internalType": "address",
1228
1629
  "name": "",
1229
- "type": "bool"
1630
+ "type": "address"
1230
1631
  }
1231
1632
  ],
1232
- "stateMutability": "pure",
1633
+ "stateMutability": "view",
1233
1634
  "type": "function"
1234
1635
  },
1235
1636
  {
1236
1637
  "inputs": [],
1237
- "name": "isRegistered",
1638
+ "name": "getRegistry",
1238
1639
  "outputs": [
1239
1640
  {
1240
- "internalType": "bool",
1641
+ "internalType": "contract IRegistry",
1241
1642
  "name": "",
1242
- "type": "bool"
1643
+ "type": "address"
1243
1644
  }
1244
1645
  ],
1245
1646
  "stateMutability": "view",
@@ -1248,22 +1649,129 @@
1248
1649
  {
1249
1650
  "inputs": [
1250
1651
  {
1251
- "internalType": "ObjectType",
1252
- "name": "objectType",
1253
- "type": "uint8"
1652
+ "internalType": "RoleId",
1653
+ "name": "roleId",
1654
+ "type": "uint64"
1655
+ }
1656
+ ],
1657
+ "name": "getRole",
1658
+ "outputs": [
1659
+ {
1660
+ "components": [
1661
+ {
1662
+ "internalType": "ShortString",
1663
+ "name": "name",
1664
+ "type": "bytes32"
1665
+ },
1666
+ {
1667
+ "internalType": "bool",
1668
+ "name": "isCustom",
1669
+ "type": "bool"
1670
+ }
1671
+ ],
1672
+ "internalType": "struct IAccess.RoleInfo",
1673
+ "name": "role",
1674
+ "type": "tuple"
1675
+ }
1676
+ ],
1677
+ "stateMutability": "view",
1678
+ "type": "function"
1679
+ },
1680
+ {
1681
+ "inputs": [
1682
+ {
1683
+ "internalType": "uint256",
1684
+ "name": "idx",
1685
+ "type": "uint256"
1686
+ }
1687
+ ],
1688
+ "name": "getRoleId",
1689
+ "outputs": [
1690
+ {
1691
+ "internalType": "RoleId",
1692
+ "name": "roleId",
1693
+ "type": "uint64"
1694
+ }
1695
+ ],
1696
+ "stateMutability": "view",
1697
+ "type": "function"
1698
+ },
1699
+ {
1700
+ "inputs": [
1701
+ {
1702
+ "internalType": "RoleId",
1703
+ "name": "roleId",
1704
+ "type": "uint64"
1254
1705
  },
1706
+ {
1707
+ "internalType": "uint256",
1708
+ "name": "idx",
1709
+ "type": "uint256"
1710
+ }
1711
+ ],
1712
+ "name": "getRoleMember",
1713
+ "outputs": [
1714
+ {
1715
+ "internalType": "address",
1716
+ "name": "roleMember",
1717
+ "type": "address"
1718
+ }
1719
+ ],
1720
+ "stateMutability": "view",
1721
+ "type": "function"
1722
+ },
1723
+ {
1724
+ "inputs": [
1725
+ {
1726
+ "internalType": "Key32",
1727
+ "name": "key32",
1728
+ "type": "bytes32"
1729
+ }
1730
+ ],
1731
+ "name": "getState",
1732
+ "outputs": [
1255
1733
  {
1256
1734
  "internalType": "StateId",
1257
- "name": "fromId",
1735
+ "name": "state",
1258
1736
  "type": "uint8"
1737
+ }
1738
+ ],
1739
+ "stateMutability": "view",
1740
+ "type": "function"
1741
+ },
1742
+ {
1743
+ "inputs": [
1744
+ {
1745
+ "internalType": "RoleId",
1746
+ "name": "roleId",
1747
+ "type": "uint64"
1259
1748
  },
1260
1749
  {
1261
- "internalType": "StateId",
1262
- "name": "toId",
1750
+ "internalType": "address",
1751
+ "name": "member",
1752
+ "type": "address"
1753
+ }
1754
+ ],
1755
+ "name": "grantRole",
1756
+ "outputs": [
1757
+ {
1758
+ "internalType": "bool",
1759
+ "name": "granted",
1760
+ "type": "bool"
1761
+ }
1762
+ ],
1763
+ "stateMutability": "nonpayable",
1764
+ "type": "function"
1765
+ },
1766
+ {
1767
+ "inputs": [
1768
+ {
1769
+ "internalType": "ObjectType",
1770
+ "name": "objectType",
1263
1771
  "type": "uint8"
1264
1772
  }
1265
1773
  ],
1266
- "name": "isValidTransition",
1774
+ "name": "hasLifecycle",
1267
1775
  "outputs": [
1268
1776
  {
1269
1777
  "internalType": "bool",
@@ -1277,12 +1785,12 @@
1277
1785
  {
1278
1786
  "inputs": [
1279
1787
  {
1280
- "internalType": "NftId",
1281
- "name": "nftId",
1282
- "type": "uint96"
1788
+ "internalType": "address",
1789
+ "name": "initialAuthority",
1790
+ "type": "address"
1283
1791
  }
1284
1792
  ],
1285
- "name": "processPremium",
1793
+ "name": "initialize",
1286
1794
  "outputs": [],
1287
1795
  "stateMutability": "nonpayable",
1288
1796
  "type": "function"
@@ -1290,62 +1798,998 @@
1290
1798
  {
1291
1799
  "inputs": [
1292
1800
  {
1293
- "internalType": "NftId",
1294
- "name": "policyNftId",
1295
- "type": "uint96"
1801
+ "internalType": "address",
1802
+ "name": "accessManagerAddress",
1803
+ "type": "address"
1804
+ },
1805
+ {
1806
+ "internalType": "address",
1807
+ "name": "registryAddress",
1808
+ "type": "address"
1296
1809
  },
1297
1810
  {
1298
1811
  "internalType": "NftId",
1299
- "name": "productNftId",
1812
+ "name": "registryNftId",
1300
1813
  "type": "uint96"
1301
1814
  }
1302
1815
  ],
1303
- "name": "processPremium",
1816
+ "name": "initialize",
1304
1817
  "outputs": [],
1305
1818
  "stateMutability": "nonpayable",
1306
1819
  "type": "function"
1307
1820
  },
1308
1821
  {
1309
1822
  "inputs": [],
1310
- "name": "register",
1823
+ "name": "isConsumingScheduledOp",
1311
1824
  "outputs": [
1312
1825
  {
1313
- "internalType": "NftId",
1314
- "name": "nftId",
1315
- "type": "uint96"
1826
+ "internalType": "bytes4",
1827
+ "name": "",
1828
+ "type": "bytes4"
1829
+ }
1830
+ ],
1831
+ "stateMutability": "view",
1832
+ "type": "function"
1833
+ },
1834
+ {
1835
+ "inputs": [
1836
+ {
1837
+ "internalType": "ObjectType",
1838
+ "name": "objectType",
1839
+ "type": "uint8"
1840
+ },
1841
+ {
1842
+ "internalType": "StateId",
1843
+ "name": "fromId",
1844
+ "type": "uint8"
1845
+ },
1846
+ {
1847
+ "internalType": "StateId",
1848
+ "name": "toId",
1849
+ "type": "uint8"
1850
+ }
1851
+ ],
1852
+ "name": "isValidTransition",
1853
+ "outputs": [
1854
+ {
1855
+ "internalType": "bool",
1856
+ "name": "",
1857
+ "type": "bool"
1858
+ }
1859
+ ],
1860
+ "stateMutability": "view",
1861
+ "type": "function"
1862
+ },
1863
+ {
1864
+ "inputs": [],
1865
+ "name": "linkToRegisteredNftId",
1866
+ "outputs": [],
1867
+ "stateMutability": "nonpayable",
1868
+ "type": "function"
1869
+ },
1870
+ {
1871
+ "inputs": [
1872
+ {
1873
+ "internalType": "RoleId",
1874
+ "name": "roleId",
1875
+ "type": "uint64"
1876
+ }
1877
+ ],
1878
+ "name": "renounceRole",
1879
+ "outputs": [
1880
+ {
1881
+ "internalType": "bool",
1882
+ "name": "revoked",
1883
+ "type": "bool"
1884
+ }
1885
+ ],
1886
+ "stateMutability": "nonpayable",
1887
+ "type": "function"
1888
+ },
1889
+ {
1890
+ "inputs": [
1891
+ {
1892
+ "internalType": "RoleId",
1893
+ "name": "roleId",
1894
+ "type": "uint64"
1895
+ },
1896
+ {
1897
+ "internalType": "address",
1898
+ "name": "member",
1899
+ "type": "address"
1900
+ }
1901
+ ],
1902
+ "name": "revokeRole",
1903
+ "outputs": [
1904
+ {
1905
+ "internalType": "bool",
1906
+ "name": "revoked",
1907
+ "type": "bool"
1908
+ }
1909
+ ],
1910
+ "stateMutability": "nonpayable",
1911
+ "type": "function"
1912
+ },
1913
+ {
1914
+ "inputs": [
1915
+ {
1916
+ "internalType": "RoleId",
1917
+ "name": "roleId",
1918
+ "type": "uint64"
1919
+ }
1920
+ ],
1921
+ "name": "roleMembers",
1922
+ "outputs": [
1923
+ {
1924
+ "internalType": "uint256",
1925
+ "name": "numberOfMembers",
1926
+ "type": "uint256"
1927
+ }
1928
+ ],
1929
+ "stateMutability": "view",
1930
+ "type": "function"
1931
+ },
1932
+ {
1933
+ "inputs": [],
1934
+ "name": "roles",
1935
+ "outputs": [
1936
+ {
1937
+ "internalType": "uint256",
1938
+ "name": "numberOfRoles",
1939
+ "type": "uint256"
1940
+ }
1941
+ ],
1942
+ "stateMutability": "view",
1943
+ "type": "function"
1944
+ },
1945
+ {
1946
+ "inputs": [
1947
+ {
1948
+ "internalType": "address",
1949
+ "name": "newAuthority",
1950
+ "type": "address"
1951
+ }
1952
+ ],
1953
+ "name": "setAuthority",
1954
+ "outputs": [],
1955
+ "stateMutability": "nonpayable",
1956
+ "type": "function"
1957
+ },
1958
+ {
1959
+ "inputs": [
1960
+ {
1961
+ "internalType": "contract InstanceReader",
1962
+ "name": "instanceReader",
1963
+ "type": "address"
1964
+ }
1965
+ ],
1966
+ "name": "setInstanceReader",
1967
+ "outputs": [],
1968
+ "stateMutability": "nonpayable",
1969
+ "type": "function"
1970
+ },
1971
+ {
1972
+ "inputs": [
1973
+ {
1974
+ "internalType": "address",
1975
+ "name": "target",
1976
+ "type": "address"
1977
+ },
1978
+ {
1979
+ "internalType": "bool",
1980
+ "name": "closed",
1981
+ "type": "bool"
1982
+ }
1983
+ ],
1984
+ "name": "setTargetClosed",
1985
+ "outputs": [],
1986
+ "stateMutability": "nonpayable",
1987
+ "type": "function"
1988
+ },
1989
+ {
1990
+ "inputs": [
1991
+ {
1992
+ "internalType": "bytes4",
1993
+ "name": "interfaceId",
1994
+ "type": "bytes4"
1995
+ }
1996
+ ],
1997
+ "name": "supportsInterface",
1998
+ "outputs": [
1999
+ {
2000
+ "internalType": "bool",
2001
+ "name": "",
2002
+ "type": "bool"
2003
+ }
2004
+ ],
2005
+ "stateMutability": "view",
2006
+ "type": "function"
2007
+ },
2008
+ {
2009
+ "inputs": [
2010
+ {
2011
+ "internalType": "NftId",
2012
+ "name": "bundleNftId",
2013
+ "type": "uint96"
2014
+ }
2015
+ ],
2016
+ "name": "toBundleKey32",
2017
+ "outputs": [
2018
+ {
2019
+ "internalType": "Key32",
2020
+ "name": "",
2021
+ "type": "bytes32"
2022
+ }
2023
+ ],
2024
+ "stateMutability": "pure",
2025
+ "type": "function"
2026
+ },
2027
+ {
2028
+ "inputs": [
2029
+ {
2030
+ "internalType": "ObjectType",
2031
+ "name": "objectType",
2032
+ "type": "uint8"
2033
+ },
2034
+ {
2035
+ "internalType": "KeyId",
2036
+ "name": "id",
2037
+ "type": "bytes31"
2038
+ }
2039
+ ],
2040
+ "name": "toKey32",
2041
+ "outputs": [
2042
+ {
2043
+ "internalType": "Key32",
2044
+ "name": "",
2045
+ "type": "bytes32"
2046
+ }
2047
+ ],
2048
+ "stateMutability": "pure",
2049
+ "type": "function"
2050
+ },
2051
+ {
2052
+ "inputs": [
2053
+ {
2054
+ "internalType": "NftId",
2055
+ "name": "policyNftId",
2056
+ "type": "uint96"
2057
+ }
2058
+ ],
2059
+ "name": "toPolicyKey32",
2060
+ "outputs": [
2061
+ {
2062
+ "internalType": "Key32",
2063
+ "name": "",
2064
+ "type": "bytes32"
2065
+ }
2066
+ ],
2067
+ "stateMutability": "pure",
2068
+ "type": "function"
2069
+ },
2070
+ {
2071
+ "inputs": [
2072
+ {
2073
+ "internalType": "RoleId",
2074
+ "name": "roleId",
2075
+ "type": "uint64"
2076
+ }
2077
+ ],
2078
+ "name": "toRoleKey32",
2079
+ "outputs": [
2080
+ {
2081
+ "internalType": "Key32",
2082
+ "name": "",
2083
+ "type": "bytes32"
2084
+ }
2085
+ ],
2086
+ "stateMutability": "pure",
2087
+ "type": "function"
2088
+ },
2089
+ {
2090
+ "inputs": [
2091
+ {
2092
+ "internalType": "address",
2093
+ "name": "target",
2094
+ "type": "address"
2095
+ }
2096
+ ],
2097
+ "name": "toTargetKey32",
2098
+ "outputs": [
2099
+ {
2100
+ "internalType": "Key32",
2101
+ "name": "",
2102
+ "type": "bytes32"
2103
+ }
2104
+ ],
2105
+ "stateMutability": "pure",
2106
+ "type": "function"
2107
+ },
2108
+ {
2109
+ "inputs": [
2110
+ {
2111
+ "internalType": "NftId",
2112
+ "name": "bundleNftId",
2113
+ "type": "uint96"
2114
+ },
2115
+ {
2116
+ "components": [
2117
+ {
2118
+ "internalType": "NftId",
2119
+ "name": "poolNftId",
2120
+ "type": "uint96"
2121
+ },
2122
+ {
2123
+ "components": [
2124
+ {
2125
+ "internalType": "UFixed",
2126
+ "name": "fractionalFee",
2127
+ "type": "uint256"
2128
+ },
2129
+ {
2130
+ "internalType": "uint256",
2131
+ "name": "fixedFee",
2132
+ "type": "uint256"
2133
+ }
2134
+ ],
2135
+ "internalType": "struct Fee",
2136
+ "name": "fee",
2137
+ "type": "tuple"
2138
+ },
2139
+ {
2140
+ "internalType": "bytes",
2141
+ "name": "filter",
2142
+ "type": "bytes"
2143
+ },
2144
+ {
2145
+ "internalType": "uint256",
2146
+ "name": "capitalAmount",
2147
+ "type": "uint256"
2148
+ },
2149
+ {
2150
+ "internalType": "uint256",
2151
+ "name": "lockedAmount",
2152
+ "type": "uint256"
2153
+ },
2154
+ {
2155
+ "internalType": "uint256",
2156
+ "name": "balanceAmount",
2157
+ "type": "uint256"
2158
+ },
2159
+ {
2160
+ "internalType": "Timestamp",
2161
+ "name": "expiredAt",
2162
+ "type": "uint40"
2163
+ },
2164
+ {
2165
+ "internalType": "Timestamp",
2166
+ "name": "closedAt",
2167
+ "type": "uint40"
2168
+ }
2169
+ ],
2170
+ "internalType": "struct IBundle.BundleInfo",
2171
+ "name": "bundle",
2172
+ "type": "tuple"
2173
+ },
2174
+ {
2175
+ "internalType": "StateId",
2176
+ "name": "newState",
2177
+ "type": "uint8"
2178
+ }
2179
+ ],
2180
+ "name": "updateBundle",
2181
+ "outputs": [],
2182
+ "stateMutability": "nonpayable",
2183
+ "type": "function"
2184
+ },
2185
+ {
2186
+ "inputs": [
2187
+ {
2188
+ "internalType": "NftId",
2189
+ "name": "bundleNftId",
2190
+ "type": "uint96"
2191
+ },
2192
+ {
2193
+ "internalType": "StateId",
2194
+ "name": "newState",
2195
+ "type": "uint8"
2196
+ }
2197
+ ],
2198
+ "name": "updateBundleState",
2199
+ "outputs": [],
2200
+ "stateMutability": "nonpayable",
2201
+ "type": "function"
2202
+ },
2203
+ {
2204
+ "inputs": [
2205
+ {
2206
+ "internalType": "NftId",
2207
+ "name": "policyNftId",
2208
+ "type": "uint96"
2209
+ },
2210
+ {
2211
+ "internalType": "NumberId",
2212
+ "name": "claimId",
2213
+ "type": "uint32"
2214
+ },
2215
+ {
2216
+ "components": [
2217
+ {
2218
+ "internalType": "uint256",
2219
+ "name": "claimAmount",
2220
+ "type": "uint256"
2221
+ },
2222
+ {
2223
+ "internalType": "uint256",
2224
+ "name": "paidAmount",
2225
+ "type": "uint256"
2226
+ },
2227
+ {
2228
+ "internalType": "bytes",
2229
+ "name": "data",
2230
+ "type": "bytes"
2231
+ },
2232
+ {
2233
+ "internalType": "Timestamp",
2234
+ "name": "closedAt",
2235
+ "type": "uint40"
2236
+ }
2237
+ ],
2238
+ "internalType": "struct IPolicy.ClaimInfo",
2239
+ "name": "claim",
2240
+ "type": "tuple"
2241
+ },
2242
+ {
2243
+ "internalType": "StateId",
2244
+ "name": "newState",
2245
+ "type": "uint8"
2246
+ }
2247
+ ],
2248
+ "name": "updateClaim",
2249
+ "outputs": [],
2250
+ "stateMutability": "nonpayable",
2251
+ "type": "function"
2252
+ },
2253
+ {
2254
+ "inputs": [
2255
+ {
2256
+ "internalType": "NftId",
2257
+ "name": "policyNftId",
2258
+ "type": "uint96"
2259
+ },
2260
+ {
2261
+ "internalType": "NumberId",
2262
+ "name": "payoutId",
2263
+ "type": "uint32"
2264
+ },
2265
+ {
2266
+ "components": [
2267
+ {
2268
+ "internalType": "NumberId",
2269
+ "name": "claimId",
2270
+ "type": "uint32"
2271
+ },
2272
+ {
2273
+ "internalType": "uint256",
2274
+ "name": "amount",
2275
+ "type": "uint256"
2276
+ },
2277
+ {
2278
+ "internalType": "bytes",
2279
+ "name": "data",
2280
+ "type": "bytes"
2281
+ },
2282
+ {
2283
+ "internalType": "Timestamp",
2284
+ "name": "paidAt",
2285
+ "type": "uint40"
2286
+ }
2287
+ ],
2288
+ "internalType": "struct IPolicy.PayoutInfo",
2289
+ "name": "payout",
2290
+ "type": "tuple"
2291
+ },
2292
+ {
2293
+ "internalType": "StateId",
2294
+ "name": "newState",
2295
+ "type": "uint8"
2296
+ }
2297
+ ],
2298
+ "name": "updateClaim",
2299
+ "outputs": [],
2300
+ "stateMutability": "nonpayable",
2301
+ "type": "function"
2302
+ },
2303
+ {
2304
+ "inputs": [
2305
+ {
2306
+ "internalType": "NftId",
2307
+ "name": "policyNftId",
2308
+ "type": "uint96"
2309
+ },
2310
+ {
2311
+ "internalType": "StateId",
2312
+ "name": "newState",
2313
+ "type": "uint8"
2314
+ }
2315
+ ],
2316
+ "name": "updateClaimState",
2317
+ "outputs": [],
2318
+ "stateMutability": "nonpayable",
2319
+ "type": "function"
2320
+ },
2321
+ {
2322
+ "inputs": [
2323
+ {
2324
+ "internalType": "NftId",
2325
+ "name": "distributionNftId",
2326
+ "type": "uint96"
2327
+ },
2328
+ {
2329
+ "components": [
2330
+ {
2331
+ "internalType": "NftId",
2332
+ "name": "productNftId",
2333
+ "type": "uint96"
2334
+ },
2335
+ {
2336
+ "internalType": "contract TokenHandler",
2337
+ "name": "tokenHandler",
2338
+ "type": "address"
2339
+ },
2340
+ {
2341
+ "components": [
2342
+ {
2343
+ "internalType": "UFixed",
2344
+ "name": "fractionalFee",
2345
+ "type": "uint256"
2346
+ },
2347
+ {
2348
+ "internalType": "uint256",
2349
+ "name": "fixedFee",
2350
+ "type": "uint256"
2351
+ }
2352
+ ],
2353
+ "internalType": "struct Fee",
2354
+ "name": "distributionFee",
2355
+ "type": "tuple"
2356
+ },
2357
+ {
2358
+ "internalType": "bool",
2359
+ "name": "isIntercepting",
2360
+ "type": "bool"
2361
+ },
2362
+ {
2363
+ "internalType": "address",
2364
+ "name": "wallet",
2365
+ "type": "address"
2366
+ }
2367
+ ],
2368
+ "internalType": "struct ISetup.DistributionSetupInfo",
2369
+ "name": "setup",
2370
+ "type": "tuple"
2371
+ },
2372
+ {
2373
+ "internalType": "StateId",
2374
+ "name": "newState",
2375
+ "type": "uint8"
2376
+ }
2377
+ ],
2378
+ "name": "updateDistributionSetup",
2379
+ "outputs": [],
2380
+ "stateMutability": "nonpayable",
2381
+ "type": "function"
2382
+ },
2383
+ {
2384
+ "inputs": [
2385
+ {
2386
+ "internalType": "NftId",
2387
+ "name": "distributionNftId",
2388
+ "type": "uint96"
2389
+ },
2390
+ {
2391
+ "internalType": "StateId",
2392
+ "name": "newState",
2393
+ "type": "uint8"
2394
+ }
2395
+ ],
2396
+ "name": "updateDistributionSetupState",
2397
+ "outputs": [],
2398
+ "stateMutability": "nonpayable",
2399
+ "type": "function"
2400
+ },
2401
+ {
2402
+ "inputs": [
2403
+ {
2404
+ "internalType": "NftId",
2405
+ "name": "policyNftId",
2406
+ "type": "uint96"
2407
+ },
2408
+ {
2409
+ "internalType": "NumberId",
2410
+ "name": "payoutId",
2411
+ "type": "uint32"
2412
+ },
2413
+ {
2414
+ "components": [
2415
+ {
2416
+ "internalType": "NumberId",
2417
+ "name": "claimId",
2418
+ "type": "uint32"
2419
+ },
2420
+ {
2421
+ "internalType": "uint256",
2422
+ "name": "amount",
2423
+ "type": "uint256"
2424
+ },
2425
+ {
2426
+ "internalType": "bytes",
2427
+ "name": "data",
2428
+ "type": "bytes"
2429
+ },
2430
+ {
2431
+ "internalType": "Timestamp",
2432
+ "name": "paidAt",
2433
+ "type": "uint40"
2434
+ }
2435
+ ],
2436
+ "internalType": "struct IPolicy.PayoutInfo",
2437
+ "name": "payout",
2438
+ "type": "tuple"
2439
+ },
2440
+ {
2441
+ "internalType": "StateId",
2442
+ "name": "newState",
2443
+ "type": "uint8"
2444
+ }
2445
+ ],
2446
+ "name": "updateDistributor",
2447
+ "outputs": [],
2448
+ "stateMutability": "nonpayable",
2449
+ "type": "function"
2450
+ },
2451
+ {
2452
+ "inputs": [
2453
+ {
2454
+ "internalType": "NftId",
2455
+ "name": "policyNftId",
2456
+ "type": "uint96"
2457
+ },
2458
+ {
2459
+ "internalType": "StateId",
2460
+ "name": "newState",
2461
+ "type": "uint8"
2462
+ }
2463
+ ],
2464
+ "name": "updateDistributorState",
2465
+ "outputs": [],
2466
+ "stateMutability": "nonpayable",
2467
+ "type": "function"
2468
+ },
2469
+ {
2470
+ "inputs": [
2471
+ {
2472
+ "internalType": "NftId",
2473
+ "name": "policyNftId",
2474
+ "type": "uint96"
2475
+ },
2476
+ {
2477
+ "internalType": "NumberId",
2478
+ "name": "payoutId",
2479
+ "type": "uint32"
2480
+ },
2481
+ {
2482
+ "components": [
2483
+ {
2484
+ "internalType": "NumberId",
2485
+ "name": "claimId",
2486
+ "type": "uint32"
2487
+ },
2488
+ {
2489
+ "internalType": "uint256",
2490
+ "name": "amount",
2491
+ "type": "uint256"
2492
+ },
2493
+ {
2494
+ "internalType": "bytes",
2495
+ "name": "data",
2496
+ "type": "bytes"
2497
+ },
2498
+ {
2499
+ "internalType": "Timestamp",
2500
+ "name": "paidAt",
2501
+ "type": "uint40"
2502
+ }
2503
+ ],
2504
+ "internalType": "struct IPolicy.PayoutInfo",
2505
+ "name": "payout",
2506
+ "type": "tuple"
2507
+ },
2508
+ {
2509
+ "internalType": "StateId",
2510
+ "name": "newState",
2511
+ "type": "uint8"
2512
+ }
2513
+ ],
2514
+ "name": "updateDistributorType",
2515
+ "outputs": [],
2516
+ "stateMutability": "nonpayable",
2517
+ "type": "function"
2518
+ },
2519
+ {
2520
+ "inputs": [
2521
+ {
2522
+ "internalType": "NftId",
2523
+ "name": "policyNftId",
2524
+ "type": "uint96"
2525
+ },
2526
+ {
2527
+ "internalType": "StateId",
2528
+ "name": "newState",
2529
+ "type": "uint8"
2530
+ }
2531
+ ],
2532
+ "name": "updateDistributorTypeState",
2533
+ "outputs": [],
2534
+ "stateMutability": "nonpayable",
2535
+ "type": "function"
2536
+ },
2537
+ {
2538
+ "inputs": [
2539
+ {
2540
+ "internalType": "NftId",
2541
+ "name": "policyNftId",
2542
+ "type": "uint96"
2543
+ },
2544
+ {
2545
+ "internalType": "StateId",
2546
+ "name": "newState",
2547
+ "type": "uint8"
2548
+ }
2549
+ ],
2550
+ "name": "updatePayoutState",
2551
+ "outputs": [],
2552
+ "stateMutability": "nonpayable",
2553
+ "type": "function"
2554
+ },
2555
+ {
2556
+ "inputs": [
2557
+ {
2558
+ "internalType": "NftId",
2559
+ "name": "policyNftId",
2560
+ "type": "uint96"
2561
+ },
2562
+ {
2563
+ "components": [
2564
+ {
2565
+ "internalType": "NftId",
2566
+ "name": "productNftId",
2567
+ "type": "uint96"
2568
+ },
2569
+ {
2570
+ "internalType": "NftId",
2571
+ "name": "bundleNftId",
2572
+ "type": "uint96"
2573
+ },
2574
+ {
2575
+ "internalType": "ReferralId",
2576
+ "name": "referralId",
2577
+ "type": "bytes8"
2578
+ },
2579
+ {
2580
+ "internalType": "RiskId",
2581
+ "name": "riskId",
2582
+ "type": "bytes8"
2583
+ },
2584
+ {
2585
+ "internalType": "uint256",
2586
+ "name": "sumInsuredAmount",
2587
+ "type": "uint256"
2588
+ },
2589
+ {
2590
+ "internalType": "uint256",
2591
+ "name": "premiumAmount",
2592
+ "type": "uint256"
2593
+ },
2594
+ {
2595
+ "internalType": "uint256",
2596
+ "name": "premiumPaidAmount",
2597
+ "type": "uint256"
2598
+ },
2599
+ {
2600
+ "internalType": "uint256",
2601
+ "name": "lifetime",
2602
+ "type": "uint256"
2603
+ },
2604
+ {
2605
+ "internalType": "bytes",
2606
+ "name": "applicationData",
2607
+ "type": "bytes"
2608
+ },
2609
+ {
2610
+ "internalType": "bytes",
2611
+ "name": "policyData",
2612
+ "type": "bytes"
2613
+ },
2614
+ {
2615
+ "internalType": "uint16",
2616
+ "name": "claimsCount",
2617
+ "type": "uint16"
2618
+ },
2619
+ {
2620
+ "internalType": "uint16",
2621
+ "name": "openClaimsCount",
2622
+ "type": "uint16"
2623
+ },
2624
+ {
2625
+ "internalType": "uint256",
2626
+ "name": "payoutAmount",
2627
+ "type": "uint256"
2628
+ },
2629
+ {
2630
+ "internalType": "Timestamp",
2631
+ "name": "activatedAt",
2632
+ "type": "uint40"
2633
+ },
2634
+ {
2635
+ "internalType": "Timestamp",
2636
+ "name": "expiredAt",
2637
+ "type": "uint40"
2638
+ },
2639
+ {
2640
+ "internalType": "Timestamp",
2641
+ "name": "closedAt",
2642
+ "type": "uint40"
2643
+ }
2644
+ ],
2645
+ "internalType": "struct IPolicy.PolicyInfo",
2646
+ "name": "policy",
2647
+ "type": "tuple"
2648
+ },
2649
+ {
2650
+ "internalType": "StateId",
2651
+ "name": "newState",
2652
+ "type": "uint8"
2653
+ }
2654
+ ],
2655
+ "name": "updatePolicy",
2656
+ "outputs": [],
2657
+ "stateMutability": "nonpayable",
2658
+ "type": "function"
2659
+ },
2660
+ {
2661
+ "inputs": [
2662
+ {
2663
+ "internalType": "NftId",
2664
+ "name": "policyNftId",
2665
+ "type": "uint96"
2666
+ },
2667
+ {
2668
+ "internalType": "StateId",
2669
+ "name": "newState",
2670
+ "type": "uint8"
2671
+ }
2672
+ ],
2673
+ "name": "updatePolicyState",
2674
+ "outputs": [],
2675
+ "stateMutability": "nonpayable",
2676
+ "type": "function"
2677
+ },
2678
+ {
2679
+ "inputs": [
2680
+ {
2681
+ "internalType": "NftId",
2682
+ "name": "distributionNftId",
2683
+ "type": "uint96"
2684
+ },
2685
+ {
2686
+ "components": [
2687
+ {
2688
+ "internalType": "NftId",
2689
+ "name": "productNftId",
2690
+ "type": "uint96"
2691
+ },
2692
+ {
2693
+ "internalType": "contract TokenHandler",
2694
+ "name": "tokenHandler",
2695
+ "type": "address"
2696
+ },
2697
+ {
2698
+ "internalType": "UFixed",
2699
+ "name": "collateralizationLevel",
2700
+ "type": "uint256"
2701
+ },
2702
+ {
2703
+ "components": [
2704
+ {
2705
+ "internalType": "UFixed",
2706
+ "name": "fractionalFee",
2707
+ "type": "uint256"
2708
+ },
2709
+ {
2710
+ "internalType": "uint256",
2711
+ "name": "fixedFee",
2712
+ "type": "uint256"
2713
+ }
2714
+ ],
2715
+ "internalType": "struct Fee",
2716
+ "name": "poolFee",
2717
+ "type": "tuple"
2718
+ },
2719
+ {
2720
+ "components": [
2721
+ {
2722
+ "internalType": "UFixed",
2723
+ "name": "fractionalFee",
2724
+ "type": "uint256"
2725
+ },
2726
+ {
2727
+ "internalType": "uint256",
2728
+ "name": "fixedFee",
2729
+ "type": "uint256"
2730
+ }
2731
+ ],
2732
+ "internalType": "struct Fee",
2733
+ "name": "stakingFee",
2734
+ "type": "tuple"
2735
+ },
2736
+ {
2737
+ "components": [
2738
+ {
2739
+ "internalType": "UFixed",
2740
+ "name": "fractionalFee",
2741
+ "type": "uint256"
2742
+ },
2743
+ {
2744
+ "internalType": "uint256",
2745
+ "name": "fixedFee",
2746
+ "type": "uint256"
2747
+ }
2748
+ ],
2749
+ "internalType": "struct Fee",
2750
+ "name": "performanceFee",
2751
+ "type": "tuple"
2752
+ },
2753
+ {
2754
+ "internalType": "bool",
2755
+ "name": "isIntercepting",
2756
+ "type": "bool"
2757
+ },
2758
+ {
2759
+ "internalType": "address",
2760
+ "name": "wallet",
2761
+ "type": "address"
2762
+ }
2763
+ ],
2764
+ "internalType": "struct ISetup.PoolSetupInfo",
2765
+ "name": "setup",
2766
+ "type": "tuple"
2767
+ },
2768
+ {
2769
+ "internalType": "StateId",
2770
+ "name": "newState",
2771
+ "type": "uint8"
1316
2772
  }
1317
2773
  ],
2774
+ "name": "updatePoolSetup",
2775
+ "outputs": [],
1318
2776
  "stateMutability": "nonpayable",
1319
2777
  "type": "function"
1320
2778
  },
1321
2779
  {
1322
2780
  "inputs": [
1323
- {
1324
- "internalType": "contract IComponentContract",
1325
- "name": "component",
1326
- "type": "address"
1327
- }
1328
- ],
1329
- "name": "registerComponent",
1330
- "outputs": [
1331
2781
  {
1332
2782
  "internalType": "NftId",
1333
- "name": "nftId",
2783
+ "name": "distributionNftId",
1334
2784
  "type": "uint96"
1335
- }
1336
- ],
1337
- "stateMutability": "nonpayable",
1338
- "type": "function"
1339
- },
1340
- {
1341
- "inputs": [
2785
+ },
1342
2786
  {
1343
- "internalType": "NftId",
1344
- "name": "nftId",
1345
- "type": "uint96"
2787
+ "internalType": "StateId",
2788
+ "name": "newState",
2789
+ "type": "uint8"
1346
2790
  }
1347
2791
  ],
1348
- "name": "registerPool",
2792
+ "name": "updatePoolSetupState",
1349
2793
  "outputs": [],
1350
2794
  "stateMutability": "nonpayable",
1351
2795
  "type": "function"
@@ -1354,50 +2798,145 @@
1354
2798
  "inputs": [
1355
2799
  {
1356
2800
  "internalType": "NftId",
1357
- "name": "poolNftId",
2801
+ "name": "productNftId",
1358
2802
  "type": "uint96"
1359
2803
  },
1360
- {
1361
- "internalType": "address",
1362
- "name": "wallet",
1363
- "type": "address"
1364
- },
1365
2804
  {
1366
2805
  "components": [
1367
2806
  {
1368
- "internalType": "UFixed",
1369
- "name": "fractionalFee",
1370
- "type": "uint256"
2807
+ "internalType": "contract IERC20Metadata",
2808
+ "name": "token",
2809
+ "type": "address"
1371
2810
  },
1372
2811
  {
1373
- "internalType": "uint256",
1374
- "name": "fixedFee",
1375
- "type": "uint256"
1376
- }
1377
- ],
1378
- "internalType": "struct Fee",
1379
- "name": "stakingFee",
1380
- "type": "tuple"
1381
- },
1382
- {
1383
- "components": [
2812
+ "internalType": "contract TokenHandler",
2813
+ "name": "tokenHandler",
2814
+ "type": "address"
2815
+ },
1384
2816
  {
1385
- "internalType": "UFixed",
1386
- "name": "fractionalFee",
1387
- "type": "uint256"
2817
+ "internalType": "NftId",
2818
+ "name": "distributionNftId",
2819
+ "type": "uint96"
1388
2820
  },
1389
2821
  {
1390
- "internalType": "uint256",
1391
- "name": "fixedFee",
1392
- "type": "uint256"
2822
+ "internalType": "NftId",
2823
+ "name": "poolNftId",
2824
+ "type": "uint96"
2825
+ },
2826
+ {
2827
+ "components": [
2828
+ {
2829
+ "internalType": "UFixed",
2830
+ "name": "fractionalFee",
2831
+ "type": "uint256"
2832
+ },
2833
+ {
2834
+ "internalType": "uint256",
2835
+ "name": "fixedFee",
2836
+ "type": "uint256"
2837
+ }
2838
+ ],
2839
+ "internalType": "struct Fee",
2840
+ "name": "distributionFee",
2841
+ "type": "tuple"
2842
+ },
2843
+ {
2844
+ "components": [
2845
+ {
2846
+ "internalType": "UFixed",
2847
+ "name": "fractionalFee",
2848
+ "type": "uint256"
2849
+ },
2850
+ {
2851
+ "internalType": "uint256",
2852
+ "name": "fixedFee",
2853
+ "type": "uint256"
2854
+ }
2855
+ ],
2856
+ "internalType": "struct Fee",
2857
+ "name": "productFee",
2858
+ "type": "tuple"
2859
+ },
2860
+ {
2861
+ "components": [
2862
+ {
2863
+ "internalType": "UFixed",
2864
+ "name": "fractionalFee",
2865
+ "type": "uint256"
2866
+ },
2867
+ {
2868
+ "internalType": "uint256",
2869
+ "name": "fixedFee",
2870
+ "type": "uint256"
2871
+ }
2872
+ ],
2873
+ "internalType": "struct Fee",
2874
+ "name": "processingFee",
2875
+ "type": "tuple"
2876
+ },
2877
+ {
2878
+ "components": [
2879
+ {
2880
+ "internalType": "UFixed",
2881
+ "name": "fractionalFee",
2882
+ "type": "uint256"
2883
+ },
2884
+ {
2885
+ "internalType": "uint256",
2886
+ "name": "fixedFee",
2887
+ "type": "uint256"
2888
+ }
2889
+ ],
2890
+ "internalType": "struct Fee",
2891
+ "name": "poolFee",
2892
+ "type": "tuple"
2893
+ },
2894
+ {
2895
+ "components": [
2896
+ {
2897
+ "internalType": "UFixed",
2898
+ "name": "fractionalFee",
2899
+ "type": "uint256"
2900
+ },
2901
+ {
2902
+ "internalType": "uint256",
2903
+ "name": "fixedFee",
2904
+ "type": "uint256"
2905
+ }
2906
+ ],
2907
+ "internalType": "struct Fee",
2908
+ "name": "stakingFee",
2909
+ "type": "tuple"
2910
+ },
2911
+ {
2912
+ "components": [
2913
+ {
2914
+ "internalType": "UFixed",
2915
+ "name": "fractionalFee",
2916
+ "type": "uint256"
2917
+ },
2918
+ {
2919
+ "internalType": "uint256",
2920
+ "name": "fixedFee",
2921
+ "type": "uint256"
2922
+ }
2923
+ ],
2924
+ "internalType": "struct Fee",
2925
+ "name": "performanceFee",
2926
+ "type": "tuple"
1393
2927
  }
1394
2928
  ],
1395
- "internalType": "struct Fee",
1396
- "name": "performanceFee",
2929
+ "internalType": "struct ISetup.ProductSetupInfo",
2930
+ "name": "setup",
1397
2931
  "type": "tuple"
2932
+ },
2933
+ {
2934
+ "internalType": "StateId",
2935
+ "name": "newState",
2936
+ "type": "uint8"
1398
2937
  }
1399
2938
  ],
1400
- "name": "registerPool",
2939
+ "name": "updateProductSetup",
1401
2940
  "outputs": [],
1402
2941
  "stateMutability": "nonpayable",
1403
2942
  "type": "function"
@@ -1410,61 +2949,62 @@
1410
2949
  "type": "uint96"
1411
2950
  },
1412
2951
  {
1413
- "internalType": "NftId",
1414
- "name": "distributorNftId",
1415
- "type": "uint96"
1416
- },
2952
+ "internalType": "StateId",
2953
+ "name": "newState",
2954
+ "type": "uint8"
2955
+ }
2956
+ ],
2957
+ "name": "updateProductSetupState",
2958
+ "outputs": [],
2959
+ "stateMutability": "nonpayable",
2960
+ "type": "function"
2961
+ },
2962
+ {
2963
+ "inputs": [
1417
2964
  {
1418
2965
  "internalType": "NftId",
1419
- "name": "poolNftId",
2966
+ "name": "policyNftId",
1420
2967
  "type": "uint96"
1421
2968
  },
1422
2969
  {
1423
- "internalType": "contract IERC20",
1424
- "name": "token",
1425
- "type": "address"
1426
- },
1427
- {
1428
- "internalType": "address",
1429
- "name": "wallet",
1430
- "type": "address"
2970
+ "internalType": "NumberId",
2971
+ "name": "payoutId",
2972
+ "type": "uint32"
1431
2973
  },
1432
2974
  {
1433
2975
  "components": [
1434
2976
  {
1435
- "internalType": "UFixed",
1436
- "name": "fractionalFee",
1437
- "type": "uint256"
2977
+ "internalType": "NumberId",
2978
+ "name": "claimId",
2979
+ "type": "uint32"
1438
2980
  },
1439
2981
  {
1440
2982
  "internalType": "uint256",
1441
- "name": "fixedFee",
2983
+ "name": "amount",
1442
2984
  "type": "uint256"
1443
- }
1444
- ],
1445
- "internalType": "struct Fee",
1446
- "name": "policyFee",
1447
- "type": "tuple"
1448
- },
1449
- {
1450
- "components": [
2985
+ },
1451
2986
  {
1452
- "internalType": "UFixed",
1453
- "name": "fractionalFee",
1454
- "type": "uint256"
2987
+ "internalType": "bytes",
2988
+ "name": "data",
2989
+ "type": "bytes"
1455
2990
  },
1456
2991
  {
1457
- "internalType": "uint256",
1458
- "name": "fixedFee",
1459
- "type": "uint256"
2992
+ "internalType": "Timestamp",
2993
+ "name": "paidAt",
2994
+ "type": "uint40"
1460
2995
  }
1461
2996
  ],
1462
- "internalType": "struct Fee",
1463
- "name": "processingFee",
2997
+ "internalType": "struct IPolicy.PayoutInfo",
2998
+ "name": "payout",
1464
2999
  "type": "tuple"
3000
+ },
3001
+ {
3002
+ "internalType": "StateId",
3003
+ "name": "newState",
3004
+ "type": "uint8"
1465
3005
  }
1466
3006
  ],
1467
- "name": "registerProduct",
3007
+ "name": "updateReferral",
1468
3008
  "outputs": [],
1469
3009
  "stateMutability": "nonpayable",
1470
3010
  "type": "function"
@@ -1472,100 +3012,70 @@
1472
3012
  {
1473
3013
  "inputs": [
1474
3014
  {
1475
- "internalType": "bytes32",
1476
- "name": "role",
1477
- "type": "bytes32"
3015
+ "internalType": "NftId",
3016
+ "name": "policyNftId",
3017
+ "type": "uint96"
1478
3018
  },
1479
3019
  {
1480
- "internalType": "address",
1481
- "name": "member",
1482
- "type": "address"
3020
+ "internalType": "StateId",
3021
+ "name": "newState",
3022
+ "type": "uint8"
1483
3023
  }
1484
3024
  ],
1485
- "name": "revokeRole",
3025
+ "name": "updateReferralState",
1486
3026
  "outputs": [],
1487
3027
  "stateMutability": "nonpayable",
1488
3028
  "type": "function"
1489
3029
  },
1490
3030
  {
1491
3031
  "inputs": [
3032
+ {
3033
+ "internalType": "RiskId",
3034
+ "name": "riskId",
3035
+ "type": "bytes8"
3036
+ },
1492
3037
  {
1493
3038
  "components": [
1494
3039
  {
1495
3040
  "internalType": "NftId",
1496
- "name": "nftId",
3041
+ "name": "productNftId",
1497
3042
  "type": "uint96"
1498
3043
  },
1499
3044
  {
1500
- "internalType": "StateId",
1501
- "name": "state",
1502
- "type": "uint8"
1503
- },
1504
- {
1505
- "internalType": "contract IERC20Metadata",
1506
- "name": "token",
1507
- "type": "address"
3045
+ "internalType": "bytes",
3046
+ "name": "data",
3047
+ "type": "bytes"
1508
3048
  }
1509
3049
  ],
1510
- "internalType": "struct IComponent.ComponentInfo",
1511
- "name": "info",
3050
+ "internalType": "struct IRisk.RiskInfo",
3051
+ "name": "risk",
1512
3052
  "type": "tuple"
1513
- }
1514
- ],
1515
- "name": "setComponentInfo",
1516
- "outputs": [
3053
+ },
1517
3054
  {
1518
- "internalType": "NftId",
1519
- "name": "nftId",
1520
- "type": "uint96"
3055
+ "internalType": "StateId",
3056
+ "name": "newState",
3057
+ "type": "uint8"
1521
3058
  }
1522
3059
  ],
3060
+ "name": "updateRisk",
3061
+ "outputs": [],
1523
3062
  "stateMutability": "nonpayable",
1524
3063
  "type": "function"
1525
3064
  },
1526
3065
  {
1527
3066
  "inputs": [
1528
3067
  {
1529
- "internalType": "NftId",
1530
- "name": "poolNftId",
1531
- "type": "uint96"
1532
- },
1533
- {
1534
- "components": [
1535
- {
1536
- "internalType": "UFixed",
1537
- "name": "fractionalFee",
1538
- "type": "uint256"
1539
- },
1540
- {
1541
- "internalType": "uint256",
1542
- "name": "fixedFee",
1543
- "type": "uint256"
1544
- }
1545
- ],
1546
- "internalType": "struct Fee",
1547
- "name": "stakingFee",
1548
- "type": "tuple"
3068
+ "internalType": "RiskId",
3069
+ "name": "riskId",
3070
+ "type": "bytes8"
1549
3071
  },
1550
3072
  {
1551
- "components": [
1552
- {
1553
- "internalType": "UFixed",
1554
- "name": "fractionalFee",
1555
- "type": "uint256"
1556
- },
1557
- {
1558
- "internalType": "uint256",
1559
- "name": "fixedFee",
1560
- "type": "uint256"
1561
- }
1562
- ],
1563
- "internalType": "struct Fee",
1564
- "name": "performanceFee",
1565
- "type": "tuple"
3073
+ "internalType": "StateId",
3074
+ "name": "newState",
3075
+ "type": "uint8"
1566
3076
  }
1567
3077
  ],
1568
- "name": "setPoolFees",
3078
+ "name": "updateRiskState",
1569
3079
  "outputs": [],
1570
3080
  "stateMutability": "nonpayable",
1571
3081
  "type": "function"
@@ -1573,46 +3083,22 @@
1573
3083
  {
1574
3084
  "inputs": [
1575
3085
  {
1576
- "internalType": "NftId",
1577
- "name": "productNftId",
1578
- "type": "uint96"
3086
+ "internalType": "RoleId",
3087
+ "name": "roleId",
3088
+ "type": "uint64"
1579
3089
  },
1580
3090
  {
1581
- "components": [
1582
- {
1583
- "internalType": "UFixed",
1584
- "name": "fractionalFee",
1585
- "type": "uint256"
1586
- },
1587
- {
1588
- "internalType": "uint256",
1589
- "name": "fixedFee",
1590
- "type": "uint256"
1591
- }
1592
- ],
1593
- "internalType": "struct Fee",
1594
- "name": "policyFee",
1595
- "type": "tuple"
3091
+ "internalType": "string",
3092
+ "name": "name",
3093
+ "type": "string"
1596
3094
  },
1597
3095
  {
1598
- "components": [
1599
- {
1600
- "internalType": "UFixed",
1601
- "name": "fractionalFee",
1602
- "type": "uint256"
1603
- },
1604
- {
1605
- "internalType": "uint256",
1606
- "name": "fixedFee",
1607
- "type": "uint256"
1608
- }
1609
- ],
1610
- "internalType": "struct Fee",
1611
- "name": "processingFee",
1612
- "type": "tuple"
3096
+ "internalType": "StateId",
3097
+ "name": "newState",
3098
+ "type": "uint8"
1613
3099
  }
1614
3100
  ],
1615
- "name": "setProductFees",
3101
+ "name": "updateRole",
1616
3102
  "outputs": [],
1617
3103
  "stateMutability": "nonpayable",
1618
3104
  "type": "function"
@@ -1620,104 +3106,404 @@
1620
3106
  {
1621
3107
  "inputs": [
1622
3108
  {
1623
- "internalType": "NftId",
1624
- "name": "policyNftId",
1625
- "type": "uint96"
3109
+ "internalType": "RoleId",
3110
+ "name": "roleId",
3111
+ "type": "uint64"
1626
3112
  },
1627
3113
  {
1628
- "internalType": "NftId",
1629
- "name": "productNftId",
1630
- "type": "uint96"
3114
+ "internalType": "StateId",
3115
+ "name": "newState",
3116
+ "type": "uint8"
1631
3117
  }
1632
3118
  ],
1633
- "name": "underwrite",
3119
+ "name": "updateRoleState",
1634
3120
  "outputs": [],
1635
3121
  "stateMutability": "nonpayable",
1636
3122
  "type": "function"
1637
3123
  }
1638
3124
  ],
1639
- "bytecode": "0x60e06040523480156200001157600080fd5b506040516200a33c3803806200a33c833981810160405281019062000037919062000e1a565b808182848680806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505033600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620001066040518060400160405280600c81526020017f50726f647563744f776e657200000000000000000000000000000000000000008152506200050560201b60201c565b60808181525050620001536040518060400160405280600b81526020017f4f7261636c654f776e65720000000000000000000000000000000000000000008152506200050560201b60201c565b60a08181525050620001a06040518060400160405280600981526020017f506f6f6c4f776e657200000000000000000000000000000000000000000000008152506200050560201b60201c565b60c08181525050620001c7620001bb6200054460201b60201c565b6200055d60201b60201c565b620001e7620001db6200071b60201b60201c565b6200055d60201b60201c565b62000207620001fb6200073460201b60201c565b6200055d60201b60201c565b620002176200074d60201b60201c565b620002276200094660201b60201c565b600030905080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505030601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505030601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555030601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505030601c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506200128a565b60008060405180606001604052806000801b81526020018481526020016001151581525090506200053c8162000bcc60201b60201c565b915050919050565b600062000558603c62000c8960201b60201c565b905090565b6200056d62000c9360201b60201c565b600660008360ff1660ff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506001600760008360ff1660ff1681526020019081526020016000206000620005cb62000c9360201b60201c565b60ff1660ff1681526020019081526020016000206000620005f162000cac60201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760008360ff1660ff16815260200190815260200160002060006200064962000cac60201b60201c565b60ff1660ff16815260200190815260200160002060006200066f62000c9360201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760008360ff1660ff1681526020019081526020016000206000620006c762000cac60201b60201c565b60ff1660ff1681526020019081526020016000206000620006ed62000cc560201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006200072f604662000c8960201b60201c565b905090565b600062000748605062000c8960201b60201c565b905090565b6200075d62000c9360201b60201c565b600660006200077162000cde60201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550600160076000620007b362000cde60201b60201c565b60ff1660ff1681526020019081526020016000206000620007d962000c9360201b60201c565b60ff1660ff1681526020019081526020016000206000620007ff62000cac60201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760006200084062000cde60201b60201c565b60ff1660ff16815260200190815260200160002060006200086662000cac60201b60201c565b60ff1660ff16815260200190815260200160002060006200088c62000c9360201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000620008cd62000cde60201b60201c565b60ff1660ff1681526020019081526020016000206000620008f362000cac60201b60201c565b60ff1660ff16815260200190815260200160002060006200091962000cf760201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b6200095662000d1060201b60201c565b600660006200096a62000d2960201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550600160076000620009ac62000d2960201b60201c565b60ff1660ff1681526020019081526020016000206000620009d262000d1060201b60201c565b60ff1660ff1681526020019081526020016000206000620009f862000d4260201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016007600062000a3962000d2960201b60201c565b60ff1660ff168152602001908152602001600020600062000a5f62000d1060201b60201c565b60ff1660ff168152602001908152602001600020600062000a8562000d5b60201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016007600062000ac662000d2960201b60201c565b60ff1660ff168152602001908152602001600020600062000aec62000d1060201b60201c565b60ff1660ff168152602001908152602001600020600062000b1262000c9360201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016007600062000b5362000d2960201b60201c565b60ff1660ff168152602001908152602001600020600062000b7962000c9360201b60201c565b60ff1660ff168152602001908152602001600020600062000b9f62000cf760201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b6000816000015190506000801b810362000c2b5762000bf5826020015162000d7460201b60201c565b90508082600001818152505060038190806001815401808255809150506001900390600052602060002001600090919091909150555b816002600083815260200190815260200160002060008201518160000155602082015181600101908162000c609190620010f0565b5060408201518160020160006101000a81548160ff021916908315150217905550905050919050565b6000819050919050565b600062000ca7606462000da660201b60201c565b905090565b600062000cc0606e62000da660201b60201c565b905090565b600062000cd960d262000da660201b60201c565b905090565b600062000cf2605162000c8960201b60201c565b905090565b600062000d0b60c862000da660201b60201c565b905090565b600062000d24600a62000da660201b60201c565b905090565b600062000d3d605a62000c8960201b60201c565b905090565b600062000d56601462000da660201b60201c565b905090565b600062000d6f601e62000da660201b60201c565b905090565b60008160405160200162000d89919062001266565b604051602081830303815290604052805190602001209050919050565b6000819050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000de28262000db5565b9050919050565b62000df48162000dd5565b811462000e0057600080fd5b50565b60008151905062000e148162000de9565b92915050565b60008060006060848603121562000e365762000e3562000db0565b5b600062000e468682870162000e03565b935050602062000e598682870162000e03565b925050604062000e6c8682870162000e03565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ef857607f821691505b60208210810362000f0e5762000f0d62000eb0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000f787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000f39565b62000f84868362000f39565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000fd162000fcb62000fc58462000f9c565b62000fa6565b62000f9c565b9050919050565b6000819050919050565b62000fed8362000fb0565b6200100562000ffc8262000fd8565b84845462000f46565b825550505050565b600090565b6200101c6200100d565b6200102981848462000fe2565b505050565b5b8181101562001051576200104560008262001012565b6001810190506200102f565b5050565b601f821115620010a0576200106a8162000f14565b620010758462000f29565b8101602085101562001085578190505b6200109d620010948562000f29565b8301826200102e565b50505b505050565b600082821c905092915050565b6000620010c560001984600802620010a5565b1980831691505092915050565b6000620010e08383620010b2565b9150826002028217905092915050565b620010fb8262000e76565b67ffffffffffffffff81111562001117576200111662000e81565b5b62001123825462000edf565b6200113082828562001055565b600060209050601f83116001811462001168576000841562001153578287015190505b6200115f8582620010d2565b865550620011cf565b601f198416620011788662000f14565b60005b82811015620011a2578489015182556001820191506020850194506020810190506200117b565b86831015620011c25784890151620011be601f891682620010b2565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b60005b8381101562001208578082015181840152602081019050620011eb565b60008484015250505050565b6000601f19601f8301169050919050565b6000620012328262000e76565b6200123e8185620011d7565b935062001250818560208601620011e8565b6200125b8162001214565b840191505092915050565b6000602082019050818103600083015262001282818462001225565b905092915050565b60805160a05160c051619082620012ba6000396000611c4b0152600061160601526000612ea201526190826000f3fe60806040523480156200001157600080fd5b5060043610620003f45760003560e01c80637ff826131162000219578063bd7d9d851162000129578063e9e96c7011620000bd578063f174ce191162000087578063f174ce191462000ce5578063f274e87d1462000d07578063fb2cb1011462000d3e578063fc0ae0541462000d6057620003f4565b8063e9e96c701462000c37578063eb71e8c41462000c6d578063eb7f494d1462000c8f578063f0ea17c31462000caf57620003f4565b8063ca38559811620000ff578063ca3855981462000bb7578063d0bb064c1462000bd7578063d547741f1462000bf7578063dc261c3a1462000c1757620003f4565b8063bd7d9d851462000b15578063be409a111462000b4b578063ca15c8731462000b8157620003f4565b80639cad005211620001ad578063b90915521162000177578063b90915521462000a7b578063ba62fbe41462000a9d578063bce395231462000abf578063bd62faf71462000adf57620003f4565b80639cad005214620009a3578063a310e2a314620009d9578063a7f3669b1462000a0f578063af17d38a1462000a4557620003f4565b80638aa03b6b11620001ef5780638aa03b6b14620008f55780639010d07c146200091757806391d14854146200094d57806393865aec146200098357620003f4565b80637ff82613146200089157806383d3331914620008b1578063893d20e814620008d357620003f4565b80633300a8a811620003155780636078a3b211620002a95780636fa2985311620002735780636fa2985314620007f757806379e829d014620008195780637c4a13b1146200083b5780637fec8b31146200085b57620003f4565b80636078a3b2146200075d578063644c45e014620007935780636c137ea914620007b55780636ce5caea14620007d757620003f4565b80634fd077f511620002eb5780634fd077f514620006995780635312fdc214620006cf57806357f80bbf14620007055780635ab1bd53146200073b57620003f4565b80633300a8a8146200061f5780633bc5de3014620006555780634288121d146200067757620003f4565b806322366844116200038d5780632f2ff15d11620003635780632f2ff15d146200059b57806331b62a3b14620005bb57806331e48e3214620005dd57806332e3a6e914620005fd57620003f4565b80632236684414620005215780632a5f6e8514620005435780632b1c7f73146200056557620003f4565b806313f7dcfc11620003cf57806313f7dcfc146200048757806315dae03e14620004a75780631aa3a00814620004c95780632064717e14620004eb57620003f4565b806301ed760414620003f957806302393c41146200042f5780630d3581811462000451575b600080fd5b62000417600480360381019062000411919062006000565b62000d96565b60405162000426919062006075565b60405180910390f35b6200043962000de7565b604051620004489190620060ad565b60405180910390f35b6200046f600480360381019062000469919062006108565b62000df0565b6040516200047e919062006173565b60405180910390f35b620004a560048036038101906200049f919062006000565b62000e20565b005b620004b162000f00565b604051620004c09190620061a1565b60405180910390f35b620004d362000f11565b604051620004e2919062006075565b60405180910390f35b62000509600480360381019062000503919062006389565b6200104a565b60405162000518919062006075565b60405180910390f35b6200052b620014cb565b6040516200053a919062006445565b60405180910390f35b6200054d62001602565b6040516200055c91906200647d565b60405180910390f35b6200058360048036038101906200057d91906200649a565b6200162a565b60405162000592919062006075565b60405180910390f35b620005b96004803603810190620005b39190620064fd565b6200168b565b005b620005c56200195d565b604051620005d4919062006075565b60405180910390f35b620005fb6004803603810190620005f5919062006613565b62001970565b005b6200060762001c47565b6040516200061691906200647d565b60405180910390f35b6200063d600480360381019062000637919062006000565b62001c6f565b6040516200064c9190620067c3565b60405180910390f35b6200065f62001d9e565b6040516200066e919062006869565b60405180910390f35b6200068162001dc8565b604051620006909190620068ee565b60405180910390f35b620006b76004803603810190620006b1919062006000565b62001df2565b604051620006c6919062006a08565b60405180910390f35b620006ed6004803603810190620006e7919062006a26565b6200204a565b604051620006fc91906200647d565b60405180910390f35b6200072360048036038101906200071d919062006000565b62002075565b60405162000732919062006aa0565b60405180910390f35b6200074562002112565b60405162000754919062006ae2565b60405180910390f35b6200077b600480360381019062000775919062006b44565b6200213b565b6040516200078a919062006075565b60405180910390f35b6200079d62002df7565b604051620007ac919062006075565b60405180910390f35b620007bf62002e9e565b604051620007ce91906200647d565b60405180910390f35b620007f56004803603810190620007ef919062006b76565b62002ec6565b005b6200080162003504565b60405162000810919062006be2565b60405180910390f35b620008236200352e565b60405162000832919062006445565b60405180910390f35b62000859600480360381019062000853919062006bff565b62003537565b005b62000879600480360381019062000873919062006a26565b62003764565b60405162000888919062006075565b60405180910390f35b620008af6004803603810190620008a9919062006000565b620037b2565b005b620008bb62003987565b604051620008ca9190620060ad565b60405180910390f35b620008dd62003994565b604051620008ec919062006c42565b60405180910390f35b620008ff62003b3f565b6040516200090e9190620060ad565b60405180910390f35b6200093560048036038101906200092f919062006c5f565b62003b44565b60405162000944919062006c42565b60405180910390f35b6200096b6004803603810190620009659190620064fd565b62003b75565b6040516200097a919062006445565b60405180910390f35b620009a160048036038101906200099b919062006ca6565b62003bdd565b005b620009c16004803603810190620009bb919062006dcf565b62003c4e565b604051620009d091906200647d565b60405180910390f35b620009f76004803603810190620009f1919062006000565b62003c80565b60405162000a06919062006e31565b60405180910390f35b62000a2d600480360381019062000a27919062006e7f565b62003cdc565b60405162000a3c919062006173565b60405180910390f35b62000a63600480360381019062000a5d919062006dcf565b62003f21565b60405162000a7291906200647d565b60405180910390f35b62000a8562004017565b60405162000a94919062006f4e565b60405180910390f35b62000aa762004050565b60405162000ab69190620060ad565b60405180910390f35b62000add600480360381019062000ad7919062006b76565b6200405d565b005b62000afd600480360381019062000af7919062007026565b6200440e565b60405162000b0c919062006075565b60405180910390f35b62000b33600480360381019062000b2d919062006000565b62004918565b60405162000b42919062007160565b60405180910390f35b62000b69600480360381019062000b63919062006bff565b62004a19565b60405162000b78919062007248565b60405180910390f35b62000b9f600480360381019062000b99919062006bff565b62004b07565b60405162000bae9190620060ad565b60405180910390f35b62000bd5600480360381019062000bcf919062006000565b62004b2d565b005b62000bf5600480360381019062000bef91906200726c565b62004cf5565b005b62000c15600480360381019062000c0f9190620064fd565b62004e2e565b005b62000c35600480360381019062000c2f919062006ca6565b62005000565b005b62000c55600480360381019062000c4f9190620072de565b62005071565b60405162000c64919062006445565b60405180910390f35b62000c77620050d1565b60405162000c86919062006f4e565b60405180910390f35b62000cad600480360381019062000ca7919062006bff565b6200510a565b005b62000ccd600480360381019062000cc7919062006000565b62005337565b60405162000cdc9190620073a7565b60405180910390f35b62000cef62005433565b60405162000cfe919062006f4e565b60405180910390f35b62000d25600480360381019062000d1f9190620073c4565b6200546c565b60405162000d359291906200740b565b60405180910390f35b62000d48620055a7565b60405162000d57919062006c42565b60405180910390f35b62000d7e600480360381019062000d78919062006108565b620055d1565b60405162000d8d91906200647d565b60405180910390f35b600060116000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff169050919050565b6402540be40081565b6000600660008360ff1660ff16815260200190815260200160002060009054906101000a900460ff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000eb3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000eaa90620074ae565b60405180910390fd5b600060106000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000209050806002015481600301819055504281600601819055505050565b600062000f0c62005798565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160362000fa4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f9b9062007520565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000fff919062006c42565b6020604051808303816000875af11580156200101f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001045919062007559565b905090565b60003373ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620010df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010d690620074ae565b60405180910390fd5b816bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b81526004016200112891906200759c565b602060405180830381865af415801562001146573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200116c9190620075ea565b503073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620011b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620011df919062007661565b73ffffffffffffffffffffffffffffffffffffffff16631d1b0cac886000015162001209620057ab565b896040518463ffffffff1660e01b81526004016200122a9392919062007693565b6020604051808303816000875af11580156200124a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001270919062007559565b9050604051806101600160405280826bffffffffffffffffffffffff168152602001601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630d358181620012da620057ab565b6040518263ffffffff1660e01b8152600401620012f89190620061a1565b602060405180830381865afa15801562001316573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200133c9190620076e7565b60ff168152602001868152602001858152602001600081526020018481526020014281526020014281526020016000815260200160008152602001600081525060106000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548160ff021916908360ff16021790555060408201518160010155606082015181600201556080820151816003015560a0820151816004015560c0820151816005015560e082015181600601556101008201518160070155610120820151816008015561014082015181600901559050508160116000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509695505050505050565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b815260040162001529919062006c42565b602060405180830381865afa15801562001547573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200156d919062007559565b9050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b8152600401620015b891906200759c565b602060405180830381865af4158015620015d6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620015fc9190620075ea565b91505090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff169050919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015620016d7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620016fd919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200176d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200176490620077b2565b60405180910390fd5b81600260008481526020019081526020016000206000015414620017c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620017bf9062007824565b60405180910390fd5b6002600083815260200190815260200160002060020160009054906101000a900460ff166200182e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018259062007896565b60405180910390fd5b60016004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620018be8160056000858152602001908152602001600020620057be90919063ffffffff16565b507f9a2df6ca1a9ab5e734f2f076b73fd00974eca8e06b9895f8f4eaebb590cc09a582826004600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166040516200195193929190620078b8565b60405180910390a15050565b60006200196b6000620057f0565b905090565b600084604051620019819062005d56565b6200198d919062006c42565b604051809103906000f080158015620019aa573d6000803e3d6000fd5b509050604051806101000160405280896bffffffffffffffffffffffff168152602001886bffffffffffffffffffffffff168152602001876bffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815250601960008a6bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555060408201518160010160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550606082015181600101600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060808201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060a08201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060c0820151816004016000820151816000015560208201518160010155505060e082015181600601600082015181600001556020820151816001015550509050505050505050505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b62001c7962005d64565b601b6000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182016040518060400160405290816000820154815260200160018201548152505081526020016003820160405180604001604052908160008201548152602001600182015481525050815250509050919050565b6060600060405160200162001db4919062007938565b604051602081830303815290604052905090565b6000601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62001dfc62005dc0565b60196000836bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020604051806101000160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016001820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160018201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600482016040518060400160405290816000820154815260200160018201548152505081526020016006820160405180604001604052908160008201548152602001600182015481525050815250509050919050565b60006003828154811062002063576200206262007955565b5b90600052602060002001549050919050565b6200207f62005e81565b60146000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001600182015481526020016002820154815250509050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60003373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620021d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620021c790620079d4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200221e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002244919062007a0d565b905060006200225382620055d1565b90503073ffffffffffffffffffffffffffffffffffffffff166391d14854828673ffffffffffffffffffffffffffffffffffffffff1663fb2cb1016040518163ffffffff1660e01b8152600401602060405180830381865afa158015620022be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620022e4919062007730565b6040518363ffffffff1660e01b81526004016200230392919062007a3f565b602060405180830381865afa15801562002321573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620023479190620075ea565b62002389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620023809062007abc565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620023d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620023fb919062007661565b73ffffffffffffffffffffffffffffffffffffffff16634420e486856040518263ffffffff1660e01b815260040162002435919062006c42565b6020604051808303816000875af115801562002455573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200247b919062007559565b925060008473ffffffffffffffffffffffffffffffffffffffff166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa158015620024cb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620024f1919062007af5565b905060008573ffffffffffffffffffffffffffffffffffffffff1663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002541573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002567919062007730565b90506040518060600160405280866bffffffffffffffffffffffff168152602001600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630d358181876040518263ffffffff1660e01b8152600401620025e59190620061a1565b602060405180830381865afa15801562002603573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620026299190620076e7565b60ff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681525060086000876bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548160ff021916908360ff16021790555060408201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050620027a28673ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200276c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002792919062007a0d565b6200279c620057fa565b6200580d565b1562002a8657600086905060008173ffffffffffffffffffffffffffffffffffffffff16631bdd6b766040518163ffffffff1660e01b8152600401602060405180830381865afa158015620027fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002821919062007559565b9050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b81526004016200286c91906200759c565b602060405180830381865af41580156200288a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620028b09190620075ea565b620028f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620028e99062007b77565b60405180910390fd5b6000620028fe62005820565b9050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e48e3289838589898973ffffffffffffffffffffffffffffffffffffffff1663bc74aab06040518163ffffffff1660e01b81526004016040805180830381865afa1580156200298e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620029b4919062007c20565b8a73ffffffffffffffffffffffffffffffffffffffff1663daafed406040518163ffffffff1660e01b81526004016040805180830381865afa158015620029ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002a25919062007c20565b6040518863ffffffff1660e01b815260040162002a49979695949392919062007c96565b600060405180830381600087803b15801562002a6457600080fd5b505af115801562002a79573d6000803e3d6000fd5b5050505050505062002d22565b62002b0c8673ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002ad6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002afc919062007a0d565b62002b0662005825565b6200580d565b1562002d21576000869050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ca385598876040518263ffffffff1660e01b815260040162002b74919062006075565b600060405180830381600087803b15801562002b8f57600080fd5b505af115801562002ba4573d6000803e3d6000fd5b50505050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0bb064c87848473ffffffffffffffffffffffffffffffffffffffff16634b270a466040518163ffffffff1660e01b81526004016040805180830381865afa15801562002c33573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002c59919062007c20565b8573ffffffffffffffffffffffffffffffffffffffff1663235c36036040518163ffffffff1660e01b81526004016040805180830381865afa15801562002ca4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002cca919062007c20565b6040518563ffffffff1660e01b815260040162002ceb949392919062007d14565b600060405180830381600087803b15801562002d0657600080fd5b505af115801562002d1b573d6000803e3d6000fd5b50505050505b5b84600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550600a859080600181540180825580915050600190039060005260206000209060029182820401919006600c029091909190916101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555050505050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b815260040162002e55919062006c42565b602060405180830381865afa15801562002e73573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002e99919062007559565b905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bd7d9d85846040518263ffffffff1660e01b815260040162002f25919062006075565b61016060405180830381865afa15801562002f44573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002f6a919062007e88565b905062002f7c81600001518462005838565b62002fbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002fb59062007f0b565b60405180910390fd5b600060196000846bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020604051806101000160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016001820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160018201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160048201604051806040016040529081600082015481526020016001820154815250508152602001600682016040518060400160405290816000820154815260200160018201548152505081525050905060008160800151905060003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003260573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003286919062007661565b73ffffffffffffffffffffffffffffffffffffffff1663df33330b876040518263ffffffff1660e01b8152600401620032c0919062006075565b602060405180830381865afa158015620032de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003304919062007730565b90506000601b600085604001516bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020600001600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050620033708460c0015162005861565b15620033f3578273ffffffffffffffffffffffffffffffffffffffff1663beabacc8838388606001516040518463ffffffff1660e01b8152600401620033b99392919062007f2d565b600060405180830381600087803b158015620033d457600080fd5b505af1158015620033e9573d6000803e3d6000fd5b50505050620034fb565b6000806200340a87606001518760c001516200546c565b915091508473ffffffffffffffffffffffffffffffffffffffff1663beabacc8858860a00151856040518463ffffffff1660e01b8152600401620034519392919062007f2d565b600060405180830381600087803b1580156200346c57600080fd5b505af115801562003481573d6000803e3d6000fd5b505050508473ffffffffffffffffffffffffffffffffffffffff1663beabacc88585846040518463ffffffff1660e01b8152600401620034c49392919062007f2d565b600060405180830381600087803b158015620034df57600080fd5b505af1158015620034f4573d6000803e3d6000fd5b5050505050505b50505050505050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006001905090565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003583573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620035a9919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462003619576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200361090620077b2565b60405180910390fd5b60006002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054620036559062007f99565b80601f0160208091040260200160405190810160405280929190818152602001828054620036839062007f99565b8015620036d45780601f10620036a857610100808354040283529160200191620036d4565b820191906000526020600020905b815481529060010190602001808311620036b657829003601f168201915b505050505081526020016002820160009054906101000a900460ff16151515158152505090508181600001511462003743576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200373a9062008044565b60405180910390fd5b60008160400190151590811515815250506200375f8162005882565b505050565b6000600a82815481106200377d576200377c62007955565b5b9060005260206000209060029182820401919006600c029054906101000a90046bffffffffffffffffffffffff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462003845576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200383c90620074ae565b60405180910390fd5b600060106000836bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020905042816007018190555080600401544262003893919062008095565b8160080181905550601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a7f3669b83620038e4620057ab565b84600001600c9054906101000a900460ff166200390062005939565b6040518563ffffffff1660e01b8152600401620039219493929190620080d0565b6020604051808303816000875af115801562003941573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620039679190620076e7565b81600001600c6101000a81548160ff021916908360ff1602179055505050565b6000600380549050905090565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b8152600401620039f2919062006c42565b602060405180830381865afa15801562003a10573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003a36919062007559565b905060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663df33330b826040518263ffffffff1660e01b815260040162003a93919062006075565b602060405180830381865afa15801562003ab1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003ad7919062007730565b9150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362003b3757600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662003b39565b815b91505090565b600081565b600062003b6d82600560008681526020019081526020016000206200594c90919063ffffffff16565b905092915050565b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601b6000856bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000209050828160010160008201518160000155602082015181600101559050508181600301600082015181600001556020820151816001015590505050505050565b60008160405160200162003c63919062006f4e565b604051602081830303815290604052805190602001209050919050565b600060196000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600760008560ff1660ff16815260200190815260200160002060008460ff1660ff16815260200190815260200160002060008360ff1660ff16815260200190815260200160002060009054906101000a900460ff1662003d7d57848484846040517f33760ddc00000000000000000000000000000000000000000000000000000000815260040162003d749493929190620080d0565b60405180910390fd5b62003d928462003d8c620057ab565b6200580d565b1562003ddb577f3453c320908f5844705a0f2acbb230412df911a60544eca9236d16f5f9f1f6f685848460405162003dcd939291906200811d565b60405180910390a162003f16565b62003df08462003dea62005968565b6200580d565b1562003e39577f92e25bf636cb4bfa6edf8b4fa57c0d64b6d959e3c6376d17c9bcc168fe36be1985848460405162003e2b939291906200811d565b60405180910390a162003f15565b62003e4e8462003e48620057fa565b6200580d565b8062003e6b575062003e6a8462003e646200597b565b6200580d565b5b8062003e88575062003e878462003e8162005825565b6200580d565b5b1562003ed3577fcc75054af33cdb7ef0c6dd9d4cb6f22e1dc2d22204db49d769d5da19579fb84e8585858560405162003ec59493929190620080d0565b60405180910390a162003f14565b84846040517f092b31d400000000000000000000000000000000000000000000000000000000815260040162003f0b9291906200815a565b60405180910390fd5b5b5b819050949350505050565b60003073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003f6f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003f95919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462004005576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162003ffc90620077b2565b60405180910390fd5b62004010826200598e565b9050919050565b6040518060400160405280600b81526020017f4f7261636c654f776e657200000000000000000000000000000000000000000081525081565b6000600a80549050905090565b3373ffffffffffffffffffffffffffffffffffffffff16601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620040f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620040e790620074ae565b60405180910390fd5b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bd7d9d85846040518263ffffffff1660e01b81526004016200414f919062006075565b61016060405180830381865afa1580156200416e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062004194919062007e88565b9050620041a681600001518462005838565b620041e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620041df90620081d7565b60405180910390fd5b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634fd077f5846040518263ffffffff1660e01b815260040162004247919062006075565b61014060405180830381865afa15801562004266573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200428c919062008335565b90506200429e81600001518462005838565b620042e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620042d790620083de565b60405180910390fd5b600081604001519050600060146000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000209050620043448160000160009054906101000a90046bffffffffffffffffffffffff168362005838565b62004386576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200437d9062008450565b60405180910390fd5b836040015181600201548260010154620043a1919062008472565b1015620043e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620043dc90620084fd565b60405180910390fd5b8360400151816002016000828254620043ff919062008095565b92505081905550505050505050565b60003373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620044a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200449a90620079d4565b60405180910390fd5b81600001519050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b8152600401620044f391906200759c565b602060405180830381865af415801562004511573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620045379190620075ea565b801562004619575060086000826bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__63c4cade9d9091836040518363ffffffff1660e01b8152600401620045d49291906200851f565b602060405180830381865af4158015620045f2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620046189190620075ea565b5b6200465b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162004652906200859c565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620046a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620046cf919062007661565b73ffffffffffffffffffffffffffffffffffffffff16634c3371cd836040518263ffffffff1660e01b815260040162004709919062006075565b60a060405180830381865afa15801562004727573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200474d919062008659565b604001519050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a7f3669b838360086000876bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020600001600c9054906101000a900460ff1687602001516040518563ffffffff1660e01b8152600401620047f99493929190620080d0565b6020604051808303816000875af115801562004819573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200483f9190620076e7565b508260086000846bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548160ff021916908360ff16021790555060408201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555090505050919050565b6200492262005eb0565b60106000836bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020604051806101600160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a900460ff1660ff1660ff16815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481526020016006820154815260200160078201548152602001600882015481526020016009820154815250509050919050565b62004a2362005f1b565b600260008381526020019081526020016000206040518060600160405290816000820154815260200160018201805462004a5d9062007f99565b80601f016020809104026020016040519081016040528092919081815260200182805462004a8b9062007f99565b801562004adc5780601f1062004ab05761010080835404028352916020019162004adc565b820191906000526020600020905b81548152906001019060200180831162004abe57829003601f168201915b505050505081526020016002820160009054906101000a900460ff1615151515815250509050919050565b600062004b2660056000848152602001908152602001600020620059c7565b9050919050565b60146000826bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6352694ee890916040518263ffffffff1660e01b815260040162004bc091906200759c565b602060405180830381865af415801562004bde573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062004c049190620075ea565b62004c46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162004c3d90620086db565b60405180910390fd5b6040518060600160405280826bffffffffffffffffffffffff1681526020016402540be4008152602001600081525060146000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600101556040820151816002015590505050565b6040518060800160405280856bffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200182815250601b6000866bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604082015181600101600082015181600001556020820151816001015550506060820151816003016000820151816000015560208201518160010155505090505050505050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562004e7a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062004ea0919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462004f10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162004f0790620077b2565b60405180910390fd5b8160026000848152602001908152602001600020600001541462004f6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162004f62906200874d565b60405180910390fd5b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062004ffb8160056000858152602001908152602001600020620059de90919063ffffffff16565b505050565b600060196000856bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000209050828160040160008201518160000155602082015181600101559050508181600601600082015181600001556020820151816001015590505050505050565b6000600760008560ff1660ff16815260200190815260200160002060008460ff1660ff16815260200190815260200160002060008360ff1660ff16815260200190815260200160002060009054906101000a900460ff1690509392505050565b6040518060400160405280600981526020017f506f6f6c4f776e6572000000000000000000000000000000000000000000000081525081565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562005156573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200517c919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620051ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620051e390620077b2565b60405180910390fd5b60006002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054620052289062007f99565b80601f0160208091040260200160405190810160405280929190818152602001828054620052569062007f99565b8015620052a75780601f106200527b57610100808354040283529160200191620052a7565b820191906000526020600020905b8154815290600101906020018083116200528957829003601f168201915b505050505081526020016002820160009054906101000a900460ff16151515158152505090508181600001511462005316576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200530d90620087e5565b60405180910390fd5b6001816040019015159081151581525050620053328162005882565b505050565b6200534162005f41565b60086000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a900460ff1660ff1660ff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509050919050565b6040518060400160405280600c81526020017f50726f647563744f776e6572000000000000000000000000000000000000000081525081565b6000806000620054fd73__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__6392ae8ce0876040518263ffffffff1660e01b8152600401620054ae919062008818565b602060405180830381865af4158015620054cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620054f2919062008835565b856000015162005a10565b9050836020015173__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__63d05b0452836040518263ffffffff1660e01b81526004016200553d919062008878565b602060405180830381865af41580156200555b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062005581919062008895565b6200558d919062008095565b925082856200559d919062008472565b9150509250929050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000620055e882620055e2620057fa565b6200580d565b1562005668573073ffffffffffffffffffffffffffffffffffffffff16636c137ea96040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200563a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620056609190620088de565b905062005793565b6200567d826200567762005825565b6200580d565b15620056fd573073ffffffffffffffffffffffffffffffffffffffff166332e3a6e96040518163ffffffff1660e01b8152600401602060405180830381865afa158015620056cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620056f59190620088de565b905062005793565b62005712826200570c6200597b565b6200580d565b1562005792573073ffffffffffffffffffffffffffffffffffffffff16632a5f6e856040518163ffffffff1660e01b8152600401602060405180830381865afa15801562005764573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200578a9190620088de565b905062005793565b5b919050565b6000620057a6603262005a2f565b905090565b6000620057b9605a62005a2f565b905090565b6000620057e8836000018373ffffffffffffffffffffffffffffffffffffffff1660001b62005a39565b905092915050565b6000819050919050565b600062005808603c62005a2f565b905090565b60008160ff168360ff1614905092915050565b600090565b600062005833605062005a2f565b905090565b6000816bffffffffffffffffffffffff16836bffffffffffffffffffffffff1614905092915050565b60008082602001511480156200587b575060008260000151145b9050919050565b6000816000015190506000801b8103620058db57620058a5826020015162003c4e565b90508082600001818152505060038190806001815401808255809150506001900390600052602060002001600090919091909150555b816002600083815260200190815260200160002060008201518160000155602082015181600101908162005910919062008ab0565b5060408201518160020160006101000a81548160ff021916908315150217905550905050919050565b600062005947606462005aad565b905090565b60006200595d836000018362005ab7565b60001c905092915050565b600062005976605162005a2f565b905090565b600062005989604662005a2f565b905090565b60008060405180606001604052806000801b8152602001848152602001600115158152509050620059bf8162005882565b915050919050565b6000620059d78260000162005ae5565b9050919050565b600062005a08836000018373ffffffffffffffffffffffffffffffffffffffff1660001b62005af6565b905092915050565b600062005a278383670de0b6b3a764000062005c1a565b905092915050565b6000819050919050565b600062005a47838362005d33565b62005aa257826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062005aa7565b600090505b92915050565b6000819050919050565b600082600001828154811062005ad25762005ad162007955565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b6000808360010160008481526020019081526020016000205490506000811462005c0e57600060018262005b2b919062008472565b905060006001866000018054905062005b45919062008472565b905081811462005bbb57600086600001828154811062005b6a5762005b6962007955565b5b906000526020600020015490508087600001848154811062005b915762005b9062007955565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b8560000180548062005bd25762005bd162008b97565b5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505062005c14565b60009150505b92915050565b600080600080198587098587029250828110838203039150506000810362005c5a5783828162005c4f5762005c4e62008bc6565b5b049250505062005d2c565b80841162005c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162005c969062008c45565b60405180910390fd5b60008486880990508281118203915080830392506000600186190186169050808604955080840493506001818260000304019050808302841793506000600287600302189050808702600203810290508087026002038102905080870260020381029050808702600203810290508087026002038102905080870260020381029050808502955050505050505b9392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6103e58062008c6883390190565b604051806080016040528060006bffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200162005dab62005f89565b815260200162005dba62005f89565b81525090565b60405180610100016040528060006bffffffffffffffffffffffff16815260200160006bffffffffffffffffffffffff16815260200160006bffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200162005e6c62005f89565b815260200162005e7b62005f89565b81525090565b604051806060016040528060006bffffffffffffffffffffffff16815260200160008152602001600081525090565b60405180610160016040528060006bffffffffffffffffffffffff168152602001600060ff1681526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604051806060016040528060008019168152602001606081526020016000151581525090565b604051806060016040528060006bffffffffffffffffffffffff168152602001600060ff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681525090565b604051806040016040528060008152602001600081525090565b6000604051905090565b600080fd5b600080fd5b60006bffffffffffffffffffffffff82169050919050565b62005fda8162005fb7565b811462005fe657600080fd5b50565b60008135905062005ffa8162005fcf565b92915050565b60006020828403121562006019576200601862005fad565b5b6000620060298482850162005fe9565b91505092915050565b6000819050919050565b60006200605d62006057620060518462005fb7565b62006032565b62005fb7565b9050919050565b6200606f816200603c565b82525050565b60006020820190506200608c600083018462006064565b92915050565b6000819050919050565b620060a78162006092565b82525050565b6000602082019050620060c460008301846200609c565b92915050565b600060ff82169050919050565b620060e281620060ca565b8114620060ee57600080fd5b50565b6000813590506200610281620060d7565b92915050565b60006020828403121562006121576200612062005fad565b5b60006200613184828501620060f1565b91505092915050565b60006200615b620061556200614f84620060ca565b62006032565b620060ca565b9050919050565b6200616d816200613a565b82525050565b60006020820190506200618a600083018462006162565b92915050565b6200619b816200613a565b82525050565b6000602082019050620061b8600083018462006190565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200620e82620061c3565b810181811067ffffffffffffffff8211171562006230576200622f620061d4565b5b80604052505050565b60006200624562005fa3565b905062006253828262006203565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620062858262006258565b9050919050565b620062978162006278565b8114620062a357600080fd5b50565b600081359050620062b7816200628c565b92915050565b600060a08284031215620062d657620062d5620061be565b5b620062e260a062006239565b90506000620062f48482850162005fe9565b60008301525060206200630a8482850162005fe9565b60208301525060406200632084828501620060f1565b60408301525060606200633684828501620062a6565b60608301525060806200634c84828501620062a6565b60808301525092915050565b620063638162006092565b81146200636f57600080fd5b50565b600081359050620063838162006358565b92915050565b6000806000806000806101408789031215620063aa57620063a962005fad565b5b6000620063ba89828a01620062bd565b96505060a0620063cd89828a01620062a6565b95505060c0620063e089828a0162006372565b94505060e0620063f389828a0162006372565b9350506101006200640789828a0162006372565b9250506101206200641b89828a0162005fe9565b9150509295509295509295565b60008115159050919050565b6200643f8162006428565b82525050565b60006020820190506200645c600083018462006434565b92915050565b6000819050919050565b620064778162006462565b82525050565b60006020820190506200649460008301846200646c565b92915050565b600060208284031215620064b357620064b262005fad565b5b6000620064c384828501620062a6565b91505092915050565b620064d78162006462565b8114620064e357600080fd5b50565b600081359050620064f781620064cc565b92915050565b6000806040838503121562006517576200651662005fad565b5b60006200652785828601620064e6565b92505060206200653a85828601620062a6565b9150509250929050565b6000620065518262006278565b9050919050565b620065638162006544565b81146200656f57600080fd5b50565b600081359050620065838162006558565b92915050565b620065948162006092565b8114620065a057600080fd5b50565b600081359050620065b48162006589565b92915050565b600060408284031215620065d357620065d2620061be565b5b620065df604062006239565b90506000620065f184828501620065a3565b6000830152506020620066078482850162006372565b60208301525092915050565b6000806000806000806000610120888a03121562006636576200663562005fad565b5b6000620066468a828b0162005fe9565b9750506020620066598a828b0162005fe9565b96505060406200666c8a828b0162005fe9565b95505060606200667f8a828b0162006572565b9450506080620066928a828b01620062a6565b93505060a0620066a58a828b01620065ba565b92505060e0620066b88a828b01620065ba565b91505092959891949750929550565b620066d2816200603c565b82525050565b620066e38162006278565b82525050565b60006200670a62006704620066fe8462006092565b62006032565b62006092565b9050919050565b6200671c81620066e9565b82525050565b6200672d8162006092565b82525050565b6040820160008201516200674b600085018262006711565b50602082015162006760602085018262006722565b50505050565b60c0820160008201516200677e6000850182620066c7565b506020820151620067936020850182620066d8565b506040820151620067a8604085018262006733565b506060820151620067bd608085018262006733565b50505050565b600060c082019050620067da600083018462006766565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156200681c578082015181840152602081019050620067ff565b60008484015250505050565b60006200683582620067e0565b620068418185620067eb565b935062006853818560208601620067fc565b6200685e81620061c3565b840191505092915050565b6000602082019050818103600083015262006885818462006828565b905092915050565b6000620068ae620068a8620068a28462006258565b62006032565b62006258565b9050919050565b6000620068c2826200688d565b9050919050565b6000620068d682620068b5565b9050919050565b620068e881620068c9565b82525050565b6000602082019050620069056000830184620068dd565b92915050565b60006200691882620068b5565b9050919050565b6200692a816200690b565b82525050565b60006200693d82620068b5565b9050919050565b6200694f8162006930565b82525050565b610140820160008201516200696e6000850182620066c7565b506020820151620069836020850182620066c7565b506040820151620069986040850182620066c7565b506060820151620069ad60608501826200691f565b506080820151620069c2608085018262006944565b5060a0820151620069d760a0850182620066d8565b5060c0820151620069ec60c085018262006733565b5060e082015162006a0261010085018262006733565b50505050565b60006101408201905062006a20600083018462006955565b92915050565b60006020828403121562006a3f5762006a3e62005fad565b5b600062006a4f8482850162006372565b91505092915050565b60608201600082015162006a706000850182620066c7565b50602082015162006a85602085018262006722565b50604082015162006a9a604085018262006722565b50505050565b600060608201905062006ab7600083018462006a58565b92915050565b600062006aca82620068b5565b9050919050565b62006adc8162006abd565b82525050565b600060208201905062006af9600083018462006ad1565b92915050565b600062006b0c8262006278565b9050919050565b62006b1e8162006aff565b811462006b2a57600080fd5b50565b60008135905062006b3e8162006b13565b92915050565b60006020828403121562006b5d5762006b5c62005fad565b5b600062006b6d8482850162006b2d565b91505092915050565b6000806040838503121562006b905762006b8f62005fad565b5b600062006ba08582860162005fe9565b925050602062006bb38582860162005fe9565b9150509250929050565b600062006bca82620068b5565b9050919050565b62006bdc8162006bbd565b82525050565b600060208201905062006bf9600083018462006bd1565b92915050565b60006020828403121562006c185762006c1762005fad565b5b600062006c2884828501620064e6565b91505092915050565b62006c3c8162006278565b82525050565b600060208201905062006c59600083018462006c31565b92915050565b6000806040838503121562006c795762006c7862005fad565b5b600062006c8985828601620064e6565b925050602062006c9c8582860162006372565b9150509250929050565b600080600060a0848603121562006cc25762006cc162005fad565b5b600062006cd28682870162005fe9565b935050602062006ce586828701620065ba565b925050606062006cf886828701620065ba565b9150509250925092565b600080fd5b600080fd5b600067ffffffffffffffff82111562006d2a5762006d29620061d4565b5b62006d3582620061c3565b9050602081019050919050565b82818337600083830152505050565b600062006d6862006d628462006d0c565b62006239565b90508281526020810184848401111562006d875762006d8662006d07565b5b62006d9484828562006d42565b509392505050565b600082601f83011262006db45762006db362006d02565b5b813562006dc684826020860162006d51565b91505092915050565b60006020828403121562006de85762006de762005fad565b5b600082013567ffffffffffffffff81111562006e095762006e0862005fb2565b5b62006e178482850162006d9c565b91505092915050565b62006e2b8162006930565b82525050565b600060208201905062006e48600083018462006e20565b92915050565b62006e5981620060ca565b811462006e6557600080fd5b50565b60008135905062006e798162006e4e565b92915050565b6000806000806080858703121562006e9c5762006e9b62005fad565b5b600062006eac8782880162005fe9565b945050602062006ebf87828801620060f1565b935050604062006ed28782880162006e68565b925050606062006ee58782880162006e68565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b600062006f1a8262006ef1565b62006f26818562006efc565b935062006f38818560208601620067fc565b62006f4381620061c3565b840191505092915050565b6000602082019050818103600083015262006f6a818462006f0d565b905092915050565b600062006f7f8262006278565b9050919050565b62006f918162006f72565b811462006f9d57600080fd5b50565b60008135905062006fb18162006f86565b92915050565b60006060828403121562006fd05762006fcf620061be565b5b62006fdc606062006239565b9050600062006fee8482850162005fe9565b6000830152506020620070048482850162006e68565b60208301525060406200701a8482850162006fa0565b60408301525092915050565b6000606082840312156200703f576200703e62005fad565b5b60006200704f8482850162006fb7565b91505092915050565b62007063816200613a565b82525050565b61016082016000820151620070826000850182620066c7565b50602082015162007097602085018262007058565b506040820151620070ac604085018262006722565b506060820151620070c1606085018262006722565b506080820151620070d6608085018262006722565b5060a0820151620070eb60a085018262006722565b5060c08201516200710060c085018262006722565b5060e08201516200711560e085018262006722565b506101008201516200712c61010085018262006722565b506101208201516200714361012085018262006722565b506101408201516200715a61014085018262006722565b50505050565b60006101608201905062007178600083018462007069565b92915050565b620071898162006462565b82525050565b600082825260208201905092915050565b6000620071ad8262006ef1565b620071b981856200718f565b9350620071cb818560208601620067fc565b620071d681620061c3565b840191505092915050565b620071ec8162006428565b82525050565b60006060830160008301516200720c60008601826200717e565b5060208301518482036020860152620072268282620071a0565b91505060408301516200723d6040860182620071e1565b508091505092915050565b60006020820190508181036000830152620072648184620071f2565b905092915050565b60008060008060c0858703121562007289576200728862005fad565b5b6000620072998782880162005fe9565b9450506020620072ac87828801620062a6565b9350506040620072bf87828801620065ba565b9250506080620072d287828801620065ba565b91505092959194509250565b600080600060608486031215620072fa57620072f962005fad565b5b60006200730a86828701620060f1565b93505060206200731d8682870162006e68565b9250506040620073308682870162006e68565b9150509250925092565b60006200734782620068b5565b9050919050565b62007359816200733a565b82525050565b606082016000820151620073776000850182620066c7565b5060208201516200738c602085018262007058565b506040820151620073a160408501826200734e565b50505050565b6000606082019050620073be60008301846200735f565b92915050565b60008060608385031215620073de57620073dd62005fad565b5b6000620073ee8582860162006372565b92505060206200740185828601620065ba565b9150509250929050565b60006040820190506200742260008301856200609c565b6200743160208301846200609c565b9392505050565b7f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f53455256494360008201527f4500000000000000000000000000000000000000000000000000000000000000602082015250565b60006200749660218362006efc565b9150620074a38262007438565b604082019050919050565b60006020820190508181036000830152620074c98162007487565b9050919050565b7f4552524f523a5052442d3030313a52454749535452595f5a45524f0000000000600082015250565b600062007508601b8362006efc565b91506200751582620074d0565b602082019050919050565b600060208201905081810360008301526200753b81620074f9565b9050919050565b600081519050620075538162005fcf565b92915050565b60006020828403121562007572576200757162005fad565b5b6000620075828482850162007542565b91505092915050565b62007596816200603c565b82525050565b6000602082019050620075b360008301846200758b565b92915050565b620075c48162006428565b8114620075d057600080fd5b50565b600081519050620075e481620075b9565b92915050565b60006020828403121562007603576200760262005fad565b5b60006200761384828501620075d3565b91505092915050565b6000620076298262006278565b9050919050565b6200763b816200761c565b81146200764757600080fd5b50565b6000815190506200765b8162007630565b92915050565b6000602082840312156200767a576200767962005fad565b5b60006200768a848285016200764a565b91505092915050565b6000606082019050620076aa600083018662006064565b620076b9602083018562006190565b620076c8604083018462006c31565b949350505050565b600081519050620076e18162006e4e565b92915050565b6000602082840312156200770057620076ff62005fad565b5b60006200771084828501620076d0565b91505092915050565b6000815190506200772a816200628c565b92915050565b60006020828403121562007749576200774862005fad565b5b6000620077598482850162007719565b91505092915050565b7f4552524f523a41434d2d3030313a4e4f545f4f574e4552000000000000000000600082015250565b60006200779a60178362006efc565b9150620077a78262007762565b602082019050919050565b60006020820190508181036000830152620077cd816200778b565b9050919050565b7f4552524f523a41434d2d3031303a524f4c455f4e4f545f4558495354494e4700600082015250565b60006200780c601f8362006efc565b91506200781982620077d4565b602082019050919050565b600060208201905081810360008301526200783f81620077fd565b9050919050565b7f4552524f523a41434d2d3031313a524f4c455f4e4f545f414354495645000000600082015250565b60006200787e601d8362006efc565b91506200788b8262007846565b602082019050919050565b60006020820190508181036000830152620078b1816200786f565b9050919050565b6000606082019050620078cf60008301866200646c565b620078de602083018562006c31565b620078ed604083018462006434565b949350505050565b6000819050919050565b6000620079206200791a6200791484620078f5565b62006032565b620060ca565b9050919050565b6200793281620078ff565b82525050565b60006020820190506200794f600083018462007927565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500600082015250565b6000620079bc601f8362006efc565b9150620079c98262007984565b602082019050919050565b60006020820190508181036000830152620079ef81620079ad565b9050919050565b60008151905062007a0781620060d7565b92915050565b60006020828403121562007a265762007a2562005fad565b5b600062007a3684828501620079f6565b91505092915050565b600060408201905062007a5660008301856200646c565b62007a65602083018462006c31565b9392505050565b7f4552524f523a434d502d3030343a545950455f524f4c455f4d495353494e4700600082015250565b600062007aa4601f8362006efc565b915062007ab18262007a6c565b602082019050919050565b6000602082019050818103600083015262007ad78162007a95565b9050919050565b60008151905062007aef8162006f86565b92915050565b60006020828403121562007b0e5762007b0d62005fad565b5b600062007b1e8482850162007ade565b91505092915050565b7f4552524f523a434d502d3030353a504f4f4c5f554e4b4e4f574e000000000000600082015250565b600062007b5f601a8362006efc565b915062007b6c8262007b27565b602082019050919050565b6000602082019050818103600083015262007b928162007b50565b9050919050565b60008151905062007baa8162006589565b92915050565b60008151905062007bc18162006358565b92915050565b60006040828403121562007be05762007bdf620061be565b5b62007bec604062006239565b9050600062007bfe8482850162007b99565b600083015250602062007c148482850162007bb0565b60208301525092915050565b60006040828403121562007c395762007c3862005fad565b5b600062007c498482850162007bc7565b91505092915050565b62007c5d816200733a565b82525050565b60408201600082015162007c7b600085018262006711565b50602082015162007c90602085018262006722565b50505050565b60006101208201905062007cae600083018a62006064565b62007cbd602083018962006064565b62007ccc604083018862006064565b62007cdb606083018762007c52565b62007cea608083018662006c31565b62007cf960a083018562007c63565b62007d0860e083018462007c63565b98975050505050505050565b600060c08201905062007d2b600083018762006064565b62007d3a602083018662006c31565b62007d49604083018562007c63565b62007d58608083018462007c63565b95945050505050565b6000610160828403121562007d7b5762007d7a620061be565b5b62007d8861016062006239565b9050600062007d9a8482850162007542565b600083015250602062007db084828501620076d0565b602083015250604062007dc68482850162007bb0565b604083015250606062007ddc8482850162007bb0565b606083015250608062007df28482850162007bb0565b60808301525060a062007e088482850162007bb0565b60a08301525060c062007e1e8482850162007bb0565b60c08301525060e062007e348482850162007bb0565b60e08301525061010062007e4b8482850162007bb0565b6101008301525061012062007e638482850162007bb0565b6101208301525061014062007e7b8482850162007bb0565b6101408301525092915050565b6000610160828403121562007ea25762007ea162005fad565b5b600062007eb28482850162007d61565b91505092915050565b7f4552524f523a5452532d3032303a504f4c4943595f554e4b4e4f574e00000000600082015250565b600062007ef3601c8362006efc565b915062007f008262007ebb565b602082019050919050565b6000602082019050818103600083015262007f268162007ee4565b9050919050565b600060608201905062007f44600083018662006c31565b62007f53602083018562006c31565b62007f6260408301846200609c565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062007fb257607f821691505b60208210810362007fc85762007fc762007f6a565b5b50919050565b7f4552524f523a414f532d3030313a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b60006200802c60218362006efc565b9150620080398262007fce565b604082019050919050565b600060208201905081810360008301526200805f816200801d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620080a28262006092565b9150620080af8362006092565b9250828201905080821115620080ca57620080c962008066565b5b92915050565b6000608082019050620080e7600083018762006064565b620080f6602083018662006190565b62008105604083018562006162565b62008114606083018462006162565b95945050505050565b600060608201905062008134600083018662006064565b62008143602083018562006162565b62008152604083018462006162565b949350505050565b600060408201905062008171600083018562006064565b62008180602083018462006190565b9392505050565b7f4552524f523a504c2d3030323a504f4c4943595f554e4b4e4f574e0000000000600082015250565b6000620081bf601b8362006efc565b9150620081cc8262008187565b602082019050919050565b60006020820190508181036000830152620081f281620081b0565b9050919050565b6000815190506200820a8162006558565b92915050565b60006200821d8262006278565b9050919050565b6200822f8162008210565b81146200823b57600080fd5b50565b6000815190506200824f8162008224565b92915050565b600061014082840312156200826f576200826e620061be565b5b6200827c61010062006239565b905060006200828e8482850162007542565b6000830152506020620082a48482850162007542565b6020830152506040620082ba8482850162007542565b6040830152506060620082d084828501620081f9565b6060830152506080620082e6848285016200823e565b60808301525060a0620082fc8482850162007719565b60a08301525060c0620083128482850162007bc7565b60c083015250610100620083298482850162007bc7565b60e08301525092915050565b600061014082840312156200834f576200834e62005fad565b5b60006200835f8482850162008255565b91505092915050565b7f4552524f523a504c2d3030333a50524f445543545f53455455505f4d4953534960008201527f4e47000000000000000000000000000000000000000000000000000000000000602082015250565b6000620083c660228362006efc565b9150620083d38262008368565b604082019050919050565b60006020820190508181036000830152620083f981620083b7565b9050919050565b7f4552524f523a504c2d3030343a504f4f4c5f554e4b4e4f574e00000000000000600082015250565b60006200843860198362006efc565b9150620084458262008400565b602082019050919050565b600060208201905081810360008301526200846b8162008429565b9050919050565b60006200847f8262006092565b91506200848c8362006092565b9250828203905081811115620084a757620084a662008066565b5b92915050565b7f4552524f523a504c2d3030353a43415041434954595f544f4f5f4c4f57000000600082015250565b6000620084e5601d8362006efc565b9150620084f282620084ad565b602082019050919050565b600060208201905081810360008301526200851881620084d6565b9050919050565b60006040820190506200853660008301856200758b565b6200854560208301846200758b565b9392505050565b7f4552524f523a434d502d3030363a434f4d504f4e454e545f554e4b4e4f574e00600082015250565b600062008584601f8362006efc565b915062008591826200854c565b602082019050919050565b60006020820190508181036000830152620085b78162008575565b9050919050565b600060a08284031215620085d757620085d6620061be565b5b620085e360a062006239565b90506000620085f58482850162007542565b60008301525060206200860b8482850162007542565b60208301525060406200862184828501620079f6565b6040830152506060620086378482850162007719565b60608301525060806200864d8482850162007719565b60808301525092915050565b600060a0828403121562008672576200867162005fad565b5b60006200868284828501620085be565b91505092915050565b7f4552524f523a504c2d3030313a414c52454144595f4352454154454400000000600082015250565b6000620086c3601c8362006efc565b9150620086d0826200868b565b602082019050919050565b60006020820190508181036000830152620086f681620086b4565b9050919050565b7f4552524f523a41434d2d3032303a524f4c455f4e4f545f4558495354494e4700600082015250565b600062008735601f8362006efc565b91506200874282620086fd565b602082019050919050565b60006020820190508181036000830152620087688162008726565b9050919050565b7f4552524f523a414f532d3030323a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b6000620087cd60218362006efc565b9150620087da826200876f565b604082019050919050565b600060208201905081810360008301526200880081620087be565b9050919050565b620088128162006092565b82525050565b60006020820190506200882f600083018462008807565b92915050565b6000602082840312156200884e576200884d62005fad565b5b60006200885e8482850162007b99565b91505092915050565b6200887281620066e9565b82525050565b60006020820190506200888f600083018462008867565b92915050565b600060208284031215620088ae57620088ad62005fad565b5b6000620088be8482850162007bb0565b91505092915050565b600081519050620088d881620064cc565b92915050565b600060208284031215620088f757620088f662005fad565b5b60006200890784828501620088c7565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620089747fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262008935565b62008980868362008935565b95508019841693508086168417925050509392505050565b6000819050919050565b620089ad83620066e9565b620089c5620089bc8262008998565b84845462008942565b825550505050565b600090565b620089dc620089cd565b620089e9818484620089a2565b505050565b5b8181101562008a115762008a05600082620089d2565b600181019050620089ef565b5050565b601f82111562008a605762008a2a8162008910565b62008a358462008925565b8101602085101562008a45578190505b62008a5d62008a548562008925565b830182620089ee565b50505b505050565b600082821c905092915050565b600062008a856000198460080262008a65565b1980831691505092915050565b600062008aa0838362008a72565b9150826002028217905092915050565b62008abb8262006ef1565b67ffffffffffffffff81111562008ad75762008ad6620061d4565b5b62008ae3825462007f99565b62008af082828562008a15565b600060209050601f83116001811462008b28576000841562008b13578287015190505b62008b1f858262008a92565b86555062008b8f565b601f19841662008b388662008910565b60005b8281101562008b625784890151825560018201915060208501945060208101905062008b3b565b8683101562008b82578489015162008b7e601f89168262008a72565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4d6174683a206d756c446976206f766572666c6f770000000000000000000000600082015250565b600062008c2d60158362006efc565b915062008c3a8262008bf5565b602082019050919050565b6000602082019050818103600083015262008c608162008c1e565b905091905056fe608060405234801561001057600080fd5b506040516103e53803806103e5833981810160405281019061003291906100db565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050610108565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006100a88261007d565b9050919050565b6100b88161009d565b81146100c357600080fd5b50565b6000815190506100d5816100af565b92915050565b6000602082840312156100f1576100f0610078565b5b60006100ff848285016100c6565b91505092915050565b6102ce806101176000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063beabacc814610030575b600080fd5b61004a6004803603810190610045919061018b565b61004c565b005b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd8484846040518463ffffffff1660e01b81526004016100a9939291906101fc565b6020604051808303816000875af11580156100c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100ec919061026b565b50505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610122826100f7565b9050919050565b61013281610117565b811461013d57600080fd5b50565b60008135905061014f81610129565b92915050565b6000819050919050565b61016881610155565b811461017357600080fd5b50565b6000813590506101858161015f565b92915050565b6000806000606084860312156101a4576101a36100f2565b5b60006101b286828701610140565b93505060206101c386828701610140565b92505060406101d486828701610176565b9150509250925092565b6101e781610117565b82525050565b6101f681610155565b82525050565b600060608201905061021160008301866101de565b61021e60208301856101de565b61022b60408301846101ed565b949350505050565b60008115159050919050565b61024881610233565b811461025357600080fd5b50565b6000815190506102658161023f565b92915050565b600060208284031215610281576102806100f2565b5b600061028f84828501610256565b9150509291505056fea2646970667358221220584830ad6020f92961817dc65ddc7db09473de72e053fbcf657fa124b0863b5764736f6c63430008140033a264697066735822122011b6b8bf36c4608b07a694419b40e86df6783a95c6c67dedff9a6fd43649186d64736f6c63430008140033",
1640
- "deployedBytecode": "0x60806040523480156200001157600080fd5b5060043610620003f45760003560e01c80637ff826131162000219578063bd7d9d851162000129578063e9e96c7011620000bd578063f174ce191162000087578063f174ce191462000ce5578063f274e87d1462000d07578063fb2cb1011462000d3e578063fc0ae0541462000d6057620003f4565b8063e9e96c701462000c37578063eb71e8c41462000c6d578063eb7f494d1462000c8f578063f0ea17c31462000caf57620003f4565b8063ca38559811620000ff578063ca3855981462000bb7578063d0bb064c1462000bd7578063d547741f1462000bf7578063dc261c3a1462000c1757620003f4565b8063bd7d9d851462000b15578063be409a111462000b4b578063ca15c8731462000b8157620003f4565b80639cad005211620001ad578063b90915521162000177578063b90915521462000a7b578063ba62fbe41462000a9d578063bce395231462000abf578063bd62faf71462000adf57620003f4565b80639cad005214620009a3578063a310e2a314620009d9578063a7f3669b1462000a0f578063af17d38a1462000a4557620003f4565b80638aa03b6b11620001ef5780638aa03b6b14620008f55780639010d07c146200091757806391d14854146200094d57806393865aec146200098357620003f4565b80637ff82613146200089157806383d3331914620008b1578063893d20e814620008d357620003f4565b80633300a8a811620003155780636078a3b211620002a95780636fa2985311620002735780636fa2985314620007f757806379e829d014620008195780637c4a13b1146200083b5780637fec8b31146200085b57620003f4565b80636078a3b2146200075d578063644c45e014620007935780636c137ea914620007b55780636ce5caea14620007d757620003f4565b80634fd077f511620002eb5780634fd077f514620006995780635312fdc214620006cf57806357f80bbf14620007055780635ab1bd53146200073b57620003f4565b80633300a8a8146200061f5780633bc5de3014620006555780634288121d146200067757620003f4565b806322366844116200038d5780632f2ff15d11620003635780632f2ff15d146200059b57806331b62a3b14620005bb57806331e48e3214620005dd57806332e3a6e914620005fd57620003f4565b80632236684414620005215780632a5f6e8514620005435780632b1c7f73146200056557620003f4565b806313f7dcfc11620003cf57806313f7dcfc146200048757806315dae03e14620004a75780631aa3a00814620004c95780632064717e14620004eb57620003f4565b806301ed760414620003f957806302393c41146200042f5780630d3581811462000451575b600080fd5b62000417600480360381019062000411919062006000565b62000d96565b60405162000426919062006075565b60405180910390f35b6200043962000de7565b604051620004489190620060ad565b60405180910390f35b6200046f600480360381019062000469919062006108565b62000df0565b6040516200047e919062006173565b60405180910390f35b620004a560048036038101906200049f919062006000565b62000e20565b005b620004b162000f00565b604051620004c09190620061a1565b60405180910390f35b620004d362000f11565b604051620004e2919062006075565b60405180910390f35b62000509600480360381019062000503919062006389565b6200104a565b60405162000518919062006075565b60405180910390f35b6200052b620014cb565b6040516200053a919062006445565b60405180910390f35b6200054d62001602565b6040516200055c91906200647d565b60405180910390f35b6200058360048036038101906200057d91906200649a565b6200162a565b60405162000592919062006075565b60405180910390f35b620005b96004803603810190620005b39190620064fd565b6200168b565b005b620005c56200195d565b604051620005d4919062006075565b60405180910390f35b620005fb6004803603810190620005f5919062006613565b62001970565b005b6200060762001c47565b6040516200061691906200647d565b60405180910390f35b6200063d600480360381019062000637919062006000565b62001c6f565b6040516200064c9190620067c3565b60405180910390f35b6200065f62001d9e565b6040516200066e919062006869565b60405180910390f35b6200068162001dc8565b604051620006909190620068ee565b60405180910390f35b620006b76004803603810190620006b1919062006000565b62001df2565b604051620006c6919062006a08565b60405180910390f35b620006ed6004803603810190620006e7919062006a26565b6200204a565b604051620006fc91906200647d565b60405180910390f35b6200072360048036038101906200071d919062006000565b62002075565b60405162000732919062006aa0565b60405180910390f35b6200074562002112565b60405162000754919062006ae2565b60405180910390f35b6200077b600480360381019062000775919062006b44565b6200213b565b6040516200078a919062006075565b60405180910390f35b6200079d62002df7565b604051620007ac919062006075565b60405180910390f35b620007bf62002e9e565b604051620007ce91906200647d565b60405180910390f35b620007f56004803603810190620007ef919062006b76565b62002ec6565b005b6200080162003504565b60405162000810919062006be2565b60405180910390f35b620008236200352e565b60405162000832919062006445565b60405180910390f35b62000859600480360381019062000853919062006bff565b62003537565b005b62000879600480360381019062000873919062006a26565b62003764565b60405162000888919062006075565b60405180910390f35b620008af6004803603810190620008a9919062006000565b620037b2565b005b620008bb62003987565b604051620008ca9190620060ad565b60405180910390f35b620008dd62003994565b604051620008ec919062006c42565b60405180910390f35b620008ff62003b3f565b6040516200090e9190620060ad565b60405180910390f35b6200093560048036038101906200092f919062006c5f565b62003b44565b60405162000944919062006c42565b60405180910390f35b6200096b6004803603810190620009659190620064fd565b62003b75565b6040516200097a919062006445565b60405180910390f35b620009a160048036038101906200099b919062006ca6565b62003bdd565b005b620009c16004803603810190620009bb919062006dcf565b62003c4e565b604051620009d091906200647d565b60405180910390f35b620009f76004803603810190620009f1919062006000565b62003c80565b60405162000a06919062006e31565b60405180910390f35b62000a2d600480360381019062000a27919062006e7f565b62003cdc565b60405162000a3c919062006173565b60405180910390f35b62000a63600480360381019062000a5d919062006dcf565b62003f21565b60405162000a7291906200647d565b60405180910390f35b62000a8562004017565b60405162000a94919062006f4e565b60405180910390f35b62000aa762004050565b60405162000ab69190620060ad565b60405180910390f35b62000add600480360381019062000ad7919062006b76565b6200405d565b005b62000afd600480360381019062000af7919062007026565b6200440e565b60405162000b0c919062006075565b60405180910390f35b62000b33600480360381019062000b2d919062006000565b62004918565b60405162000b42919062007160565b60405180910390f35b62000b69600480360381019062000b63919062006bff565b62004a19565b60405162000b78919062007248565b60405180910390f35b62000b9f600480360381019062000b99919062006bff565b62004b07565b60405162000bae9190620060ad565b60405180910390f35b62000bd5600480360381019062000bcf919062006000565b62004b2d565b005b62000bf5600480360381019062000bef91906200726c565b62004cf5565b005b62000c15600480360381019062000c0f9190620064fd565b62004e2e565b005b62000c35600480360381019062000c2f919062006ca6565b62005000565b005b62000c55600480360381019062000c4f9190620072de565b62005071565b60405162000c64919062006445565b60405180910390f35b62000c77620050d1565b60405162000c86919062006f4e565b60405180910390f35b62000cad600480360381019062000ca7919062006bff565b6200510a565b005b62000ccd600480360381019062000cc7919062006000565b62005337565b60405162000cdc9190620073a7565b60405180910390f35b62000cef62005433565b60405162000cfe919062006f4e565b60405180910390f35b62000d25600480360381019062000d1f9190620073c4565b6200546c565b60405162000d359291906200740b565b60405180910390f35b62000d48620055a7565b60405162000d57919062006c42565b60405180910390f35b62000d7e600480360381019062000d78919062006108565b620055d1565b60405162000d8d91906200647d565b60405180910390f35b600060116000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff169050919050565b6402540be40081565b6000600660008360ff1660ff16815260200190815260200160002060009054906101000a900460ff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000eb3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000eaa90620074ae565b60405180910390fd5b600060106000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000209050806002015481600301819055504281600601819055505050565b600062000f0c62005798565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160362000fa4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f9b9062007520565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000fff919062006c42565b6020604051808303816000875af11580156200101f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001045919062007559565b905090565b60003373ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620010df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010d690620074ae565b60405180910390fd5b816bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b81526004016200112891906200759c565b602060405180830381865af415801562001146573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200116c9190620075ea565b503073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620011b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620011df919062007661565b73ffffffffffffffffffffffffffffffffffffffff16631d1b0cac886000015162001209620057ab565b896040518463ffffffff1660e01b81526004016200122a9392919062007693565b6020604051808303816000875af11580156200124a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001270919062007559565b9050604051806101600160405280826bffffffffffffffffffffffff168152602001601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630d358181620012da620057ab565b6040518263ffffffff1660e01b8152600401620012f89190620061a1565b602060405180830381865afa15801562001316573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200133c9190620076e7565b60ff168152602001868152602001858152602001600081526020018481526020014281526020014281526020016000815260200160008152602001600081525060106000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548160ff021916908360ff16021790555060408201518160010155606082015181600201556080820151816003015560a0820151816004015560c0820151816005015560e082015181600601556101008201518160070155610120820151816008015561014082015181600901559050508160116000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509695505050505050565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b815260040162001529919062006c42565b602060405180830381865afa15801562001547573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200156d919062007559565b9050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b8152600401620015b891906200759c565b602060405180830381865af4158015620015d6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620015fc9190620075ea565b91505090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff169050919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015620016d7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620016fd919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200176d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200176490620077b2565b60405180910390fd5b81600260008481526020019081526020016000206000015414620017c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620017bf9062007824565b60405180910390fd5b6002600083815260200190815260200160002060020160009054906101000a900460ff166200182e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018259062007896565b60405180910390fd5b60016004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620018be8160056000858152602001908152602001600020620057be90919063ffffffff16565b507f9a2df6ca1a9ab5e734f2f076b73fd00974eca8e06b9895f8f4eaebb590cc09a582826004600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166040516200195193929190620078b8565b60405180910390a15050565b60006200196b6000620057f0565b905090565b600084604051620019819062005d56565b6200198d919062006c42565b604051809103906000f080158015620019aa573d6000803e3d6000fd5b509050604051806101000160405280896bffffffffffffffffffffffff168152602001886bffffffffffffffffffffffff168152602001876bffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815250601960008a6bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555060408201518160010160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550606082015181600101600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060808201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060a08201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060c0820151816004016000820151816000015560208201518160010155505060e082015181600601600082015181600001556020820151816001015550509050505050505050505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b62001c7962005d64565b601b6000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182016040518060400160405290816000820154815260200160018201548152505081526020016003820160405180604001604052908160008201548152602001600182015481525050815250509050919050565b6060600060405160200162001db4919062007938565b604051602081830303815290604052905090565b6000601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62001dfc62005dc0565b60196000836bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020604051806101000160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016001820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160018201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600482016040518060400160405290816000820154815260200160018201548152505081526020016006820160405180604001604052908160008201548152602001600182015481525050815250509050919050565b60006003828154811062002063576200206262007955565b5b90600052602060002001549050919050565b6200207f62005e81565b60146000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001600182015481526020016002820154815250509050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60003373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620021d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620021c790620079d4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200221e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002244919062007a0d565b905060006200225382620055d1565b90503073ffffffffffffffffffffffffffffffffffffffff166391d14854828673ffffffffffffffffffffffffffffffffffffffff1663fb2cb1016040518163ffffffff1660e01b8152600401602060405180830381865afa158015620022be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620022e4919062007730565b6040518363ffffffff1660e01b81526004016200230392919062007a3f565b602060405180830381865afa15801562002321573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620023479190620075ea565b62002389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620023809062007abc565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620023d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620023fb919062007661565b73ffffffffffffffffffffffffffffffffffffffff16634420e486856040518263ffffffff1660e01b815260040162002435919062006c42565b6020604051808303816000875af115801562002455573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200247b919062007559565b925060008473ffffffffffffffffffffffffffffffffffffffff166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa158015620024cb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620024f1919062007af5565b905060008573ffffffffffffffffffffffffffffffffffffffff1663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002541573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002567919062007730565b90506040518060600160405280866bffffffffffffffffffffffff168152602001600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630d358181876040518263ffffffff1660e01b8152600401620025e59190620061a1565b602060405180830381865afa15801562002603573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620026299190620076e7565b60ff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681525060086000876bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548160ff021916908360ff16021790555060408201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050620027a28673ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200276c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002792919062007a0d565b6200279c620057fa565b6200580d565b1562002a8657600086905060008173ffffffffffffffffffffffffffffffffffffffff16631bdd6b766040518163ffffffff1660e01b8152600401602060405180830381865afa158015620027fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002821919062007559565b9050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b81526004016200286c91906200759c565b602060405180830381865af41580156200288a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620028b09190620075ea565b620028f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620028e99062007b77565b60405180910390fd5b6000620028fe62005820565b9050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e48e3289838589898973ffffffffffffffffffffffffffffffffffffffff1663bc74aab06040518163ffffffff1660e01b81526004016040805180830381865afa1580156200298e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620029b4919062007c20565b8a73ffffffffffffffffffffffffffffffffffffffff1663daafed406040518163ffffffff1660e01b81526004016040805180830381865afa158015620029ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002a25919062007c20565b6040518863ffffffff1660e01b815260040162002a49979695949392919062007c96565b600060405180830381600087803b15801562002a6457600080fd5b505af115801562002a79573d6000803e3d6000fd5b5050505050505062002d22565b62002b0c8673ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002ad6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002afc919062007a0d565b62002b0662005825565b6200580d565b1562002d21576000869050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ca385598876040518263ffffffff1660e01b815260040162002b74919062006075565b600060405180830381600087803b15801562002b8f57600080fd5b505af115801562002ba4573d6000803e3d6000fd5b50505050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0bb064c87848473ffffffffffffffffffffffffffffffffffffffff16634b270a466040518163ffffffff1660e01b81526004016040805180830381865afa15801562002c33573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002c59919062007c20565b8573ffffffffffffffffffffffffffffffffffffffff1663235c36036040518163ffffffff1660e01b81526004016040805180830381865afa15801562002ca4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002cca919062007c20565b6040518563ffffffff1660e01b815260040162002ceb949392919062007d14565b600060405180830381600087803b15801562002d0657600080fd5b505af115801562002d1b573d6000803e3d6000fd5b50505050505b5b84600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550600a859080600181540180825580915050600190039060005260206000209060029182820401919006600c029091909190916101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555050505050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b815260040162002e55919062006c42565b602060405180830381865afa15801562002e73573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002e99919062007559565b905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bd7d9d85846040518263ffffffff1660e01b815260040162002f25919062006075565b61016060405180830381865afa15801562002f44573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002f6a919062007e88565b905062002f7c81600001518462005838565b62002fbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002fb59062007f0b565b60405180910390fd5b600060196000846bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020604051806101000160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016001820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160018201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160048201604051806040016040529081600082015481526020016001820154815250508152602001600682016040518060400160405290816000820154815260200160018201548152505081525050905060008160800151905060003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003260573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003286919062007661565b73ffffffffffffffffffffffffffffffffffffffff1663df33330b876040518263ffffffff1660e01b8152600401620032c0919062006075565b602060405180830381865afa158015620032de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003304919062007730565b90506000601b600085604001516bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020600001600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050620033708460c0015162005861565b15620033f3578273ffffffffffffffffffffffffffffffffffffffff1663beabacc8838388606001516040518463ffffffff1660e01b8152600401620033b99392919062007f2d565b600060405180830381600087803b158015620033d457600080fd5b505af1158015620033e9573d6000803e3d6000fd5b50505050620034fb565b6000806200340a87606001518760c001516200546c565b915091508473ffffffffffffffffffffffffffffffffffffffff1663beabacc8858860a00151856040518463ffffffff1660e01b8152600401620034519392919062007f2d565b600060405180830381600087803b1580156200346c57600080fd5b505af115801562003481573d6000803e3d6000fd5b505050508473ffffffffffffffffffffffffffffffffffffffff1663beabacc88585846040518463ffffffff1660e01b8152600401620034c49392919062007f2d565b600060405180830381600087803b158015620034df57600080fd5b505af1158015620034f4573d6000803e3d6000fd5b5050505050505b50505050505050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006001905090565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003583573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620035a9919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462003619576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200361090620077b2565b60405180910390fd5b60006002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054620036559062007f99565b80601f0160208091040260200160405190810160405280929190818152602001828054620036839062007f99565b8015620036d45780601f10620036a857610100808354040283529160200191620036d4565b820191906000526020600020905b815481529060010190602001808311620036b657829003601f168201915b505050505081526020016002820160009054906101000a900460ff16151515158152505090508181600001511462003743576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200373a9062008044565b60405180910390fd5b60008160400190151590811515815250506200375f8162005882565b505050565b6000600a82815481106200377d576200377c62007955565b5b9060005260206000209060029182820401919006600c029054906101000a90046bffffffffffffffffffffffff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462003845576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200383c90620074ae565b60405180910390fd5b600060106000836bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020905042816007018190555080600401544262003893919062008095565b8160080181905550601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a7f3669b83620038e4620057ab565b84600001600c9054906101000a900460ff166200390062005939565b6040518563ffffffff1660e01b8152600401620039219493929190620080d0565b6020604051808303816000875af115801562003941573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620039679190620076e7565b81600001600c6101000a81548160ff021916908360ff1602179055505050565b6000600380549050905090565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b8152600401620039f2919062006c42565b602060405180830381865afa15801562003a10573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003a36919062007559565b905060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663df33330b826040518263ffffffff1660e01b815260040162003a93919062006075565b602060405180830381865afa15801562003ab1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003ad7919062007730565b9150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362003b3757600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662003b39565b815b91505090565b600081565b600062003b6d82600560008681526020019081526020016000206200594c90919063ffffffff16565b905092915050565b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601b6000856bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000209050828160010160008201518160000155602082015181600101559050508181600301600082015181600001556020820151816001015590505050505050565b60008160405160200162003c63919062006f4e565b604051602081830303815290604052805190602001209050919050565b600060196000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600760008560ff1660ff16815260200190815260200160002060008460ff1660ff16815260200190815260200160002060008360ff1660ff16815260200190815260200160002060009054906101000a900460ff1662003d7d57848484846040517f33760ddc00000000000000000000000000000000000000000000000000000000815260040162003d749493929190620080d0565b60405180910390fd5b62003d928462003d8c620057ab565b6200580d565b1562003ddb577f3453c320908f5844705a0f2acbb230412df911a60544eca9236d16f5f9f1f6f685848460405162003dcd939291906200811d565b60405180910390a162003f16565b62003df08462003dea62005968565b6200580d565b1562003e39577f92e25bf636cb4bfa6edf8b4fa57c0d64b6d959e3c6376d17c9bcc168fe36be1985848460405162003e2b939291906200811d565b60405180910390a162003f15565b62003e4e8462003e48620057fa565b6200580d565b8062003e6b575062003e6a8462003e646200597b565b6200580d565b5b8062003e88575062003e878462003e8162005825565b6200580d565b5b1562003ed3577fcc75054af33cdb7ef0c6dd9d4cb6f22e1dc2d22204db49d769d5da19579fb84e8585858560405162003ec59493929190620080d0565b60405180910390a162003f14565b84846040517f092b31d400000000000000000000000000000000000000000000000000000000815260040162003f0b9291906200815a565b60405180910390fd5b5b5b819050949350505050565b60003073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003f6f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003f95919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462004005576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162003ffc90620077b2565b60405180910390fd5b62004010826200598e565b9050919050565b6040518060400160405280600b81526020017f4f7261636c654f776e657200000000000000000000000000000000000000000081525081565b6000600a80549050905090565b3373ffffffffffffffffffffffffffffffffffffffff16601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620040f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620040e790620074ae565b60405180910390fd5b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bd7d9d85846040518263ffffffff1660e01b81526004016200414f919062006075565b61016060405180830381865afa1580156200416e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062004194919062007e88565b9050620041a681600001518462005838565b620041e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620041df90620081d7565b60405180910390fd5b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634fd077f5846040518263ffffffff1660e01b815260040162004247919062006075565b61014060405180830381865afa15801562004266573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200428c919062008335565b90506200429e81600001518462005838565b620042e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620042d790620083de565b60405180910390fd5b600081604001519050600060146000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000209050620043448160000160009054906101000a90046bffffffffffffffffffffffff168362005838565b62004386576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200437d9062008450565b60405180910390fd5b836040015181600201548260010154620043a1919062008472565b1015620043e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620043dc90620084fd565b60405180910390fd5b8360400151816002016000828254620043ff919062008095565b92505081905550505050505050565b60003373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620044a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200449a90620079d4565b60405180910390fd5b81600001519050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b8152600401620044f391906200759c565b602060405180830381865af415801562004511573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620045379190620075ea565b801562004619575060086000826bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__63c4cade9d9091836040518363ffffffff1660e01b8152600401620045d49291906200851f565b602060405180830381865af4158015620045f2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620046189190620075ea565b5b6200465b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162004652906200859c565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620046a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620046cf919062007661565b73ffffffffffffffffffffffffffffffffffffffff16634c3371cd836040518263ffffffff1660e01b815260040162004709919062006075565b60a060405180830381865afa15801562004727573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200474d919062008659565b604001519050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a7f3669b838360086000876bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020600001600c9054906101000a900460ff1687602001516040518563ffffffff1660e01b8152600401620047f99493929190620080d0565b6020604051808303816000875af115801562004819573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200483f9190620076e7565b508260086000846bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548160ff021916908360ff16021790555060408201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555090505050919050565b6200492262005eb0565b60106000836bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020604051806101600160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a900460ff1660ff1660ff16815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481526020016006820154815260200160078201548152602001600882015481526020016009820154815250509050919050565b62004a2362005f1b565b600260008381526020019081526020016000206040518060600160405290816000820154815260200160018201805462004a5d9062007f99565b80601f016020809104026020016040519081016040528092919081815260200182805462004a8b9062007f99565b801562004adc5780601f1062004ab05761010080835404028352916020019162004adc565b820191906000526020600020905b81548152906001019060200180831162004abe57829003601f168201915b505050505081526020016002820160009054906101000a900460ff1615151515815250509050919050565b600062004b2660056000848152602001908152602001600020620059c7565b9050919050565b60146000826bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6352694ee890916040518263ffffffff1660e01b815260040162004bc091906200759c565b602060405180830381865af415801562004bde573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062004c049190620075ea565b62004c46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162004c3d90620086db565b60405180910390fd5b6040518060600160405280826bffffffffffffffffffffffff1681526020016402540be4008152602001600081525060146000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600101556040820151816002015590505050565b6040518060800160405280856bffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200182815250601b6000866bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604082015181600101600082015181600001556020820151816001015550506060820151816003016000820151816000015560208201518160010155505090505050505050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562004e7a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062004ea0919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462004f10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162004f0790620077b2565b60405180910390fd5b8160026000848152602001908152602001600020600001541462004f6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162004f62906200874d565b60405180910390fd5b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062004ffb8160056000858152602001908152602001600020620059de90919063ffffffff16565b505050565b600060196000856bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000209050828160040160008201518160000155602082015181600101559050508181600601600082015181600001556020820151816001015590505050505050565b6000600760008560ff1660ff16815260200190815260200160002060008460ff1660ff16815260200190815260200160002060008360ff1660ff16815260200190815260200160002060009054906101000a900460ff1690509392505050565b6040518060400160405280600981526020017f506f6f6c4f776e6572000000000000000000000000000000000000000000000081525081565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562005156573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200517c919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620051ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620051e390620077b2565b60405180910390fd5b60006002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054620052289062007f99565b80601f0160208091040260200160405190810160405280929190818152602001828054620052569062007f99565b8015620052a75780601f106200527b57610100808354040283529160200191620052a7565b820191906000526020600020905b8154815290600101906020018083116200528957829003601f168201915b505050505081526020016002820160009054906101000a900460ff16151515158152505090508181600001511462005316576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200530d90620087e5565b60405180910390fd5b6001816040019015159081151581525050620053328162005882565b505050565b6200534162005f41565b60086000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a900460ff1660ff1660ff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509050919050565b6040518060400160405280600c81526020017f50726f647563744f776e6572000000000000000000000000000000000000000081525081565b6000806000620054fd73__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__6392ae8ce0876040518263ffffffff1660e01b8152600401620054ae919062008818565b602060405180830381865af4158015620054cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620054f2919062008835565b856000015162005a10565b9050836020015173__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__63d05b0452836040518263ffffffff1660e01b81526004016200553d919062008878565b602060405180830381865af41580156200555b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062005581919062008895565b6200558d919062008095565b925082856200559d919062008472565b9150509250929050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000620055e882620055e2620057fa565b6200580d565b1562005668573073ffffffffffffffffffffffffffffffffffffffff16636c137ea96040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200563a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620056609190620088de565b905062005793565b6200567d826200567762005825565b6200580d565b15620056fd573073ffffffffffffffffffffffffffffffffffffffff166332e3a6e96040518163ffffffff1660e01b8152600401602060405180830381865afa158015620056cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620056f59190620088de565b905062005793565b62005712826200570c6200597b565b6200580d565b1562005792573073ffffffffffffffffffffffffffffffffffffffff16632a5f6e856040518163ffffffff1660e01b8152600401602060405180830381865afa15801562005764573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200578a9190620088de565b905062005793565b5b919050565b6000620057a6603262005a2f565b905090565b6000620057b9605a62005a2f565b905090565b6000620057e8836000018373ffffffffffffffffffffffffffffffffffffffff1660001b62005a39565b905092915050565b6000819050919050565b600062005808603c62005a2f565b905090565b60008160ff168360ff1614905092915050565b600090565b600062005833605062005a2f565b905090565b6000816bffffffffffffffffffffffff16836bffffffffffffffffffffffff1614905092915050565b60008082602001511480156200587b575060008260000151145b9050919050565b6000816000015190506000801b8103620058db57620058a5826020015162003c4e565b90508082600001818152505060038190806001815401808255809150506001900390600052602060002001600090919091909150555b816002600083815260200190815260200160002060008201518160000155602082015181600101908162005910919062008ab0565b5060408201518160020160006101000a81548160ff021916908315150217905550905050919050565b600062005947606462005aad565b905090565b60006200595d836000018362005ab7565b60001c905092915050565b600062005976605162005a2f565b905090565b600062005989604662005a2f565b905090565b60008060405180606001604052806000801b8152602001848152602001600115158152509050620059bf8162005882565b915050919050565b6000620059d78260000162005ae5565b9050919050565b600062005a08836000018373ffffffffffffffffffffffffffffffffffffffff1660001b62005af6565b905092915050565b600062005a278383670de0b6b3a764000062005c1a565b905092915050565b6000819050919050565b600062005a47838362005d33565b62005aa257826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062005aa7565b600090505b92915050565b6000819050919050565b600082600001828154811062005ad25762005ad162007955565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b6000808360010160008481526020019081526020016000205490506000811462005c0e57600060018262005b2b919062008472565b905060006001866000018054905062005b45919062008472565b905081811462005bbb57600086600001828154811062005b6a5762005b6962007955565b5b906000526020600020015490508087600001848154811062005b915762005b9062007955565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b8560000180548062005bd25762005bd162008b97565b5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505062005c14565b60009150505b92915050565b600080600080198587098587029250828110838203039150506000810362005c5a5783828162005c4f5762005c4e62008bc6565b5b049250505062005d2c565b80841162005c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162005c969062008c45565b60405180910390fd5b60008486880990508281118203915080830392506000600186190186169050808604955080840493506001818260000304019050808302841793506000600287600302189050808702600203810290508087026002038102905080870260020381029050808702600203810290508087026002038102905080870260020381029050808502955050505050505b9392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6103e58062008c6883390190565b604051806080016040528060006bffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200162005dab62005f89565b815260200162005dba62005f89565b81525090565b60405180610100016040528060006bffffffffffffffffffffffff16815260200160006bffffffffffffffffffffffff16815260200160006bffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200162005e6c62005f89565b815260200162005e7b62005f89565b81525090565b604051806060016040528060006bffffffffffffffffffffffff16815260200160008152602001600081525090565b60405180610160016040528060006bffffffffffffffffffffffff168152602001600060ff1681526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604051806060016040528060008019168152602001606081526020016000151581525090565b604051806060016040528060006bffffffffffffffffffffffff168152602001600060ff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681525090565b604051806040016040528060008152602001600081525090565b6000604051905090565b600080fd5b600080fd5b60006bffffffffffffffffffffffff82169050919050565b62005fda8162005fb7565b811462005fe657600080fd5b50565b60008135905062005ffa8162005fcf565b92915050565b60006020828403121562006019576200601862005fad565b5b6000620060298482850162005fe9565b91505092915050565b6000819050919050565b60006200605d62006057620060518462005fb7565b62006032565b62005fb7565b9050919050565b6200606f816200603c565b82525050565b60006020820190506200608c600083018462006064565b92915050565b6000819050919050565b620060a78162006092565b82525050565b6000602082019050620060c460008301846200609c565b92915050565b600060ff82169050919050565b620060e281620060ca565b8114620060ee57600080fd5b50565b6000813590506200610281620060d7565b92915050565b60006020828403121562006121576200612062005fad565b5b60006200613184828501620060f1565b91505092915050565b60006200615b620061556200614f84620060ca565b62006032565b620060ca565b9050919050565b6200616d816200613a565b82525050565b60006020820190506200618a600083018462006162565b92915050565b6200619b816200613a565b82525050565b6000602082019050620061b8600083018462006190565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200620e82620061c3565b810181811067ffffffffffffffff8211171562006230576200622f620061d4565b5b80604052505050565b60006200624562005fa3565b905062006253828262006203565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620062858262006258565b9050919050565b620062978162006278565b8114620062a357600080fd5b50565b600081359050620062b7816200628c565b92915050565b600060a08284031215620062d657620062d5620061be565b5b620062e260a062006239565b90506000620062f48482850162005fe9565b60008301525060206200630a8482850162005fe9565b60208301525060406200632084828501620060f1565b60408301525060606200633684828501620062a6565b60608301525060806200634c84828501620062a6565b60808301525092915050565b620063638162006092565b81146200636f57600080fd5b50565b600081359050620063838162006358565b92915050565b6000806000806000806101408789031215620063aa57620063a962005fad565b5b6000620063ba89828a01620062bd565b96505060a0620063cd89828a01620062a6565b95505060c0620063e089828a0162006372565b94505060e0620063f389828a0162006372565b9350506101006200640789828a0162006372565b9250506101206200641b89828a0162005fe9565b9150509295509295509295565b60008115159050919050565b6200643f8162006428565b82525050565b60006020820190506200645c600083018462006434565b92915050565b6000819050919050565b620064778162006462565b82525050565b60006020820190506200649460008301846200646c565b92915050565b600060208284031215620064b357620064b262005fad565b5b6000620064c384828501620062a6565b91505092915050565b620064d78162006462565b8114620064e357600080fd5b50565b600081359050620064f781620064cc565b92915050565b6000806040838503121562006517576200651662005fad565b5b60006200652785828601620064e6565b92505060206200653a85828601620062a6565b9150509250929050565b6000620065518262006278565b9050919050565b620065638162006544565b81146200656f57600080fd5b50565b600081359050620065838162006558565b92915050565b620065948162006092565b8114620065a057600080fd5b50565b600081359050620065b48162006589565b92915050565b600060408284031215620065d357620065d2620061be565b5b620065df604062006239565b90506000620065f184828501620065a3565b6000830152506020620066078482850162006372565b60208301525092915050565b6000806000806000806000610120888a03121562006636576200663562005fad565b5b6000620066468a828b0162005fe9565b9750506020620066598a828b0162005fe9565b96505060406200666c8a828b0162005fe9565b95505060606200667f8a828b0162006572565b9450506080620066928a828b01620062a6565b93505060a0620066a58a828b01620065ba565b92505060e0620066b88a828b01620065ba565b91505092959891949750929550565b620066d2816200603c565b82525050565b620066e38162006278565b82525050565b60006200670a62006704620066fe8462006092565b62006032565b62006092565b9050919050565b6200671c81620066e9565b82525050565b6200672d8162006092565b82525050565b6040820160008201516200674b600085018262006711565b50602082015162006760602085018262006722565b50505050565b60c0820160008201516200677e6000850182620066c7565b506020820151620067936020850182620066d8565b506040820151620067a8604085018262006733565b506060820151620067bd608085018262006733565b50505050565b600060c082019050620067da600083018462006766565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156200681c578082015181840152602081019050620067ff565b60008484015250505050565b60006200683582620067e0565b620068418185620067eb565b935062006853818560208601620067fc565b6200685e81620061c3565b840191505092915050565b6000602082019050818103600083015262006885818462006828565b905092915050565b6000620068ae620068a8620068a28462006258565b62006032565b62006258565b9050919050565b6000620068c2826200688d565b9050919050565b6000620068d682620068b5565b9050919050565b620068e881620068c9565b82525050565b6000602082019050620069056000830184620068dd565b92915050565b60006200691882620068b5565b9050919050565b6200692a816200690b565b82525050565b60006200693d82620068b5565b9050919050565b6200694f8162006930565b82525050565b610140820160008201516200696e6000850182620066c7565b506020820151620069836020850182620066c7565b506040820151620069986040850182620066c7565b506060820151620069ad60608501826200691f565b506080820151620069c2608085018262006944565b5060a0820151620069d760a0850182620066d8565b5060c0820151620069ec60c085018262006733565b5060e082015162006a0261010085018262006733565b50505050565b60006101408201905062006a20600083018462006955565b92915050565b60006020828403121562006a3f5762006a3e62005fad565b5b600062006a4f8482850162006372565b91505092915050565b60608201600082015162006a706000850182620066c7565b50602082015162006a85602085018262006722565b50604082015162006a9a604085018262006722565b50505050565b600060608201905062006ab7600083018462006a58565b92915050565b600062006aca82620068b5565b9050919050565b62006adc8162006abd565b82525050565b600060208201905062006af9600083018462006ad1565b92915050565b600062006b0c8262006278565b9050919050565b62006b1e8162006aff565b811462006b2a57600080fd5b50565b60008135905062006b3e8162006b13565b92915050565b60006020828403121562006b5d5762006b5c62005fad565b5b600062006b6d8482850162006b2d565b91505092915050565b6000806040838503121562006b905762006b8f62005fad565b5b600062006ba08582860162005fe9565b925050602062006bb38582860162005fe9565b9150509250929050565b600062006bca82620068b5565b9050919050565b62006bdc8162006bbd565b82525050565b600060208201905062006bf9600083018462006bd1565b92915050565b60006020828403121562006c185762006c1762005fad565b5b600062006c2884828501620064e6565b91505092915050565b62006c3c8162006278565b82525050565b600060208201905062006c59600083018462006c31565b92915050565b6000806040838503121562006c795762006c7862005fad565b5b600062006c8985828601620064e6565b925050602062006c9c8582860162006372565b9150509250929050565b600080600060a0848603121562006cc25762006cc162005fad565b5b600062006cd28682870162005fe9565b935050602062006ce586828701620065ba565b925050606062006cf886828701620065ba565b9150509250925092565b600080fd5b600080fd5b600067ffffffffffffffff82111562006d2a5762006d29620061d4565b5b62006d3582620061c3565b9050602081019050919050565b82818337600083830152505050565b600062006d6862006d628462006d0c565b62006239565b90508281526020810184848401111562006d875762006d8662006d07565b5b62006d9484828562006d42565b509392505050565b600082601f83011262006db45762006db362006d02565b5b813562006dc684826020860162006d51565b91505092915050565b60006020828403121562006de85762006de762005fad565b5b600082013567ffffffffffffffff81111562006e095762006e0862005fb2565b5b62006e178482850162006d9c565b91505092915050565b62006e2b8162006930565b82525050565b600060208201905062006e48600083018462006e20565b92915050565b62006e5981620060ca565b811462006e6557600080fd5b50565b60008135905062006e798162006e4e565b92915050565b6000806000806080858703121562006e9c5762006e9b62005fad565b5b600062006eac8782880162005fe9565b945050602062006ebf87828801620060f1565b935050604062006ed28782880162006e68565b925050606062006ee58782880162006e68565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b600062006f1a8262006ef1565b62006f26818562006efc565b935062006f38818560208601620067fc565b62006f4381620061c3565b840191505092915050565b6000602082019050818103600083015262006f6a818462006f0d565b905092915050565b600062006f7f8262006278565b9050919050565b62006f918162006f72565b811462006f9d57600080fd5b50565b60008135905062006fb18162006f86565b92915050565b60006060828403121562006fd05762006fcf620061be565b5b62006fdc606062006239565b9050600062006fee8482850162005fe9565b6000830152506020620070048482850162006e68565b60208301525060406200701a8482850162006fa0565b60408301525092915050565b6000606082840312156200703f576200703e62005fad565b5b60006200704f8482850162006fb7565b91505092915050565b62007063816200613a565b82525050565b61016082016000820151620070826000850182620066c7565b50602082015162007097602085018262007058565b506040820151620070ac604085018262006722565b506060820151620070c1606085018262006722565b506080820151620070d6608085018262006722565b5060a0820151620070eb60a085018262006722565b5060c08201516200710060c085018262006722565b5060e08201516200711560e085018262006722565b506101008201516200712c61010085018262006722565b506101208201516200714361012085018262006722565b506101408201516200715a61014085018262006722565b50505050565b60006101608201905062007178600083018462007069565b92915050565b620071898162006462565b82525050565b600082825260208201905092915050565b6000620071ad8262006ef1565b620071b981856200718f565b9350620071cb818560208601620067fc565b620071d681620061c3565b840191505092915050565b620071ec8162006428565b82525050565b60006060830160008301516200720c60008601826200717e565b5060208301518482036020860152620072268282620071a0565b91505060408301516200723d6040860182620071e1565b508091505092915050565b60006020820190508181036000830152620072648184620071f2565b905092915050565b60008060008060c0858703121562007289576200728862005fad565b5b6000620072998782880162005fe9565b9450506020620072ac87828801620062a6565b9350506040620072bf87828801620065ba565b9250506080620072d287828801620065ba565b91505092959194509250565b600080600060608486031215620072fa57620072f962005fad565b5b60006200730a86828701620060f1565b93505060206200731d8682870162006e68565b9250506040620073308682870162006e68565b9150509250925092565b60006200734782620068b5565b9050919050565b62007359816200733a565b82525050565b606082016000820151620073776000850182620066c7565b5060208201516200738c602085018262007058565b506040820151620073a160408501826200734e565b50505050565b6000606082019050620073be60008301846200735f565b92915050565b60008060608385031215620073de57620073dd62005fad565b5b6000620073ee8582860162006372565b92505060206200740185828601620065ba565b9150509250929050565b60006040820190506200742260008301856200609c565b6200743160208301846200609c565b9392505050565b7f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f53455256494360008201527f4500000000000000000000000000000000000000000000000000000000000000602082015250565b60006200749660218362006efc565b9150620074a38262007438565b604082019050919050565b60006020820190508181036000830152620074c98162007487565b9050919050565b7f4552524f523a5052442d3030313a52454749535452595f5a45524f0000000000600082015250565b600062007508601b8362006efc565b91506200751582620074d0565b602082019050919050565b600060208201905081810360008301526200753b81620074f9565b9050919050565b600081519050620075538162005fcf565b92915050565b60006020828403121562007572576200757162005fad565b5b6000620075828482850162007542565b91505092915050565b62007596816200603c565b82525050565b6000602082019050620075b360008301846200758b565b92915050565b620075c48162006428565b8114620075d057600080fd5b50565b600081519050620075e481620075b9565b92915050565b60006020828403121562007603576200760262005fad565b5b60006200761384828501620075d3565b91505092915050565b6000620076298262006278565b9050919050565b6200763b816200761c565b81146200764757600080fd5b50565b6000815190506200765b8162007630565b92915050565b6000602082840312156200767a576200767962005fad565b5b60006200768a848285016200764a565b91505092915050565b6000606082019050620076aa600083018662006064565b620076b9602083018562006190565b620076c8604083018462006c31565b949350505050565b600081519050620076e18162006e4e565b92915050565b6000602082840312156200770057620076ff62005fad565b5b60006200771084828501620076d0565b91505092915050565b6000815190506200772a816200628c565b92915050565b60006020828403121562007749576200774862005fad565b5b6000620077598482850162007719565b91505092915050565b7f4552524f523a41434d2d3030313a4e4f545f4f574e4552000000000000000000600082015250565b60006200779a60178362006efc565b9150620077a78262007762565b602082019050919050565b60006020820190508181036000830152620077cd816200778b565b9050919050565b7f4552524f523a41434d2d3031303a524f4c455f4e4f545f4558495354494e4700600082015250565b60006200780c601f8362006efc565b91506200781982620077d4565b602082019050919050565b600060208201905081810360008301526200783f81620077fd565b9050919050565b7f4552524f523a41434d2d3031313a524f4c455f4e4f545f414354495645000000600082015250565b60006200787e601d8362006efc565b91506200788b8262007846565b602082019050919050565b60006020820190508181036000830152620078b1816200786f565b9050919050565b6000606082019050620078cf60008301866200646c565b620078de602083018562006c31565b620078ed604083018462006434565b949350505050565b6000819050919050565b6000620079206200791a6200791484620078f5565b62006032565b620060ca565b9050919050565b6200793281620078ff565b82525050565b60006020820190506200794f600083018462007927565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500600082015250565b6000620079bc601f8362006efc565b9150620079c98262007984565b602082019050919050565b60006020820190508181036000830152620079ef81620079ad565b9050919050565b60008151905062007a0781620060d7565b92915050565b60006020828403121562007a265762007a2562005fad565b5b600062007a3684828501620079f6565b91505092915050565b600060408201905062007a5660008301856200646c565b62007a65602083018462006c31565b9392505050565b7f4552524f523a434d502d3030343a545950455f524f4c455f4d495353494e4700600082015250565b600062007aa4601f8362006efc565b915062007ab18262007a6c565b602082019050919050565b6000602082019050818103600083015262007ad78162007a95565b9050919050565b60008151905062007aef8162006f86565b92915050565b60006020828403121562007b0e5762007b0d62005fad565b5b600062007b1e8482850162007ade565b91505092915050565b7f4552524f523a434d502d3030353a504f4f4c5f554e4b4e4f574e000000000000600082015250565b600062007b5f601a8362006efc565b915062007b6c8262007b27565b602082019050919050565b6000602082019050818103600083015262007b928162007b50565b9050919050565b60008151905062007baa8162006589565b92915050565b60008151905062007bc18162006358565b92915050565b60006040828403121562007be05762007bdf620061be565b5b62007bec604062006239565b9050600062007bfe8482850162007b99565b600083015250602062007c148482850162007bb0565b60208301525092915050565b60006040828403121562007c395762007c3862005fad565b5b600062007c498482850162007bc7565b91505092915050565b62007c5d816200733a565b82525050565b60408201600082015162007c7b600085018262006711565b50602082015162007c90602085018262006722565b50505050565b60006101208201905062007cae600083018a62006064565b62007cbd602083018962006064565b62007ccc604083018862006064565b62007cdb606083018762007c52565b62007cea608083018662006c31565b62007cf960a083018562007c63565b62007d0860e083018462007c63565b98975050505050505050565b600060c08201905062007d2b600083018762006064565b62007d3a602083018662006c31565b62007d49604083018562007c63565b62007d58608083018462007c63565b95945050505050565b6000610160828403121562007d7b5762007d7a620061be565b5b62007d8861016062006239565b9050600062007d9a8482850162007542565b600083015250602062007db084828501620076d0565b602083015250604062007dc68482850162007bb0565b604083015250606062007ddc8482850162007bb0565b606083015250608062007df28482850162007bb0565b60808301525060a062007e088482850162007bb0565b60a08301525060c062007e1e8482850162007bb0565b60c08301525060e062007e348482850162007bb0565b60e08301525061010062007e4b8482850162007bb0565b6101008301525061012062007e638482850162007bb0565b6101208301525061014062007e7b8482850162007bb0565b6101408301525092915050565b6000610160828403121562007ea25762007ea162005fad565b5b600062007eb28482850162007d61565b91505092915050565b7f4552524f523a5452532d3032303a504f4c4943595f554e4b4e4f574e00000000600082015250565b600062007ef3601c8362006efc565b915062007f008262007ebb565b602082019050919050565b6000602082019050818103600083015262007f268162007ee4565b9050919050565b600060608201905062007f44600083018662006c31565b62007f53602083018562006c31565b62007f6260408301846200609c565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062007fb257607f821691505b60208210810362007fc85762007fc762007f6a565b5b50919050565b7f4552524f523a414f532d3030313a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b60006200802c60218362006efc565b9150620080398262007fce565b604082019050919050565b600060208201905081810360008301526200805f816200801d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620080a28262006092565b9150620080af8362006092565b9250828201905080821115620080ca57620080c962008066565b5b92915050565b6000608082019050620080e7600083018762006064565b620080f6602083018662006190565b62008105604083018562006162565b62008114606083018462006162565b95945050505050565b600060608201905062008134600083018662006064565b62008143602083018562006162565b62008152604083018462006162565b949350505050565b600060408201905062008171600083018562006064565b62008180602083018462006190565b9392505050565b7f4552524f523a504c2d3030323a504f4c4943595f554e4b4e4f574e0000000000600082015250565b6000620081bf601b8362006efc565b9150620081cc8262008187565b602082019050919050565b60006020820190508181036000830152620081f281620081b0565b9050919050565b6000815190506200820a8162006558565b92915050565b60006200821d8262006278565b9050919050565b6200822f8162008210565b81146200823b57600080fd5b50565b6000815190506200824f8162008224565b92915050565b600061014082840312156200826f576200826e620061be565b5b6200827c61010062006239565b905060006200828e8482850162007542565b6000830152506020620082a48482850162007542565b6020830152506040620082ba8482850162007542565b6040830152506060620082d084828501620081f9565b6060830152506080620082e6848285016200823e565b60808301525060a0620082fc8482850162007719565b60a08301525060c0620083128482850162007bc7565b60c083015250610100620083298482850162007bc7565b60e08301525092915050565b600061014082840312156200834f576200834e62005fad565b5b60006200835f8482850162008255565b91505092915050565b7f4552524f523a504c2d3030333a50524f445543545f53455455505f4d4953534960008201527f4e47000000000000000000000000000000000000000000000000000000000000602082015250565b6000620083c660228362006efc565b9150620083d38262008368565b604082019050919050565b60006020820190508181036000830152620083f981620083b7565b9050919050565b7f4552524f523a504c2d3030343a504f4f4c5f554e4b4e4f574e00000000000000600082015250565b60006200843860198362006efc565b9150620084458262008400565b602082019050919050565b600060208201905081810360008301526200846b8162008429565b9050919050565b60006200847f8262006092565b91506200848c8362006092565b9250828203905081811115620084a757620084a662008066565b5b92915050565b7f4552524f523a504c2d3030353a43415041434954595f544f4f5f4c4f57000000600082015250565b6000620084e5601d8362006efc565b9150620084f282620084ad565b602082019050919050565b600060208201905081810360008301526200851881620084d6565b9050919050565b60006040820190506200853660008301856200758b565b6200854560208301846200758b565b9392505050565b7f4552524f523a434d502d3030363a434f4d504f4e454e545f554e4b4e4f574e00600082015250565b600062008584601f8362006efc565b915062008591826200854c565b602082019050919050565b60006020820190508181036000830152620085b78162008575565b9050919050565b600060a08284031215620085d757620085d6620061be565b5b620085e360a062006239565b90506000620085f58482850162007542565b60008301525060206200860b8482850162007542565b60208301525060406200862184828501620079f6565b6040830152506060620086378482850162007719565b60608301525060806200864d8482850162007719565b60808301525092915050565b600060a0828403121562008672576200867162005fad565b5b60006200868284828501620085be565b91505092915050565b7f4552524f523a504c2d3030313a414c52454144595f4352454154454400000000600082015250565b6000620086c3601c8362006efc565b9150620086d0826200868b565b602082019050919050565b60006020820190508181036000830152620086f681620086b4565b9050919050565b7f4552524f523a41434d2d3032303a524f4c455f4e4f545f4558495354494e4700600082015250565b600062008735601f8362006efc565b91506200874282620086fd565b602082019050919050565b60006020820190508181036000830152620087688162008726565b9050919050565b7f4552524f523a414f532d3030323a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b6000620087cd60218362006efc565b9150620087da826200876f565b604082019050919050565b600060208201905081810360008301526200880081620087be565b9050919050565b620088128162006092565b82525050565b60006020820190506200882f600083018462008807565b92915050565b6000602082840312156200884e576200884d62005fad565b5b60006200885e8482850162007b99565b91505092915050565b6200887281620066e9565b82525050565b60006020820190506200888f600083018462008867565b92915050565b600060208284031215620088ae57620088ad62005fad565b5b6000620088be8482850162007bb0565b91505092915050565b600081519050620088d881620064cc565b92915050565b600060208284031215620088f757620088f662005fad565b5b60006200890784828501620088c7565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620089747fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262008935565b62008980868362008935565b95508019841693508086168417925050509392505050565b6000819050919050565b620089ad83620066e9565b620089c5620089bc8262008998565b84845462008942565b825550505050565b600090565b620089dc620089cd565b620089e9818484620089a2565b505050565b5b8181101562008a115762008a05600082620089d2565b600181019050620089ef565b5050565b601f82111562008a605762008a2a8162008910565b62008a358462008925565b8101602085101562008a45578190505b62008a5d62008a548562008925565b830182620089ee565b50505b505050565b600082821c905092915050565b600062008a856000198460080262008a65565b1980831691505092915050565b600062008aa0838362008a72565b9150826002028217905092915050565b62008abb8262006ef1565b67ffffffffffffffff81111562008ad75762008ad6620061d4565b5b62008ae3825462007f99565b62008af082828562008a15565b600060209050601f83116001811462008b28576000841562008b13578287015190505b62008b1f858262008a92565b86555062008b8f565b601f19841662008b388662008910565b60005b8281101562008b625784890151825560018201915060208501945060208101905062008b3b565b8683101562008b82578489015162008b7e601f89168262008a72565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4d6174683a206d756c446976206f766572666c6f770000000000000000000000600082015250565b600062008c2d60158362006efc565b915062008c3a8262008bf5565b602082019050919050565b6000602082019050818103600083015262008c608162008c1e565b905091905056fe608060405234801561001057600080fd5b506040516103e53803806103e5833981810160405281019061003291906100db565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050610108565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006100a88261007d565b9050919050565b6100b88161009d565b81146100c357600080fd5b50565b6000815190506100d5816100af565b92915050565b6000602082840312156100f1576100f0610078565b5b60006100ff848285016100c6565b91505092915050565b6102ce806101176000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063beabacc814610030575b600080fd5b61004a6004803603810190610045919061018b565b61004c565b005b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd8484846040518463ffffffff1660e01b81526004016100a9939291906101fc565b6020604051808303816000875af11580156100c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100ec919061026b565b50505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610122826100f7565b9050919050565b61013281610117565b811461013d57600080fd5b50565b60008135905061014f81610129565b92915050565b6000819050919050565b61016881610155565b811461017357600080fd5b50565b6000813590506101858161015f565b92915050565b6000806000606084860312156101a4576101a36100f2565b5b60006101b286828701610140565b93505060206101c386828701610140565b92505060406101d486828701610176565b9150509250925092565b6101e781610117565b82525050565b6101f681610155565b82525050565b600060608201905061021160008301866101de565b61021e60208301856101de565b61022b60408301846101ed565b949350505050565b60008115159050919050565b61024881610233565b811461025357600080fd5b50565b6000815190506102658161023f565b92915050565b600060208284031215610281576102806100f2565b5b600061028f84828501610256565b9150509291505056fea2646970667358221220584830ad6020f92961817dc65ddc7db09473de72e053fbcf657fa124b0863b5764736f6c63430008140033a264697066735822122011b6b8bf36c4608b07a694419b40e86df6783a95c6c67dedff9a6fd43649186d64736f6c63430008140033",
3125
+ "bytecode": "0x60806040523480156200001157600080fd5b50604051620071a6380380620071a68339810160408190526200003491620017c1565b826200004081620000cd565b506200004b6200014c565b6200005562000303565b6200005f6200043d565b62000069620006aa565b6301ffc9a760e01b60005260046020527f9fe05126d2d9ecf60592e254dead906a4b2e492f36cca727682c38e9008c6ac1805460ff19166001179055600680546001600160a01b03191633179055620000c4838383620007f1565b50505062001b20565b60005460ff1615620001315760405162461bcd60e51b815260206004820152602260248201527f4163636573734d616e616765643a20616c726561647920696e697469616c697a604482015261195960f21b60648201526084015b60405180910390fd5b6200013c8162000a4b565b506000805460ff19166001179055565b60dc6000908152600160208190527f81c2bf9f7c6e8ac9bd8bcd9d323e94b867d2f5054aff8759d884773c680ec1ec805460ff19166064179055906002906200019360dc90565b60ff1660ff1681526020019081526020016000206000620001b962000aa760201b60201c565b60ff1660ff1681526020019081526020016000206000620001df62000aac60201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200021360dc90565b60ff1660ff16815260200190815260200160002060006200023962000aac60201b60201c565b60ff1660ff16815260200190815260200160002060006200025f62000aa760201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200029360dc90565b60ff1660ff1681526020019081526020016000206000620002b962000aac60201b60201c565b60ff1660ff1681526020019081526020016000206000620002df62000ab160201b60201c565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f1bd07f61ef326b4de236f5b68f225f46ff76ee2c375ae31a06da201c49c70c128054606460ff1991821681179092557f879b65b464eb639409179c76c21acf6fbada740970e2300d47ea857d08cacd3c8054909116600190811790915560009182526002602052907f7673bcbb3401a7cbae68f81d40eea2cf35afdaf7ecd016ebf3f02857fcc1260a9062000397606e90565b60ff1660ff1681526020019081526020016000206000620003bd62000aa760201b60201c565b60ff16815260208101919091526040016000908120805460ff191692151592909217909155600190600290620003f1606490565b60ff1660ff16815260200190815260200160002060006200041762000aac60201b60201c565b60ff1660ff1681526020019081526020016000206000620002df62000ab660201b60201c565b60d26000908152600160208190527fcfa08e49dd9e66a4af3cdf0c2ef56f411154768307cac6dc23ee77c0386825be805460ff1916600a179055906002906200048460d290565b60ff1660ff1681526020019081526020016000206000620004aa62000abb60201b60201c565b60ff1660ff1681526020019081526020016000206000620004d062000ac060201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200050460d290565b60ff1660ff16815260200190815260200160002060006200052a62000abb60201b60201c565b60ff1660ff16815260200190815260200160002060006200055062000ac560201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200058460d290565b60ff1660ff1681526020019081526020016000206000620005aa62000abb60201b60201c565b60ff1660ff1681526020019081526020016000206000620005d062000aca60201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200060460d290565b60ff1660ff16815260200190815260200160002060006200062a62000aca60201b60201c565b60ff1660ff16815260200190815260200160002060006200065062000aa760201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200068460d290565b60ff1660ff1681526020019081526020016000206000620002b962000aa760201b60201c565b60c86000908152600160208190527f345f7c6c888721344af4147de0834159e0b302300ba13c4e7b6c0b60d8f2314e805460ff1916606417905590600290620006f160c890565b60ff1660ff16815260200190815260200160002060006200071762000aa760201b60201c565b60ff1660ff16815260200190815260200160002060006200073d62000aac60201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200077160c890565b60ff1660ff16815260200190815260200160002060006200079762000aac60201b60201c565b60ff1660ff1681526020019081526020016000206000620007bd62000aa760201b60201c565b60ff16815260208101919091526040016000908120805460ff191692151592909217909155600190600290620003f160c890565b600654600160a01b900460ff1615620008645760405162461bcd60e51b815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201526d195b881a5b9a5d1a585b1a5e995960921b606482015260840162000128565b600b80546001600160a01b0319166001600160a01b0385161790556040516368aebf7b60e01b815260006004820152620009249073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015620008d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008fb91906200181b565b60408051808201909152600981526841646d696e526f6c6560b81b602082015260008062000acf565b6040516368aebf7b60e01b81526001600160401b036004820152620009d09073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af415801562000980573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009a691906200181b565b60408051808201909152600a8152695075626c6963526f6c6560b01b602082015260008062000acf565b620009f7828260466000336040518060200160405280600081525062000bb560201b60201c565b6342e19e5f60e01b60005260046020527f643d55d460d5a1aae86a570cc022b7d04a019a39b894c5b0832a60546fd6598d805460ff1916600117905550506006805460ff60a01b1916600160a01b17905550565b60008054610100600160a81b0319166101006001600160a01b038416908102919091179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b606490565b606e90565b60c890565b60d290565b600a90565b601490565b601e90565b602890565b801562000ae65762000ae384848462000c86565b50505b600062000af585858562000f10565b8051600090815260076020526040812080546001600160401b0319166001600160401b038981169182179092556009805460018101825593527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af6004840401805460039094166008026101000a928302199093169102179055905062000bae62000b7f8662000f4c565b604080518451602080830191909152850151151581830152815180820383018152606090910190915262000fd4565b5050505050565b62000bc1828762000fe4565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166001600160681b0319909116176c0100000000000000000000000060ff8816021760ff60681b19166d01000000000000000000000000008615150217815590506001810162000c408382620018f2565b506303fb044760e21b60005260046020527f91a409085efa2cad9dad64790cb14ef1d9b61e9173e901d74242d27ef0ced4a1805460ff1916600117905550505050505050565b6000808062000c958662000f4c565b905062000ca2816200100a565b9250821562000cd75762000cb68162001098565b80602001905181019062000ccb9190620019cf565b60200151915062000cdb565b8391505b856001600160401b038116158062000cfb57506001600160401b03818116145b1562000d265760405163981bf42160e01b81526001600160401b038816600482015260240162000128565b82801562000d3e57506127106001600160401b038216105b1562000d6957604051633119b9df60e21b81526001600160401b038816600482015260240162000128565b82801562000d8257506127106001600160401b03821610155b1562000dad5760405163094fb39160e01b81526001600160401b038816600482015260240162000128565b600062000dba8762001145565b905062000dc78162001188565b60000362000df4576040516321ab17ab60e01b81526001600160401b038916600482015260240162000128565b60008181526007602090815260409182902054825163bc1b392d60e01b8152925162000e9b936001600160401b039092169273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9263bc1b392d92600480830193928290030181865af415801562000e63573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e8991906200181b565b6001600160401b039081169116141590565b801562000ec257506000818152600760205260409020546001600160401b03898116911614155b1562000f055760008181526007602052604090819020549051631660fb9360e21b81526001600160401b0390911660048201526024810182905260440162000128565b505050935093915050565b604080518082018252600080825260208201528151808301909252908062000f388562001145565b815260200183151581525090509392505050565b604051630f37f38f60e41b81526001600160401b038216600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063f37f38f090602401602060405180830381865af415801562000fa8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fce919062001a28565b92915050565b62000fe08282620011b1565b5050565b600680546001600160a01b0319166001600160a01b03841617905562000fe081620015e9565b60008181526003602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af415801562001072573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fce919062001a42565b6000818152600360205260409020600101805460609190620010ba9062001863565b80601f0160208091040260200160405190810160405280929190818152602001828054620010e89062001863565b8015620011395780601f106200110d5761010080835404028352916020019162001139565b820191906000526020600020905b8154815290600101906020018083116200111b57829003601f168201915b50505050509050919050565b600080829050601f8151111562001173578260405163305a27a960e01b815260040162000128919062001a60565b8051620011808262001ab0565b179392505050565b600060ff8216601f81111562000fce57604051632cd44ac360e21b815260040160405180910390fd5b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af415801562001205573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200122b919062001ad5565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af415801562001281573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620012a7919062001a42565b620012f55760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e454400000000604482015260640162000128565b600083815260036020526040908190208054915163037c8cb160e51b815261010090920460ff1660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af41580156200135f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001385919062001a42565b620013d35760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f43524541544544000000604482015260640162000128565b33436000620013e28562001756565b620013ef57606462001405565b60ff808616600090815260016020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b919091021785556000888152600360205260409020909150600101620014918782620018f2565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af415801562001505573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200152b919062001ad5565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156200157c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620015a2919062001afa565b6040805160ff938416815260ff19929092166020830152918416818301526001600160a01b038616606082015232608082015290519081900360a00190a150505050505050565b6005546001600160a01b031615620016245760055460405163fcdbf2d960e01b81526001600160a01b03909116600482015260240162000128565b6001600160a01b0381166200164c5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003620016845760405163fdeac91f60e01b81526001600160a01b038216600482015260240162000128565b600580546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263350fb35160e11b60048201526301ffc9a790602401602060405180830381865afa92505050801562001701575060408051601f3d908101601f19168201909252620016fe9181019062001a42565b60015b6200172b5760405163fdeac91f60e01b81526001600160a01b038216600482015260240162000128565b8062000fe05760405163fdeac91f60e01b81526001600160a01b038316600482015260240162000128565b60ff81811660009081526001602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf9060240162001054565b80516001600160a01b0381168114620017bc57600080fd5b919050565b600080600060608486031215620017d757600080fd5b620017e284620017a4565b9250620017f260208501620017a4565b60408501519092506001600160601b03811681146200181057600080fd5b809150509250925092565b6000602082840312156200182e57600080fd5b81516001600160401b03811681146200184657600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200187857607f821691505b6020821081036200189957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620018ed57600081815260208120601f850160051c81016020861015620018c85750805b601f850160051c820191505b81811015620018e957828155600101620018d4565b5050505b505050565b81516001600160401b038111156200190e576200190e6200184d565b62001926816200191f845462001863565b846200189f565b602080601f8311600181146200195e5760008415620019455750858301515b600019600386901b1c1916600185901b178555620018e9565b600085815260208120601f198616915b828110156200198f578886015182559484019460019091019084016200196e565b5085821015620019ae5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80518015158114620017bc57600080fd5b600060408284031215620019e257600080fd5b604080519081016001600160401b038111828210171562001a075762001a076200184d565b6040528251815262001a1c60208401620019be565b60208201529392505050565b60006020828403121562001a3b57600080fd5b5051919050565b60006020828403121562001a5557600080fd5b6200184682620019be565b600060208083528351808285015260005b8181101562001a8f5785810183015185820160400152820162001a71565b506000604082860101526040601f19601f8301168501019250505092915050565b80516020808301519190811015620018995760001960209190910360031b1b16919050565b60006020828403121562001ae857600080fd5b815160ff811681146200184657600080fd5b60006020828403121562001b0d57600080fd5b815160ff19811681146200184657600080fd5b6156768062001b306000396000f3fe608060405234801561001057600080fd5b50600436106104805760003560e01c806382f65adb11610257578063b7d2b16211610146578063d2f21a29116100c3578063e9e96c7011610087578063e9e96c7014610ac2578063f48016ce14610b00578063f7bc431c14610b13578063f8b648ac1461065f578063fe1f18d614610b2657600080fd5b8063d2f21a2914610a89578063d5b221bd146105d9578063d78a83b114610a9c578063dee3262314610aaf578063e8951ee6146105ab57600080fd5b8063bf7e214f1161010a578063bf7e214f14610a3a578063c2f1a2d2146105d9578063c4d66de814610a50578063c861c25014610a63578063cd50b97e14610a7657600080fd5b8063b7d2b162146109db578063bc8d4000146109ee578063bd4fe04e14610a01578063bd5947e314610a14578063bf1db3f914610a2757600080fd5b8063954fab2c116101d4578063a5961b4c11610198578063a5961b4c146108f1578063a76ee018146109a2578063a8989675146109b5578063b428b0b0146109c8578063b68ec1461461065f57600080fd5b8063954fab2c146108a55780639a960d52146108b85780639d7421f4146108cb5780639df0280b146105ab578063a13df2ab146108de57600080fd5b80638d4eae9d1161021b5780638d4eae9d1461083e5780638dc77f42146105ab5780638eaa6ac0146108515780638fb3603714610871578063950ad70b1461089257600080fd5b806382f65adb1461065f578063835933c9146107f057806386f0c47b146108035780638793a9ac14610823578063893d20e81461083657600080fd5b806338a699a4116103735780635dfa73db116102f057806375b238fc116102b457806375b238fc146107af57806375c82776146107b75780637a415802146105d95780637a9e5e4b146107ca5780637cef4842146107dd57600080fd5b80635dfa73db1461074d578063644c45e01461075657806364c55d9c146107815780636fa2985314610794578063735391271461079c57600080fd5b8063468a186711610337578063468a1867146106f657806354f6127f1461070957806357f96805146107295780635ab1bd531461073c5780635d4345cc146105ab57600080fd5b806338a699a4146106a2578063392f5f64146106b55780633ca7c02a146106bd5780633fd85561146106e357806340529b0f146105ab57600080fd5b8063167bd395116104015780632f61088a116103c55780632f61088a1461063957806331d311a71461064c57806333bb0a971461065f57806337f135d714610672578063384c9a571461068f57600080fd5b8063167bd395146105c65780631c45fe7a146105d95780631e23a2f5146105ec5780631eff4b22146105ff57806322f46b841461062657600080fd5b80630d358181116104485780630d3581811461055c5780630f526f7d146105825780630fec111c1461059557806310203d2c146105ab578063138461e0146105be57600080fd5b806301ffc9a71461048557806302cd3071146104c757806303014974146104ec57806309648a9d1461050d5780630b24cf5f14610547575b600080fd5b6104b2610493366004613c92565b6001600160e01b03191660009081526004602052604090205460ff1690565b60405190151581526020015b60405180910390f35b600c546001600160a01b03165b6040516001600160a01b0390911681526020016104be565b6104ff6104fa366004613cd1565b610b39565b6040519081526020016104be565b61053561051b366004613cee565b600090815260036020526040902054610100900460ff1690565b60405160ff90911681526020016104be565b61055a610555366004613ef8565b610b60565b005b61053561056a366004613f3d565b60ff9081166000908152600160205260409020541690565b61055a610590366004613f5a565b610ba4565b61059d610bc1565b6040516104be929190613fe3565b61055a6105b9366004613f5a565b610d43565b61055a610d58565b61055a6105d436600461408a565b610f7a565b61055a6105e73660046141e0565b611022565b61055a6105fa366004614254565b611063565b6104ff7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b61055a6106343660046142b5565b611089565b61055a61064736600461437f565b61109f565b6104ff61065a3660046143c4565b61113a565b61055a61066d3660046143e1565b6111cb565b61067a600081565b60405163ffffffff90911681526020016104be565b6104b261069d366004613cd1565b6111f6565b6104b26106b0366004613cee565b61138c565b6009546104ff565b6106cb6001600160401b0381565b6040516001600160401b0390911681526020016104be565b6106cb6106f1366004613cee565b611417565b6104ff610704366004614442565b61145c565b61071c610717366004613cee565b6114b9565b6040516104be919061445f565b61055a610737366004614515565b61155e565b6005546001600160a01b03166104d4565b6106cb61271081565b600554600160a01b90046001600160601b03166040516001600160601b0390911681526020016104be565b61055a61078f366004614615565b611586565b6104d46115ae565b61055a6107aa366004614661565b611650565b6106cb600081565b61055a6107c53660046146d2565b611678565b61055a6107d83660046143c4565b61169e565b61055a6107eb36600461472a565b611719565b6104ff6107fe366004613cd1565b6117a3565b610816610811366004613cd1565b6117e6565b6040516104be9190614748565b61055a610831366004614761565b61188b565b6104d46118a0565b61055a61084c366004614820565b61197d565b61086461085f366004613cee565b6119a3565b6040516104be91906148af565b610879611ae4565b6040516001600160e01b031990911681526020016104be565b61055a6108a03660046148e3565b611b08565b61055a6108b336600461493b565b611b6a565b61055a6108c6366004614ad9565b611b90565b61055a6108d9366004614b20565b611bb6565b6104ff6108ec366004614442565b611bdc565b6109956108ff366004613cee565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260036020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b6040516104be9190614b77565b61055a6109b0366004614b85565b611c09565b61055a6109c3366004614bcc565b611ca4565b6104b26109d6366004614c0c565b611d95565b6104b26109e9366004614c0c565b611f89565b61055a6109fc366004614c3a565b612114565b61055a610a0f366004614c7f565b61213a565b61055a610a22366004614cc0565b612162565b6104b2610a35366004613f3d565b61218a565b60005461010090046001600160a01b03166104d4565b61055a610a5e3660046143c4565b6121d7565b61055a610a71366004614d00565b61224e565b61055a610a843660046142b5565b61246c565b61055a610a97366004613f5a565b612483565b6104d4610aaa366004614d40565b61249a565b61055a610abd366004613f5a565b6124c3565b6104b2610ad0366004614bcc565b60ff9283166000908152600260209081526040808320948616835293815283822092851682529190915220541690565b6104ff610b0e366004614d7c565b6124da565b61055a610b213660046143c4565b61255e565b61055a610b34366004613f5a565b6125da565b6001600160401b0381166000908152600860205260408120610b5a906125ef565b92915050565b610b6d335b6000366125f9565b610ba0610b7b83607861270c565b82604051602001610b8c9190614daa565b604051602081830303815290604052612758565b5050565b610bad33610b65565b610ba0610bbb83608c61270c565b82612762565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610c446005546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610c8c6118a0565b6001600160a01b03168152602001826001018054610ca990614e0a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd590614e0a565b8015610d225780601f10610cf757610100808354040283529160200191610d22565b820191906000526020600020905b815481529060010190602001808311610d0557829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b610d4c33610b65565b610ba0610bbb8361145c565b6005546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610dba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dde9190614e44565b15610e25576005546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6005546001600160a01b0316610e4e5760405163cf29926160e01b815260040160405180910390fd5b60055460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610e97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebb9190614e44565b610ee3576040516372657a5160e01b81526001600160a01b0382166004820152602401610e1c565b600554604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610f2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f519190614e61565b600560146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b610f8333610b65565b610f8f6106b08361113a565b610fb7576040516325b6f39560e21b81526001600160a01b0383166004820152602401610e1c565b600b5460405163167bd39560e01b81526001600160a01b03848116600483015283151560248301529091169063167bd39590604401600060405180830381600087803b15801561100657600080fd5b505af115801561101a573d6000803e3d6000fd5b505050505050565b61102b33610b65565b61105d6110378561145c565b836040516020016110489190614e7e565b6040516020818303038152906040528361276c565b50505050565b61106c33610b65565b610ba06110788361113a565b82604051602001610b8c9190614748565b61109233610b65565b610ba08282600180612777565b6110a833610b65565b6040516355ee627560e01b81526001600160c01b031983166004820152610ba09073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015611105573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111299190614ed1565b82604051602001610b8c9190614eea565b604051637a400b6760e11b8152601e6004820152606082901b6bffffffffffffffffffffffff1916602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af41580156111a7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5a9190614ed1565b6111d433610b65565b6111f16111e08461145c565b82604051602001610b8c9190614e7e565b505050565b60003381611203846117a3565b905061120e8161138c565b61123557604051627a416f60e01b81526001600160401b0385166004820152602401610e1c565b6001600160401b03841660009081526008602052604090206112579083612820565b1561138257600b54604051631517388760e21b81526001600160401b03861660048201526001600160a01b039091169063fe0776f59073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af41580156112c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ed9190614f18565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b0385166024820152604401600060405180830381600087803b15801561133d57600080fd5b505af1158015611351573d6000803e3d6000fd5b5050506001600160401b0385166000908152600860205260409020611377915083612842565b506001949350505050565b5060009392505050565b60008181526003602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af41580156113f3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5a9190614e44565b60006009828154811061142c5761142c614f35565b90600052602060002090600491828204019190066008029054906101000a90046001600160401b03169050919050565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660d25b6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff16602482015260440161118a565b60008181526003602052604090206001018054606091906114d990614e0a565b80601f016020809104026020016040519081016040528092919081815260200182805461150590614e0a565b80156115525780601f1061152757610100808354040283529160200191611552565b820191906000526020600020905b81548152906001019060200180831161153557829003601f168201915b50505050509050919050565b61156733610b65565b610ba061157583608c61270c565b82604051602001610b8c9190614f4b565b61158f33610b65565b6111f161159d84606e61270c565b836040516020016110489190614fee565b6005546040805163a3bcd81d60e01b815260048101919091526015604482015274436f6d706f6e656e744f776e65725365727669636560581b6064820152600360248201526000916001600160a01b03169063a3bcd81d906084015b602060405180830381865afa158015611627573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164b91906150f0565b905090565b61165933610b65565b610ba061166783606e61270c565b82604051602001610b8c9190614fee565b61168133610b65565b61105d61168d8561145c565b83604051602001611048919061510d565b600054339061010090046001600160a01b031681146116da5760405162d1953b60e31b81526001600160a01b0382166004820152602401610e1c565b816001600160a01b03163b600003611710576040516361798f2f60e11b81526001600160a01b0383166004820152602401610e1c565b610ba082612857565b61172233610b65565b6040516355ee627560e01b81526001600160c01b031983166004820152610ba09073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af415801561177f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbb9190614ed1565b604051630f37f38f60e41b81526001600160401b038216600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063f37f38f09060240161118a565b604080518082018252600080825260208201529051630f37f38f60e41b81526001600160401b03831660048201526118789073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063f37f38f090602401602060405180830381865af4158015611854573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107179190614ed1565b806020019051810190610b5a919061513d565b61189433610b65565b610ba0610bbb836117a3565b6005546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611905573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119299190614e44565b1561196d57600554604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a9060240161160a565b506006546001600160a01b031690565b61198633610b65565b610ba061199283611bdc565b82604051602001610b8c9190615175565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260036020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c08201529283526001810180549192840191611a5b90614e0a565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8790614e0a565b8015611ad45780601f10611aa957610100808354040283529160200191611ad4565b820191906000526020600020905b815481529060010190602001808311611ab757829003601f168201915b5050505050815250509050919050565b60008054600160a81b900460ff16611afc5750600090565b50638fb3603760e01b90565b611b1133610b65565b6000611b1f848460006128b3565b5090506000611b2f858584612b1e565b9050611b63611b3d866117a3565b82604051602001611b4e9190614748565b6040516020818303038152906040528561276c565b5050505050565b611b7333610b65565b6111f1611b7f84611bdc565b836040516020016110489190615175565b611b9933610b65565b6111f1611ba58461145c565b83604051602001611048919061521a565b611bbf33610b65565b6111f1611bcb8461145c565b82604051602001610b8c919061510d565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660dc611485565b611c1233610b65565b6040516355ee627560e01b81526001600160c01b0319841660048201526111f19073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015611c6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c939190614ed1565b836040516020016110489190614eea565b60ff8381166000908152600160205260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015611d09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d2d9190614e44565b15611d3757505050565b60ff8084166000908152600260209081526040808320868516845282528083208585168452909152902054166111f157604051636bb20ea760e01b815260ff8085166004830152808416602483015282166044820152606401610e1c565b6000611da033610b65565b6000611dab846117a3565b9050611db68161138c565b611dde57604051636777365b60e01b81526001600160401b0385166004820152602401610e1c565b600081815260036020526040902054611e0d90610100900460ff16611e01606490565b60ff9081169116141590565b15611e365760405163fe229d5d60e01b81526001600160401b0385166004820152602401610e1c565b6001600160401b0384166000908152600860205260409020611e589084612820565b61138257600b54604051631517388760e21b81526001600160401b03861660048201526001600160a01b03909116906325c471a09073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015611ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eed9190614f18565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b038616602482015260006044820152606401600060405180830381600087803b158015611f4457600080fd5b505af1158015611f58573d6000803e3d6000fd5b5050506001600160401b0385166000908152600860205260409020611f7e915084612b5a565b506001915050610b5a565b6000611f9433610b65565b6000611f9f846117a3565b9050611faa8161138c565b611fd257604051634cee277360e11b81526001600160401b0385166004820152602401610e1c565b6001600160401b0384166000908152600860205260409020611ff49084612820565b1561138257600b54604051631517388760e21b81526001600160401b03861660048201526001600160a01b039091169063b7d2b1629073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015612066573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061208a9190614f18565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b0386166024820152604401600060405180830381600087803b1580156120da57600080fd5b505af11580156120ee573d6000803e3d6000fd5b5050506001600160401b0385166000908152600860205260409020611f7e915084612842565b61211d33610b65565b610ba06121298361145c565b82604051602001610b8c919061521a565b61214333610b65565b6111f161215184608c61270c565b836040516020016110489190614f4b565b61216b33610b65565b6111f161217984607861270c565b836040516020016110489190614daa565b60ff81811660009081526001602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016113d6565b60005460ff16156122355760405162461bcd60e51b815260206004820152602260248201527f4163636573734d616e616765643a20616c726561647920696e697469616c697a604482015261195960f21b6064820152608401610e1c565b61223e81612857565b506000805460ff19166001179055565b600654600160a01b900460ff16156122bf5760405162461bcd60e51b815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201526d195b881a5b9a5d1a585b1a5e995960921b6064820152608401610e1c565b600b80546001600160a01b0319166001600160a01b0385161790556040516368aebf7b60e01b81526000600482015261237c9073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af415801561232e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123529190614f18565b6040518060400160405280600981526020016841646d696e526f6c6560b81b815250600080612777565b6040516368aebf7b60e01b81526001600160401b0360048201526124259073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af41580156123d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123fa9190614f18565b6040518060400160405280600a8152602001695075626c6963526f6c6560b01b815250600080612777565b6124448282604660003360405180602001604052806000815250612b6f565b6124546342e19e5f60e01b612c03565b50506006805460ff60a01b1916600160a01b17905550565b61247533610b65565b610ba0828260006001612777565b61248c33610b65565b610ba0610bbb83607861270c565b6001600160401b03821660009081526008602052604081206124bc9083612c28565b9392505050565b6124cc33610b65565b610ba0610bbb83606e61270c565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af415801561253a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124bc9190614ed1565b61256733610b65565b600c546001600160a01b0316156125b85760405162461bcd60e51b8152602060048201526015602482015274125b9cdd185b98d954995859195c881a5cc81cd95d605a1b6044820152606401610e1c565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6125e333610b65565b610ba0610bbb83611bdc565b6000610b5a825490565b6000806126356126176000546001600160a01b036101009091041690565b863061262760046000898b615371565b6126309161539b565b612c34565b9150915081611b635763ffffffff8116156126e9576000805460ff60a81b1916600160a81b1790556126756000546001600160a01b036101009091041690565b6001600160a01b03166394c7d7ee8686866040518463ffffffff1660e01b81526004016126a4939291906153cb565b600060405180830381600087803b1580156126be57600080fd5b505af11580156126d2573d6000803e3d6000fd5b50506000805460ff60a81b1916905550611b639050565b60405162d1953b60e31b81526001600160a01b0386166004820152602401610e1c565b604051630711349960e31b81526001600160601b038316600482015260ff8216602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c89060440161251d565b610ba08282612d40565b610ba08282613162565b6111f1838383613496565b801561278b576127888484846128b3565b50505b6000612798858585612b1e565b80516000908152600760205260408120805467ffffffffffffffff19166001600160401b038981169182179092556009805460018101825593527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af6004840401805460039094166008026101000a9283021990931691021790559050611b63611078866117a3565b6001600160a01b038116600090815260018301602052604081205415156124bc565b60006124bc836001600160a01b038416613931565b60008054610100600160a81b0319166101006001600160a01b038416908102919091179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b60008060006128c1866117a3565b90506128cc8161138c565b925082156128fb576128dd816114b9565b8060200190518101906128f0919061513d565b6020015191506128ff565b8391505b856001600160401b038116158061291e57506001600160401b03818116145b156129475760405163981bf42160e01b81526001600160401b0388166004820152602401610e1c565b82801561295e57506127106001600160401b038216105b1561298757604051633119b9df60e21b81526001600160401b0388166004820152602401610e1c565b82801561299f57506127106001600160401b03821610155b156129c85760405163094fb39160e01b81526001600160401b0388166004820152602401610e1c565b60006129d387613a2b565b90506129de81613a69565b600003612a09576040516321ab17ab60e01b81526001600160401b0389166004820152602401610e1c565b60008181526007602090815260409182902054825163bc1b392d60e01b81529251612aac936001600160401b039092169273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9263bc1b392d92600480830193928290030181865af4158015612a76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a9a9190614f18565b6001600160401b039081169116141590565b8015612ad257506000818152600760205260409020546001600160401b03898116911614155b15612b135760008181526007602052604090819020549051631660fb9360e21b81526001600160401b03909116600482015260248101829052604401610e1c565b505050935093915050565b60408051808201909152600080825260208201526040518060400160405280612b4685613a2b565b815260200183151581525090509392505050565b60006124bc836001600160a01b038416613a91565b612b798287613ae0565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101612be98382615451565b50612bfa6303fb044760e21b612c03565b50505050505050565b6001600160e01b0319166000908152600460205260409020805460ff19166001179055565b60006124bc8383613b04565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612ca39190615510565b600060405180830381855afa9150503d8060008114612cde576040519150601f19603f3d011682016040523d82523d6000602084013e612ce3565b606091505b50915091508115612d35576040815110612d155780806020019051810190612d0b919061552c565b9094509250612d35565b6020815110612d355780806020019051810190612d329190614e44565b93505b505094509492505050565b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015612d93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612db7919061555b565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af4158015612e0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e309190614e44565b612e7c5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e4544000000006044820152606401610e1c565b600083815260036020526040908190208054915163037c8cb160e51b815261010090920460ff1660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015612ee5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f099190614e44565b612f555760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f435245415445440000006044820152606401610e1c565b33436000612f628561218a565b612f6d576064612f83565b60ff808616600090815260016020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b91909102178555600088815260036020526040902090915060010161300d8782615451565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613080573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130a4919061555b565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156130f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131189190615578565b6040805160ff938416815260ff199092166020830152918416918101919091526001600160a01b038516606082015232608082015260a0015b60405180910390a150505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156131b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131d89190614e44565b6132245760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e45440000006044820152606401610e1c565b600082815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613290573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132b49190614e44565b6133005760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e470000000000006044820152606401610e1c565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166133444390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018790527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af41580156133d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133fa919061555b565b604051630713cfad60e31b81526004810189905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af415801561344a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061346e9190615578565b87868632876040516134869796959493929190615595565b60405180910390a1505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156134e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061350c9190614e44565b6135585760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e45440000006044820152606401610e1c565b600083815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156135c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135e89190614e44565b6136345760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e470000000000006044820152606401610e1c565b600085815260036020526040902060010161364f8582615451565b508154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166136944390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018890527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613726573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061374a919061555b565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af415801561379a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137be9190615578565b87868632876040516137d69796959493929190615595565b60405180910390a1604051634b00e98f60e11b8152600481018890527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613850573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613874919061555b565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156138c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138e89190615578565b6040805160ff938416815260ff199092166020830152918816918101919091526001600160a01b038416606082015232608082015263ffffffff831660a082015260c001613151565b60008181526001830160205260408120548015613a1a5760006139556001836155e5565b8554909150600090613969906001906155e5565b90508082146139ce57600086600001828154811061398957613989614f35565b90600052602060002001549050808760000184815481106139ac576139ac614f35565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806139df576139df615606565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610b5a565b6000915050610b5a565b5092915050565b600080829050601f81511115613a56578260405163305a27a960e01b8152600401610e1c919061445f565b8051613a618261561c565b179392505050565b600060ff8216601f811115610b5a57604051632cd44ac360e21b815260040160405180910390fd5b6000818152600183016020526040812054613ad857508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b5a565b506000610b5a565b600680546001600160a01b0319166001600160a01b038416179055610ba081613b2e565b6000826000018281548110613b1b57613b1b614f35565b9060005260206000200154905092915050565b6005546001600160a01b031615613b675760055460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610e1c565b6001600160a01b038116613b8e5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003613bc45760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610e1c565b600580546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263350fb35160e11b60048201526301ffc9a790602401602060405180830381865afa925050508015613c3e575060408051601f3d908101601f19168201909252613c3b91810190614e44565b60015b613c665760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610e1c565b80610ba05760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610e1c565b50565b600060208284031215613ca457600080fd5b81356001600160e01b0319811681146124bc57600080fd5b6001600160401b0381168114613c8f57600080fd5b600060208284031215613ce357600080fd5b81356124bc81613cbc565b600060208284031215613d0057600080fd5b5035919050565b6001600160601b0381168114613c8f57600080fd5b8035613d2781613d07565b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715613d6457613d64613d2c565b60405290565b604051608081016001600160401b0381118282101715613d6457613d64613d2c565b60405161010081016001600160401b0381118282101715613d6457613d64613d2c565b60405161014081016001600160401b0381118282101715613d6457613d64613d2c565b60405161020081016001600160401b0381118282101715613d6457613d64613d2c565b6001600160a01b0381168114613c8f57600080fd5b8035613d2781613df5565b600060408284031215613e2757600080fd5b613e2f613d42565b9050813581526020820135602082015292915050565b8015158114613c8f57600080fd5b8035613d2781613e45565b600060c08284031215613e7057600080fd5b60405160a081018181106001600160401b0382111715613e9257613e92613d2c565b6040529050808235613ea381613d07565b81526020830135613eb381613df5565b6020820152613ec58460408501613e15565b60408201526080830135613ed881613e45565b606082015260a0830135613eeb81613df5565b6080919091015292915050565b60008060e08385031215613f0b57600080fd5b8235613f1681613d07565b9150613f258460208501613e5e565b90509250929050565b60ff81168114613c8f57600080fd5b600060208284031215613f4f57600080fd5b81356124bc81613f2e565b60008060408385031215613f6d57600080fd5b8235613f7881613d07565b91506020830135613f8881613f2e565b809150509250929050565b60005b83811015613fae578181015183820152602001613f96565b50506000910152565b60008151808452613fcf816020860160208601613f93565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff6040850151166080830152606084015161402760a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261406d610120840182613fb7565b905082810360208401526140818185613fb7565b95945050505050565b6000806040838503121561409d57600080fd5b82356140a881613df5565b91506020830135613f8881613e45565b63ffffffff81168114613c8f57600080fd5b600082601f8301126140db57600080fd5b81356001600160401b03808211156140f5576140f5613d2c565b604051601f8301601f19908116603f0116810190828211818310171561411d5761411d613d2c565b8160405283815286602085880101111561413657600080fd5b836020870160208301376000602085830101528094505050505092915050565b803564ffffffffff81168114613d2757600080fd5b60006080828403121561417d57600080fd5b614185613d6a565b90508135614192816140b8565b81526020828101359082015260408201356001600160401b038111156141b757600080fd5b6141c3848285016140ca565b6040830152506141d560608301614156565b606082015292915050565b600080600080608085870312156141f657600080fd5b843561420181613d07565b93506020850135614211816140b8565b925060408501356001600160401b0381111561422c57600080fd5b6142388782880161416b565b925050606085013561424981613f2e565b939692955090935050565b600080828403606081121561426857600080fd5b833561427381613df5565b92506040601f198201121561428757600080fd5b50614290613d42565b6020840135815260408401356142a581613e45565b6020820152919491935090915050565b600080604083850312156142c857600080fd5b82356142d381613cbc565b915060208301356001600160401b038111156142ee57600080fd5b6142fa858286016140ca565b9150509250929050565b6001600160c01b031981168114613c8f57600080fd5b8035613d2781614304565b60006040828403121561433757600080fd5b61433f613d42565b9050813561434c81613d07565b815260208201356001600160401b0381111561436757600080fd5b614373848285016140ca565b60208301525092915050565b6000806040838503121561439257600080fd5b823561439d81614304565b915060208301356001600160401b038111156143b857600080fd5b6142fa85828601614325565b6000602082840312156143d657600080fd5b81356124bc81613df5565b6000806000606084860312156143f657600080fd5b833561440181613d07565b92506020840135614411816140b8565b915060408401356001600160401b0381111561442c57600080fd5b6144388682870161416b565b9150509250925092565b60006020828403121561445457600080fd5b81356124bc81613d07565b6020815260006124bc6020830184613fb7565b6000610160828403121561448557600080fd5b61448d613d8c565b905061449882613d1c565b81526144a660208301613e0a565b6020820152604082013560408201526144c28360608401613e15565b60608201526144d48360a08401613e15565b60808201526144e68360e08401613e15565b60a08201526144f86101208301613e53565b60c082015261450a6101408301613e0a565b60e082015292915050565b600080610180838503121561452957600080fd5b823561453481613d07565b9150613f258460208501614472565b6000610200828403121561455657600080fd5b61455e613daf565b905061456982613e0a565b815261457760208301613e0a565b602082015261458860408301613d1c565b604082015261459960608301613d1c565b60608201526145ab8360808401613e15565b60808201526145bd8360c08401613e15565b60a08201526101006145d184828501613e15565b60c08301526145e4846101408501613e15565b60e08301526145f7846101808501613e15565b90820152614609836101c08401613e15565b61012082015292915050565b6000806000610240848603121561462b57600080fd5b833561463681613d07565b92506146458560208601614543565b915061022084013561465681613f2e565b809150509250925092565b600080610220838503121561467557600080fd5b823561468081613d07565b9150613f258460208501614543565b6000608082840312156146a157600080fd5b6146a9613d6a565b9050813581526020820135602082015260408201356001600160401b038111156141b757600080fd5b600080600080608085870312156146e857600080fd5b84356146f381613d07565b93506020850135614703816140b8565b925060408501356001600160401b0381111561471e57600080fd5b6142388782880161468f565b6000806040838503121561473d57600080fd5b8235613f7881614304565b8151815260208083015115159082015260408101610b5a565b6000806040838503121561477457600080fd5b8235613f7881613cbc565b6000610120828403121561479257600080fd5b61479a613d8c565b90506147a582613d1c565b81526147b48360208401613e15565b602082015260608201356001600160401b038111156147d257600080fd5b6147de848285016140ca565b6040830152506080820135606082015260a0820135608082015260c082013560a082015261480e60e08301614156565b60c082015261450a6101008301614156565b6000806040838503121561483357600080fd5b823561483e81613d07565b915060208301356001600160401b0381111561485957600080fd5b6142fa8582860161477f565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b602081526148c1602082018351614865565b6000602083015160c0808401526148db60e0840182613fb7565b949350505050565b6000806000606084860312156148f857600080fd5b833561490381613cbc565b925060208401356001600160401b0381111561491e57600080fd5b61492a868287016140ca565b925050604084013561465681613f2e565b60008060006060848603121561495057600080fd5b833561495b81613d07565b925060208401356001600160401b0381111561497657600080fd5b61492a8682870161477f565b803561ffff81168114613d2757600080fd5b600061020082840312156149a757600080fd5b6149af613dd2565b90506149ba82613d1c565b81526149c860208301613d1c565b60208201526149d96040830161431a565b60408201526149ea6060830161431a565b60608201526080820135608082015260a082013560a082015260c082013560c082015260e082013560e0820152610100808301356001600160401b0380821115614a3357600080fd5b614a3f868387016140ca565b83850152610120925082850135915080821115614a5b57600080fd5b50614a68858286016140ca565b828401525050610140614a7c818401614982565b90820152610160614a8e838201614982565b9082015261018082810135908201526101a0614aab818401614156565b908201526101c0614abd838201614156565b908201526101e0614acf838201614156565b9082015292915050565b600080600060608486031215614aee57600080fd5b8335614af981613d07565b925060208401356001600160401b03811115614b1457600080fd5b61492a86828701614994565b600080600060608486031215614b3557600080fd5b8335614b4081613d07565b92506020840135614b50816140b8565b915060408401356001600160401b03811115614b6b57600080fd5b6144388682870161468f565b60a08101610b5a8284614865565b600080600060608486031215614b9a57600080fd5b8335614ba581614304565b925060208401356001600160401b03811115614bc057600080fd5b61492a86828701614325565b600080600060608486031215614be157600080fd5b8335614bec81613f2e565b92506020840135614bfc81613f2e565b9150604084013561465681613f2e565b60008060408385031215614c1f57600080fd5b8235614c2a81613cbc565b91506020830135613f8881613df5565b60008060408385031215614c4d57600080fd5b8235614c5881613d07565b915060208301356001600160401b03811115614c7357600080fd5b6142fa85828601614994565b60008060006101a08486031215614c9557600080fd5b8335614ca081613d07565b9250614caf8560208601614472565b915061018084013561465681613f2e565b60008060006101008486031215614cd657600080fd5b8335614ce181613d07565b9250614cf08560208601613e5e565b915060e084013561465681613f2e565b600080600060608486031215614d1557600080fd5b8335614d2081613df5565b92506020840135614d3081613df5565b9150604084013561465681613d07565b60008060408385031215614d5357600080fd5b8235614d5e81613cbc565b946020939093013593505050565b60ff1981168114613c8f57600080fd5b60008060408385031215614d8f57600080fd5b8235614d9a81613f2e565b91506020830135613f8881614d6c565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015260c0830191906060850151151560808501528060808601511660a0850152505092915050565b600181811c90821680614e1e57607f821691505b602082108103614e3e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215614e5657600080fd5b81516124bc81613e45565b600060208284031215614e7357600080fd5b81516124bc81613d07565b6020815263ffffffff8251166020820152602082015160408201526000604083015160806060840152614eb460a0840182613fb7565b905064ffffffffff60608501511660808401528091505092915050565b600060208284031215614ee357600080fd5b5051919050565b602081526001600160601b038251166020820152600060208301516040808401526148db6060840182613fb7565b600060208284031215614f2a57600080fd5b81516124bc81613cbc565b634e487b7160e01b600052603260045260246000fd5b81516001600160601b031681526020808301516001600160a01b03169082015260408083015190820152606080830151610160830191614f979084018280518252602090810151910152565b506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c0830151151561012083015260e08301516001600160a01b038116610140840152613a24565b81516001600160a01b031681526102008101602083015161501a60208401826001600160a01b03169052565b50604083015161503560408401826001600160601b03169052565b50606083015161505060608401826001600160601b03169052565b50608083015161506d608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301516101006150a38185018380518252602090810151910152565b60e085015180516101408601526020908101516101608601529085015180516101808601528101516101a085015261012085015180516101c0860152908101516101e08501529050613a24565b60006020828403121561510257600080fd5b81516124bc81613df5565b6020815281516020820152602082015160408201526000604083015160806060840152614eb460a0840182613fb7565b60006040828403121561514f57600080fd5b615157613d42565b82518152602083015161516981613e45565b60208201529392505050565b602081526001600160601b038251166020820152600060208301516151a7604084018280518252602090810151910152565b5060408301516101208060808501526151c4610140850183613fb7565b9150606085015160a0850152608085015160c085015260a085015160e085015260c08501516151fd61010086018264ffffffffff169052565b5060e085015164ffffffffff8116858301525b5090949350505050565b602081526152346020820183516001600160601b03169052565b6000602083015161525060408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b03198116608084015250608083015160a083015260a083015160c083015260c083015160e083015260e083015161010081818501528085015191505061020061012081818601526152c8610220860184613fb7565b9250808601519050610140601f1986850301818701526152e88483613fb7565b9350808701519150506101606153038187018361ffff169052565b860151905061018061531a8682018361ffff169052565b8601516101a08681019190915286015190506101c06153418187018364ffffffffff169052565b86015190506101e061535b8682018364ffffffffff169052565b86015164ffffffffff8116838701529050615210565b6000808585111561538157600080fd5b8386111561538e57600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156153c35780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b601f8211156111f157600081815260208120601f850160051c810160208610156154325750805b601f850160051c820191505b8181101561101a5782815560010161543e565b81516001600160401b0381111561546a5761546a613d2c565b61547e816154788454614e0a565b8461540b565b602080601f8311600181146154b3576000841561549b5750858301515b600019600386901b1c1916600185901b17855561101a565b600085815260208120601f198616915b828110156154e2578886015182559484019460019091019084016154c3565b50858210156155005787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008251615522818460208701613f93565b9190910192915050565b6000806040838503121561553f57600080fd5b825161554a81613e45565b6020840151909250613f88816140b8565b60006020828403121561556d57600080fd5b81516124bc81613f2e565b60006020828403121561558a57600080fd5b81516124bc81614d6c565b60ff978816815260ff1996909616602087015293861660408601529190941660608401526001600160a01b03938416608084015290921660a082015263ffffffff9190911660c082015260e00190565b81810381811115610b5a57634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b80516020808301519190811015614e3e5760001960209190910360031b1b1691905056fea26469706673582212206992d2232f47a8f458e33987d3308329433a6282d84c6a5ea38e703c642f93d664736f6c63430008140033",
3126
+ "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106104805760003560e01c806382f65adb11610257578063b7d2b16211610146578063d2f21a29116100c3578063e9e96c7011610087578063e9e96c7014610ac2578063f48016ce14610b00578063f7bc431c14610b13578063f8b648ac1461065f578063fe1f18d614610b2657600080fd5b8063d2f21a2914610a89578063d5b221bd146105d9578063d78a83b114610a9c578063dee3262314610aaf578063e8951ee6146105ab57600080fd5b8063bf7e214f1161010a578063bf7e214f14610a3a578063c2f1a2d2146105d9578063c4d66de814610a50578063c861c25014610a63578063cd50b97e14610a7657600080fd5b8063b7d2b162146109db578063bc8d4000146109ee578063bd4fe04e14610a01578063bd5947e314610a14578063bf1db3f914610a2757600080fd5b8063954fab2c116101d4578063a5961b4c11610198578063a5961b4c146108f1578063a76ee018146109a2578063a8989675146109b5578063b428b0b0146109c8578063b68ec1461461065f57600080fd5b8063954fab2c146108a55780639a960d52146108b85780639d7421f4146108cb5780639df0280b146105ab578063a13df2ab146108de57600080fd5b80638d4eae9d1161021b5780638d4eae9d1461083e5780638dc77f42146105ab5780638eaa6ac0146108515780638fb3603714610871578063950ad70b1461089257600080fd5b806382f65adb1461065f578063835933c9146107f057806386f0c47b146108035780638793a9ac14610823578063893d20e81461083657600080fd5b806338a699a4116103735780635dfa73db116102f057806375b238fc116102b457806375b238fc146107af57806375c82776146107b75780637a415802146105d95780637a9e5e4b146107ca5780637cef4842146107dd57600080fd5b80635dfa73db1461074d578063644c45e01461075657806364c55d9c146107815780636fa2985314610794578063735391271461079c57600080fd5b8063468a186711610337578063468a1867146106f657806354f6127f1461070957806357f96805146107295780635ab1bd531461073c5780635d4345cc146105ab57600080fd5b806338a699a4146106a2578063392f5f64146106b55780633ca7c02a146106bd5780633fd85561146106e357806340529b0f146105ab57600080fd5b8063167bd395116104015780632f61088a116103c55780632f61088a1461063957806331d311a71461064c57806333bb0a971461065f57806337f135d714610672578063384c9a571461068f57600080fd5b8063167bd395146105c65780631c45fe7a146105d95780631e23a2f5146105ec5780631eff4b22146105ff57806322f46b841461062657600080fd5b80630d358181116104485780630d3581811461055c5780630f526f7d146105825780630fec111c1461059557806310203d2c146105ab578063138461e0146105be57600080fd5b806301ffc9a71461048557806302cd3071146104c757806303014974146104ec57806309648a9d1461050d5780630b24cf5f14610547575b600080fd5b6104b2610493366004613c92565b6001600160e01b03191660009081526004602052604090205460ff1690565b60405190151581526020015b60405180910390f35b600c546001600160a01b03165b6040516001600160a01b0390911681526020016104be565b6104ff6104fa366004613cd1565b610b39565b6040519081526020016104be565b61053561051b366004613cee565b600090815260036020526040902054610100900460ff1690565b60405160ff90911681526020016104be565b61055a610555366004613ef8565b610b60565b005b61053561056a366004613f3d565b60ff9081166000908152600160205260409020541690565b61055a610590366004613f5a565b610ba4565b61059d610bc1565b6040516104be929190613fe3565b61055a6105b9366004613f5a565b610d43565b61055a610d58565b61055a6105d436600461408a565b610f7a565b61055a6105e73660046141e0565b611022565b61055a6105fa366004614254565b611063565b6104ff7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b61055a6106343660046142b5565b611089565b61055a61064736600461437f565b61109f565b6104ff61065a3660046143c4565b61113a565b61055a61066d3660046143e1565b6111cb565b61067a600081565b60405163ffffffff90911681526020016104be565b6104b261069d366004613cd1565b6111f6565b6104b26106b0366004613cee565b61138c565b6009546104ff565b6106cb6001600160401b0381565b6040516001600160401b0390911681526020016104be565b6106cb6106f1366004613cee565b611417565b6104ff610704366004614442565b61145c565b61071c610717366004613cee565b6114b9565b6040516104be919061445f565b61055a610737366004614515565b61155e565b6005546001600160a01b03166104d4565b6106cb61271081565b600554600160a01b90046001600160601b03166040516001600160601b0390911681526020016104be565b61055a61078f366004614615565b611586565b6104d46115ae565b61055a6107aa366004614661565b611650565b6106cb600081565b61055a6107c53660046146d2565b611678565b61055a6107d83660046143c4565b61169e565b61055a6107eb36600461472a565b611719565b6104ff6107fe366004613cd1565b6117a3565b610816610811366004613cd1565b6117e6565b6040516104be9190614748565b61055a610831366004614761565b61188b565b6104d46118a0565b61055a61084c366004614820565b61197d565b61086461085f366004613cee565b6119a3565b6040516104be91906148af565b610879611ae4565b6040516001600160e01b031990911681526020016104be565b61055a6108a03660046148e3565b611b08565b61055a6108b336600461493b565b611b6a565b61055a6108c6366004614ad9565b611b90565b61055a6108d9366004614b20565b611bb6565b6104ff6108ec366004614442565b611bdc565b6109956108ff366004613cee565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260036020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b6040516104be9190614b77565b61055a6109b0366004614b85565b611c09565b61055a6109c3366004614bcc565b611ca4565b6104b26109d6366004614c0c565b611d95565b6104b26109e9366004614c0c565b611f89565b61055a6109fc366004614c3a565b612114565b61055a610a0f366004614c7f565b61213a565b61055a610a22366004614cc0565b612162565b6104b2610a35366004613f3d565b61218a565b60005461010090046001600160a01b03166104d4565b61055a610a5e3660046143c4565b6121d7565b61055a610a71366004614d00565b61224e565b61055a610a843660046142b5565b61246c565b61055a610a97366004613f5a565b612483565b6104d4610aaa366004614d40565b61249a565b61055a610abd366004613f5a565b6124c3565b6104b2610ad0366004614bcc565b60ff9283166000908152600260209081526040808320948616835293815283822092851682529190915220541690565b6104ff610b0e366004614d7c565b6124da565b61055a610b213660046143c4565b61255e565b61055a610b34366004613f5a565b6125da565b6001600160401b0381166000908152600860205260408120610b5a906125ef565b92915050565b610b6d335b6000366125f9565b610ba0610b7b83607861270c565b82604051602001610b8c9190614daa565b604051602081830303815290604052612758565b5050565b610bad33610b65565b610ba0610bbb83608c61270c565b82612762565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610c446005546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610c8c6118a0565b6001600160a01b03168152602001826001018054610ca990614e0a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd590614e0a565b8015610d225780601f10610cf757610100808354040283529160200191610d22565b820191906000526020600020905b815481529060010190602001808311610d0557829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b610d4c33610b65565b610ba0610bbb8361145c565b6005546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610dba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dde9190614e44565b15610e25576005546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6005546001600160a01b0316610e4e5760405163cf29926160e01b815260040160405180910390fd5b60055460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610e97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebb9190614e44565b610ee3576040516372657a5160e01b81526001600160a01b0382166004820152602401610e1c565b600554604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610f2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f519190614e61565b600560146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b610f8333610b65565b610f8f6106b08361113a565b610fb7576040516325b6f39560e21b81526001600160a01b0383166004820152602401610e1c565b600b5460405163167bd39560e01b81526001600160a01b03848116600483015283151560248301529091169063167bd39590604401600060405180830381600087803b15801561100657600080fd5b505af115801561101a573d6000803e3d6000fd5b505050505050565b61102b33610b65565b61105d6110378561145c565b836040516020016110489190614e7e565b6040516020818303038152906040528361276c565b50505050565b61106c33610b65565b610ba06110788361113a565b82604051602001610b8c9190614748565b61109233610b65565b610ba08282600180612777565b6110a833610b65565b6040516355ee627560e01b81526001600160c01b031983166004820152610ba09073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015611105573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111299190614ed1565b82604051602001610b8c9190614eea565b604051637a400b6760e11b8152601e6004820152606082901b6bffffffffffffffffffffffff1916602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af41580156111a7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5a9190614ed1565b6111d433610b65565b6111f16111e08461145c565b82604051602001610b8c9190614e7e565b505050565b60003381611203846117a3565b905061120e8161138c565b61123557604051627a416f60e01b81526001600160401b0385166004820152602401610e1c565b6001600160401b03841660009081526008602052604090206112579083612820565b1561138257600b54604051631517388760e21b81526001600160401b03861660048201526001600160a01b039091169063fe0776f59073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af41580156112c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ed9190614f18565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b0385166024820152604401600060405180830381600087803b15801561133d57600080fd5b505af1158015611351573d6000803e3d6000fd5b5050506001600160401b0385166000908152600860205260409020611377915083612842565b506001949350505050565b5060009392505050565b60008181526003602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af41580156113f3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5a9190614e44565b60006009828154811061142c5761142c614f35565b90600052602060002090600491828204019190066008029054906101000a90046001600160401b03169050919050565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660d25b6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff16602482015260440161118a565b60008181526003602052604090206001018054606091906114d990614e0a565b80601f016020809104026020016040519081016040528092919081815260200182805461150590614e0a565b80156115525780601f1061152757610100808354040283529160200191611552565b820191906000526020600020905b81548152906001019060200180831161153557829003601f168201915b50505050509050919050565b61156733610b65565b610ba061157583608c61270c565b82604051602001610b8c9190614f4b565b61158f33610b65565b6111f161159d84606e61270c565b836040516020016110489190614fee565b6005546040805163a3bcd81d60e01b815260048101919091526015604482015274436f6d706f6e656e744f776e65725365727669636560581b6064820152600360248201526000916001600160a01b03169063a3bcd81d906084015b602060405180830381865afa158015611627573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164b91906150f0565b905090565b61165933610b65565b610ba061166783606e61270c565b82604051602001610b8c9190614fee565b61168133610b65565b61105d61168d8561145c565b83604051602001611048919061510d565b600054339061010090046001600160a01b031681146116da5760405162d1953b60e31b81526001600160a01b0382166004820152602401610e1c565b816001600160a01b03163b600003611710576040516361798f2f60e11b81526001600160a01b0383166004820152602401610e1c565b610ba082612857565b61172233610b65565b6040516355ee627560e01b81526001600160c01b031983166004820152610ba09073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af415801561177f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbb9190614ed1565b604051630f37f38f60e41b81526001600160401b038216600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063f37f38f09060240161118a565b604080518082018252600080825260208201529051630f37f38f60e41b81526001600160401b03831660048201526118789073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063f37f38f090602401602060405180830381865af4158015611854573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107179190614ed1565b806020019051810190610b5a919061513d565b61189433610b65565b610ba0610bbb836117a3565b6005546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611905573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119299190614e44565b1561196d57600554604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a9060240161160a565b506006546001600160a01b031690565b61198633610b65565b610ba061199283611bdc565b82604051602001610b8c9190615175565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260036020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c08201529283526001810180549192840191611a5b90614e0a565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8790614e0a565b8015611ad45780601f10611aa957610100808354040283529160200191611ad4565b820191906000526020600020905b815481529060010190602001808311611ab757829003601f168201915b5050505050815250509050919050565b60008054600160a81b900460ff16611afc5750600090565b50638fb3603760e01b90565b611b1133610b65565b6000611b1f848460006128b3565b5090506000611b2f858584612b1e565b9050611b63611b3d866117a3565b82604051602001611b4e9190614748565b6040516020818303038152906040528561276c565b5050505050565b611b7333610b65565b6111f1611b7f84611bdc565b836040516020016110489190615175565b611b9933610b65565b6111f1611ba58461145c565b83604051602001611048919061521a565b611bbf33610b65565b6111f1611bcb8461145c565b82604051602001610b8c919061510d565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660dc611485565b611c1233610b65565b6040516355ee627560e01b81526001600160c01b0319841660048201526111f19073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015611c6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c939190614ed1565b836040516020016110489190614eea565b60ff8381166000908152600160205260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015611d09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d2d9190614e44565b15611d3757505050565b60ff8084166000908152600260209081526040808320868516845282528083208585168452909152902054166111f157604051636bb20ea760e01b815260ff8085166004830152808416602483015282166044820152606401610e1c565b6000611da033610b65565b6000611dab846117a3565b9050611db68161138c565b611dde57604051636777365b60e01b81526001600160401b0385166004820152602401610e1c565b600081815260036020526040902054611e0d90610100900460ff16611e01606490565b60ff9081169116141590565b15611e365760405163fe229d5d60e01b81526001600160401b0385166004820152602401610e1c565b6001600160401b0384166000908152600860205260409020611e589084612820565b61138257600b54604051631517388760e21b81526001600160401b03861660048201526001600160a01b03909116906325c471a09073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015611ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eed9190614f18565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b038616602482015260006044820152606401600060405180830381600087803b158015611f4457600080fd5b505af1158015611f58573d6000803e3d6000fd5b5050506001600160401b0385166000908152600860205260409020611f7e915084612b5a565b506001915050610b5a565b6000611f9433610b65565b6000611f9f846117a3565b9050611faa8161138c565b611fd257604051634cee277360e11b81526001600160401b0385166004820152602401610e1c565b6001600160401b0384166000908152600860205260409020611ff49084612820565b1561138257600b54604051631517388760e21b81526001600160401b03861660048201526001600160a01b039091169063b7d2b1629073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015612066573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061208a9190614f18565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b0386166024820152604401600060405180830381600087803b1580156120da57600080fd5b505af11580156120ee573d6000803e3d6000fd5b5050506001600160401b0385166000908152600860205260409020611f7e915084612842565b61211d33610b65565b610ba06121298361145c565b82604051602001610b8c919061521a565b61214333610b65565b6111f161215184608c61270c565b836040516020016110489190614f4b565b61216b33610b65565b6111f161217984607861270c565b836040516020016110489190614daa565b60ff81811660009081526001602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016113d6565b60005460ff16156122355760405162461bcd60e51b815260206004820152602260248201527f4163636573734d616e616765643a20616c726561647920696e697469616c697a604482015261195960f21b6064820152608401610e1c565b61223e81612857565b506000805460ff19166001179055565b600654600160a01b900460ff16156122bf5760405162461bcd60e51b815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201526d195b881a5b9a5d1a585b1a5e995960921b6064820152608401610e1c565b600b80546001600160a01b0319166001600160a01b0385161790556040516368aebf7b60e01b81526000600482015261237c9073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af415801561232e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123529190614f18565b6040518060400160405280600981526020016841646d696e526f6c6560b81b815250600080612777565b6040516368aebf7b60e01b81526001600160401b0360048201526124259073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af41580156123d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123fa9190614f18565b6040518060400160405280600a8152602001695075626c6963526f6c6560b01b815250600080612777565b6124448282604660003360405180602001604052806000815250612b6f565b6124546342e19e5f60e01b612c03565b50506006805460ff60a01b1916600160a01b17905550565b61247533610b65565b610ba0828260006001612777565b61248c33610b65565b610ba0610bbb83607861270c565b6001600160401b03821660009081526008602052604081206124bc9083612c28565b9392505050565b6124cc33610b65565b610ba0610bbb83606e61270c565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af415801561253a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124bc9190614ed1565b61256733610b65565b600c546001600160a01b0316156125b85760405162461bcd60e51b8152602060048201526015602482015274125b9cdd185b98d954995859195c881a5cc81cd95d605a1b6044820152606401610e1c565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6125e333610b65565b610ba0610bbb83611bdc565b6000610b5a825490565b6000806126356126176000546001600160a01b036101009091041690565b863061262760046000898b615371565b6126309161539b565b612c34565b9150915081611b635763ffffffff8116156126e9576000805460ff60a81b1916600160a81b1790556126756000546001600160a01b036101009091041690565b6001600160a01b03166394c7d7ee8686866040518463ffffffff1660e01b81526004016126a4939291906153cb565b600060405180830381600087803b1580156126be57600080fd5b505af11580156126d2573d6000803e3d6000fd5b50506000805460ff60a81b1916905550611b639050565b60405162d1953b60e31b81526001600160a01b0386166004820152602401610e1c565b604051630711349960e31b81526001600160601b038316600482015260ff8216602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c89060440161251d565b610ba08282612d40565b610ba08282613162565b6111f1838383613496565b801561278b576127888484846128b3565b50505b6000612798858585612b1e565b80516000908152600760205260408120805467ffffffffffffffff19166001600160401b038981169182179092556009805460018101825593527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af6004840401805460039094166008026101000a9283021990931691021790559050611b63611078866117a3565b6001600160a01b038116600090815260018301602052604081205415156124bc565b60006124bc836001600160a01b038416613931565b60008054610100600160a81b0319166101006001600160a01b038416908102919091179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b60008060006128c1866117a3565b90506128cc8161138c565b925082156128fb576128dd816114b9565b8060200190518101906128f0919061513d565b6020015191506128ff565b8391505b856001600160401b038116158061291e57506001600160401b03818116145b156129475760405163981bf42160e01b81526001600160401b0388166004820152602401610e1c565b82801561295e57506127106001600160401b038216105b1561298757604051633119b9df60e21b81526001600160401b0388166004820152602401610e1c565b82801561299f57506127106001600160401b03821610155b156129c85760405163094fb39160e01b81526001600160401b0388166004820152602401610e1c565b60006129d387613a2b565b90506129de81613a69565b600003612a09576040516321ab17ab60e01b81526001600160401b0389166004820152602401610e1c565b60008181526007602090815260409182902054825163bc1b392d60e01b81529251612aac936001600160401b039092169273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9263bc1b392d92600480830193928290030181865af4158015612a76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a9a9190614f18565b6001600160401b039081169116141590565b8015612ad257506000818152600760205260409020546001600160401b03898116911614155b15612b135760008181526007602052604090819020549051631660fb9360e21b81526001600160401b03909116600482015260248101829052604401610e1c565b505050935093915050565b60408051808201909152600080825260208201526040518060400160405280612b4685613a2b565b815260200183151581525090509392505050565b60006124bc836001600160a01b038416613a91565b612b798287613ae0565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101612be98382615451565b50612bfa6303fb044760e21b612c03565b50505050505050565b6001600160e01b0319166000908152600460205260409020805460ff19166001179055565b60006124bc8383613b04565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612ca39190615510565b600060405180830381855afa9150503d8060008114612cde576040519150601f19603f3d011682016040523d82523d6000602084013e612ce3565b606091505b50915091508115612d35576040815110612d155780806020019051810190612d0b919061552c565b9094509250612d35565b6020815110612d355780806020019051810190612d329190614e44565b93505b505094509492505050565b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015612d93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612db7919061555b565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af4158015612e0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e309190614e44565b612e7c5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e4544000000006044820152606401610e1c565b600083815260036020526040908190208054915163037c8cb160e51b815261010090920460ff1660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015612ee5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f099190614e44565b612f555760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f435245415445440000006044820152606401610e1c565b33436000612f628561218a565b612f6d576064612f83565b60ff808616600090815260016020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b91909102178555600088815260036020526040902090915060010161300d8782615451565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613080573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130a4919061555b565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156130f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131189190615578565b6040805160ff938416815260ff199092166020830152918416918101919091526001600160a01b038516606082015232608082015260a0015b60405180910390a150505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156131b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131d89190614e44565b6132245760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e45440000006044820152606401610e1c565b600082815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613290573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132b49190614e44565b6133005760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e470000000000006044820152606401610e1c565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166133444390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018790527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af41580156133d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133fa919061555b565b604051630713cfad60e31b81526004810189905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af415801561344a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061346e9190615578565b87868632876040516134869796959493929190615595565b60405180910390a1505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156134e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061350c9190614e44565b6135585760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e45440000006044820152606401610e1c565b600083815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156135c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135e89190614e44565b6136345760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e470000000000006044820152606401610e1c565b600085815260036020526040902060010161364f8582615451565b508154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166136944390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018890527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613726573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061374a919061555b565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af415801561379a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137be9190615578565b87868632876040516137d69796959493929190615595565b60405180910390a1604051634b00e98f60e11b8152600481018890527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613850573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613874919061555b565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156138c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138e89190615578565b6040805160ff938416815260ff199092166020830152918816918101919091526001600160a01b038416606082015232608082015263ffffffff831660a082015260c001613151565b60008181526001830160205260408120548015613a1a5760006139556001836155e5565b8554909150600090613969906001906155e5565b90508082146139ce57600086600001828154811061398957613989614f35565b90600052602060002001549050808760000184815481106139ac576139ac614f35565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806139df576139df615606565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610b5a565b6000915050610b5a565b5092915050565b600080829050601f81511115613a56578260405163305a27a960e01b8152600401610e1c919061445f565b8051613a618261561c565b179392505050565b600060ff8216601f811115610b5a57604051632cd44ac360e21b815260040160405180910390fd5b6000818152600183016020526040812054613ad857508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b5a565b506000610b5a565b600680546001600160a01b0319166001600160a01b038416179055610ba081613b2e565b6000826000018281548110613b1b57613b1b614f35565b9060005260206000200154905092915050565b6005546001600160a01b031615613b675760055460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610e1c565b6001600160a01b038116613b8e5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003613bc45760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610e1c565b600580546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263350fb35160e11b60048201526301ffc9a790602401602060405180830381865afa925050508015613c3e575060408051601f3d908101601f19168201909252613c3b91810190614e44565b60015b613c665760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610e1c565b80610ba05760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610e1c565b50565b600060208284031215613ca457600080fd5b81356001600160e01b0319811681146124bc57600080fd5b6001600160401b0381168114613c8f57600080fd5b600060208284031215613ce357600080fd5b81356124bc81613cbc565b600060208284031215613d0057600080fd5b5035919050565b6001600160601b0381168114613c8f57600080fd5b8035613d2781613d07565b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715613d6457613d64613d2c565b60405290565b604051608081016001600160401b0381118282101715613d6457613d64613d2c565b60405161010081016001600160401b0381118282101715613d6457613d64613d2c565b60405161014081016001600160401b0381118282101715613d6457613d64613d2c565b60405161020081016001600160401b0381118282101715613d6457613d64613d2c565b6001600160a01b0381168114613c8f57600080fd5b8035613d2781613df5565b600060408284031215613e2757600080fd5b613e2f613d42565b9050813581526020820135602082015292915050565b8015158114613c8f57600080fd5b8035613d2781613e45565b600060c08284031215613e7057600080fd5b60405160a081018181106001600160401b0382111715613e9257613e92613d2c565b6040529050808235613ea381613d07565b81526020830135613eb381613df5565b6020820152613ec58460408501613e15565b60408201526080830135613ed881613e45565b606082015260a0830135613eeb81613df5565b6080919091015292915050565b60008060e08385031215613f0b57600080fd5b8235613f1681613d07565b9150613f258460208501613e5e565b90509250929050565b60ff81168114613c8f57600080fd5b600060208284031215613f4f57600080fd5b81356124bc81613f2e565b60008060408385031215613f6d57600080fd5b8235613f7881613d07565b91506020830135613f8881613f2e565b809150509250929050565b60005b83811015613fae578181015183820152602001613f96565b50506000910152565b60008151808452613fcf816020860160208601613f93565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff6040850151166080830152606084015161402760a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261406d610120840182613fb7565b905082810360208401526140818185613fb7565b95945050505050565b6000806040838503121561409d57600080fd5b82356140a881613df5565b91506020830135613f8881613e45565b63ffffffff81168114613c8f57600080fd5b600082601f8301126140db57600080fd5b81356001600160401b03808211156140f5576140f5613d2c565b604051601f8301601f19908116603f0116810190828211818310171561411d5761411d613d2c565b8160405283815286602085880101111561413657600080fd5b836020870160208301376000602085830101528094505050505092915050565b803564ffffffffff81168114613d2757600080fd5b60006080828403121561417d57600080fd5b614185613d6a565b90508135614192816140b8565b81526020828101359082015260408201356001600160401b038111156141b757600080fd5b6141c3848285016140ca565b6040830152506141d560608301614156565b606082015292915050565b600080600080608085870312156141f657600080fd5b843561420181613d07565b93506020850135614211816140b8565b925060408501356001600160401b0381111561422c57600080fd5b6142388782880161416b565b925050606085013561424981613f2e565b939692955090935050565b600080828403606081121561426857600080fd5b833561427381613df5565b92506040601f198201121561428757600080fd5b50614290613d42565b6020840135815260408401356142a581613e45565b6020820152919491935090915050565b600080604083850312156142c857600080fd5b82356142d381613cbc565b915060208301356001600160401b038111156142ee57600080fd5b6142fa858286016140ca565b9150509250929050565b6001600160c01b031981168114613c8f57600080fd5b8035613d2781614304565b60006040828403121561433757600080fd5b61433f613d42565b9050813561434c81613d07565b815260208201356001600160401b0381111561436757600080fd5b614373848285016140ca565b60208301525092915050565b6000806040838503121561439257600080fd5b823561439d81614304565b915060208301356001600160401b038111156143b857600080fd5b6142fa85828601614325565b6000602082840312156143d657600080fd5b81356124bc81613df5565b6000806000606084860312156143f657600080fd5b833561440181613d07565b92506020840135614411816140b8565b915060408401356001600160401b0381111561442c57600080fd5b6144388682870161416b565b9150509250925092565b60006020828403121561445457600080fd5b81356124bc81613d07565b6020815260006124bc6020830184613fb7565b6000610160828403121561448557600080fd5b61448d613d8c565b905061449882613d1c565b81526144a660208301613e0a565b6020820152604082013560408201526144c28360608401613e15565b60608201526144d48360a08401613e15565b60808201526144e68360e08401613e15565b60a08201526144f86101208301613e53565b60c082015261450a6101408301613e0a565b60e082015292915050565b600080610180838503121561452957600080fd5b823561453481613d07565b9150613f258460208501614472565b6000610200828403121561455657600080fd5b61455e613daf565b905061456982613e0a565b815261457760208301613e0a565b602082015261458860408301613d1c565b604082015261459960608301613d1c565b60608201526145ab8360808401613e15565b60808201526145bd8360c08401613e15565b60a08201526101006145d184828501613e15565b60c08301526145e4846101408501613e15565b60e08301526145f7846101808501613e15565b90820152614609836101c08401613e15565b61012082015292915050565b6000806000610240848603121561462b57600080fd5b833561463681613d07565b92506146458560208601614543565b915061022084013561465681613f2e565b809150509250925092565b600080610220838503121561467557600080fd5b823561468081613d07565b9150613f258460208501614543565b6000608082840312156146a157600080fd5b6146a9613d6a565b9050813581526020820135602082015260408201356001600160401b038111156141b757600080fd5b600080600080608085870312156146e857600080fd5b84356146f381613d07565b93506020850135614703816140b8565b925060408501356001600160401b0381111561471e57600080fd5b6142388782880161468f565b6000806040838503121561473d57600080fd5b8235613f7881614304565b8151815260208083015115159082015260408101610b5a565b6000806040838503121561477457600080fd5b8235613f7881613cbc565b6000610120828403121561479257600080fd5b61479a613d8c565b90506147a582613d1c565b81526147b48360208401613e15565b602082015260608201356001600160401b038111156147d257600080fd5b6147de848285016140ca565b6040830152506080820135606082015260a0820135608082015260c082013560a082015261480e60e08301614156565b60c082015261450a6101008301614156565b6000806040838503121561483357600080fd5b823561483e81613d07565b915060208301356001600160401b0381111561485957600080fd5b6142fa8582860161477f565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b602081526148c1602082018351614865565b6000602083015160c0808401526148db60e0840182613fb7565b949350505050565b6000806000606084860312156148f857600080fd5b833561490381613cbc565b925060208401356001600160401b0381111561491e57600080fd5b61492a868287016140ca565b925050604084013561465681613f2e565b60008060006060848603121561495057600080fd5b833561495b81613d07565b925060208401356001600160401b0381111561497657600080fd5b61492a8682870161477f565b803561ffff81168114613d2757600080fd5b600061020082840312156149a757600080fd5b6149af613dd2565b90506149ba82613d1c565b81526149c860208301613d1c565b60208201526149d96040830161431a565b60408201526149ea6060830161431a565b60608201526080820135608082015260a082013560a082015260c082013560c082015260e082013560e0820152610100808301356001600160401b0380821115614a3357600080fd5b614a3f868387016140ca565b83850152610120925082850135915080821115614a5b57600080fd5b50614a68858286016140ca565b828401525050610140614a7c818401614982565b90820152610160614a8e838201614982565b9082015261018082810135908201526101a0614aab818401614156565b908201526101c0614abd838201614156565b908201526101e0614acf838201614156565b9082015292915050565b600080600060608486031215614aee57600080fd5b8335614af981613d07565b925060208401356001600160401b03811115614b1457600080fd5b61492a86828701614994565b600080600060608486031215614b3557600080fd5b8335614b4081613d07565b92506020840135614b50816140b8565b915060408401356001600160401b03811115614b6b57600080fd5b6144388682870161468f565b60a08101610b5a8284614865565b600080600060608486031215614b9a57600080fd5b8335614ba581614304565b925060208401356001600160401b03811115614bc057600080fd5b61492a86828701614325565b600080600060608486031215614be157600080fd5b8335614bec81613f2e565b92506020840135614bfc81613f2e565b9150604084013561465681613f2e565b60008060408385031215614c1f57600080fd5b8235614c2a81613cbc565b91506020830135613f8881613df5565b60008060408385031215614c4d57600080fd5b8235614c5881613d07565b915060208301356001600160401b03811115614c7357600080fd5b6142fa85828601614994565b60008060006101a08486031215614c9557600080fd5b8335614ca081613d07565b9250614caf8560208601614472565b915061018084013561465681613f2e565b60008060006101008486031215614cd657600080fd5b8335614ce181613d07565b9250614cf08560208601613e5e565b915060e084013561465681613f2e565b600080600060608486031215614d1557600080fd5b8335614d2081613df5565b92506020840135614d3081613df5565b9150604084013561465681613d07565b60008060408385031215614d5357600080fd5b8235614d5e81613cbc565b946020939093013593505050565b60ff1981168114613c8f57600080fd5b60008060408385031215614d8f57600080fd5b8235614d9a81613f2e565b91506020830135613f8881614d6c565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015260c0830191906060850151151560808501528060808601511660a0850152505092915050565b600181811c90821680614e1e57607f821691505b602082108103614e3e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215614e5657600080fd5b81516124bc81613e45565b600060208284031215614e7357600080fd5b81516124bc81613d07565b6020815263ffffffff8251166020820152602082015160408201526000604083015160806060840152614eb460a0840182613fb7565b905064ffffffffff60608501511660808401528091505092915050565b600060208284031215614ee357600080fd5b5051919050565b602081526001600160601b038251166020820152600060208301516040808401526148db6060840182613fb7565b600060208284031215614f2a57600080fd5b81516124bc81613cbc565b634e487b7160e01b600052603260045260246000fd5b81516001600160601b031681526020808301516001600160a01b03169082015260408083015190820152606080830151610160830191614f979084018280518252602090810151910152565b506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c0830151151561012083015260e08301516001600160a01b038116610140840152613a24565b81516001600160a01b031681526102008101602083015161501a60208401826001600160a01b03169052565b50604083015161503560408401826001600160601b03169052565b50606083015161505060608401826001600160601b03169052565b50608083015161506d608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301516101006150a38185018380518252602090810151910152565b60e085015180516101408601526020908101516101608601529085015180516101808601528101516101a085015261012085015180516101c0860152908101516101e08501529050613a24565b60006020828403121561510257600080fd5b81516124bc81613df5565b6020815281516020820152602082015160408201526000604083015160806060840152614eb460a0840182613fb7565b60006040828403121561514f57600080fd5b615157613d42565b82518152602083015161516981613e45565b60208201529392505050565b602081526001600160601b038251166020820152600060208301516151a7604084018280518252602090810151910152565b5060408301516101208060808501526151c4610140850183613fb7565b9150606085015160a0850152608085015160c085015260a085015160e085015260c08501516151fd61010086018264ffffffffff169052565b5060e085015164ffffffffff8116858301525b5090949350505050565b602081526152346020820183516001600160601b03169052565b6000602083015161525060408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b03198116608084015250608083015160a083015260a083015160c083015260c083015160e083015260e083015161010081818501528085015191505061020061012081818601526152c8610220860184613fb7565b9250808601519050610140601f1986850301818701526152e88483613fb7565b9350808701519150506101606153038187018361ffff169052565b860151905061018061531a8682018361ffff169052565b8601516101a08681019190915286015190506101c06153418187018364ffffffffff169052565b86015190506101e061535b8682018364ffffffffff169052565b86015164ffffffffff8116838701529050615210565b6000808585111561538157600080fd5b8386111561538e57600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156153c35780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b601f8211156111f157600081815260208120601f850160051c810160208610156154325750805b601f850160051c820191505b8181101561101a5782815560010161543e565b81516001600160401b0381111561546a5761546a613d2c565b61547e816154788454614e0a565b8461540b565b602080601f8311600181146154b3576000841561549b5750858301515b600019600386901b1c1916600185901b17855561101a565b600085815260208120601f198616915b828110156154e2578886015182559484019460019091019084016154c3565b50858210156155005787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008251615522818460208701613f93565b9190910192915050565b6000806040838503121561553f57600080fd5b825161554a81613e45565b6020840151909250613f88816140b8565b60006020828403121561556d57600080fd5b81516124bc81613f2e565b60006020828403121561558a57600080fd5b81516124bc81614d6c565b60ff978816815260ff1996909616602087015293861660408601529190941660608401526001600160a01b03938416608084015290921660a082015263ffffffff9190911660c082015260e00190565b81810381811115610b5a57634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b80516020808301519190811015614e3e5760001960209190910360031b1b1691905056fea26469706673582212206992d2232f47a8f458e33987d3308329433a6282d84c6a5ea38e703c642f93d664736f6c63430008140033",
1641
3127
  "linkReferences": {
3128
+ "contracts/types/Key32.sol": {
3129
+ "Key32Lib": [
3130
+ {
3131
+ "length": 20,
3132
+ "start": 4554
3133
+ },
3134
+ {
3135
+ "length": 20,
3136
+ "start": 5322
3137
+ },
3138
+ {
3139
+ "length": 20,
3140
+ "start": 5441
3141
+ },
3142
+ {
3143
+ "length": 20,
3144
+ "start": 11420
3145
+ },
3146
+ {
3147
+ "length": 20,
3148
+ "start": 16431
3149
+ },
3150
+ {
3151
+ "length": 20,
3152
+ "start": 18569
3153
+ },
3154
+ {
3155
+ "length": 20,
3156
+ "start": 19318
3157
+ },
3158
+ {
3159
+ "length": 20,
3160
+ "start": 19434
3161
+ },
3162
+ {
3163
+ "length": 20,
3164
+ "start": 20172
3165
+ },
3166
+ {
3167
+ "length": 20,
3168
+ "start": 20288
3169
+ },
3170
+ {
3171
+ "length": 20,
3172
+ "start": 21020
3173
+ },
3174
+ {
3175
+ "length": 20,
3176
+ "start": 21136
3177
+ },
3178
+ {
3179
+ "length": 20,
3180
+ "start": 21318
3181
+ },
3182
+ {
3183
+ "length": 20,
3184
+ "start": 21434
3185
+ }
3186
+ ]
3187
+ },
1642
3188
  "contracts/types/NftId.sol": {
1643
3189
  "NftIdLib": [
1644
3190
  {
1645
3191
  "length": 20,
1646
- "start": 9130
3192
+ "start": 10416
3193
+ },
3194
+ {
3195
+ "length": 20,
3196
+ "start": 12176
3197
+ },
3198
+ {
3199
+ "length": 20,
3200
+ "start": 13307
3201
+ },
3202
+ {
3203
+ "length": 20,
3204
+ "start": 14096
3205
+ },
3206
+ {
3207
+ "length": 20,
3208
+ "start": 16998
3209
+ }
3210
+ ]
3211
+ },
3212
+ "contracts/types/ObjectType.sol": {
3213
+ "ObjectTypeLib": [
3214
+ {
3215
+ "length": 20,
3216
+ "start": 4678
3217
+ },
3218
+ {
3219
+ "length": 20,
3220
+ "start": 18690
3221
+ }
3222
+ ]
3223
+ },
3224
+ "contracts/types/RiskId.sol": {
3225
+ "RiskIdLib": [
3226
+ {
3227
+ "length": 20,
3228
+ "start": 11259
3229
+ },
3230
+ {
3231
+ "length": 20,
3232
+ "start": 12917
3233
+ },
3234
+ {
3235
+ "length": 20,
3236
+ "start": 14181
3237
+ }
3238
+ ]
3239
+ },
3240
+ "contracts/types/RoleId.sol": {
3241
+ "RoleIdLib": [
3242
+ {
3243
+ "length": 20,
3244
+ "start": 2202
3245
+ },
3246
+ {
3247
+ "length": 20,
3248
+ "start": 2373
3249
+ },
3250
+ {
3251
+ "length": 20,
3252
+ "start": 3624
3253
+ },
3254
+ {
3255
+ "length": 20,
3256
+ "start": 3949
1647
3257
  },
1648
3258
  {
1649
3259
  "length": 20,
1650
- "start": 10298
3260
+ "start": 11711
1651
3261
  },
1652
3262
  {
1653
3263
  "length": 20,
1654
- "start": 15086
3264
+ "start": 13044
1655
3265
  },
1656
3266
  {
1657
3267
  "length": 20,
1658
- "start": 22389
3268
+ "start": 13130
1659
3269
  },
1660
3270
  {
1661
3271
  "length": 20,
1662
- "start": 22612
3272
+ "start": 14783
1663
3273
  },
1664
3274
  {
1665
3275
  "length": 20,
1666
- "start": 24130
3276
+ "start": 15196
3277
+ },
3278
+ {
3279
+ "length": 20,
3280
+ "start": 15908
3281
+ },
3282
+ {
3283
+ "length": 20,
3284
+ "start": 16076
3285
+ },
3286
+ {
3287
+ "length": 20,
3288
+ "start": 17772
1667
3289
  }
1668
3290
  ]
1669
3291
  },
1670
- "contracts/types/UFixed.sol": {
1671
- "UFixedMathLib": [
3292
+ "contracts/types/StateId.sol": {
3293
+ "StateIdLib": [
3294
+ {
3295
+ "length": 20,
3296
+ "start": 4150
3297
+ },
3298
+ {
3299
+ "length": 20,
3300
+ "start": 4900
3301
+ },
3302
+ {
3303
+ "length": 20,
3304
+ "start": 6017
3305
+ },
3306
+ {
3307
+ "length": 20,
3308
+ "start": 12008
3309
+ },
3310
+ {
3311
+ "length": 20,
3312
+ "start": 14335
3313
+ },
3314
+ {
3315
+ "length": 20,
3316
+ "start": 15589
3317
+ },
3318
+ {
3319
+ "length": 20,
3320
+ "start": 18907
3321
+ },
3322
+ {
3323
+ "length": 20,
3324
+ "start": 19626
3325
+ },
3326
+ {
3327
+ "length": 20,
3328
+ "start": 19846
3329
+ },
1672
3330
  {
1673
3331
  "length": 20,
1674
- "start": 26417
3332
+ "start": 20446
1675
3333
  },
1676
3334
  {
1677
3335
  "length": 20,
1678
- "start": 26560
3336
+ "start": 20666
1679
3337
  }
1680
3338
  ]
1681
3339
  }
1682
3340
  },
1683
3341
  "deployedLinkReferences": {
3342
+ "contracts/types/Key32.sol": {
3343
+ "Key32Lib": [
3344
+ {
3345
+ "length": 20,
3346
+ "start": 4460
3347
+ },
3348
+ {
3349
+ "length": 20,
3350
+ "start": 9471
3351
+ },
3352
+ {
3353
+ "length": 20,
3354
+ "start": 11609
3355
+ },
3356
+ {
3357
+ "length": 20,
3358
+ "start": 12358
3359
+ },
3360
+ {
3361
+ "length": 20,
3362
+ "start": 12474
3363
+ },
3364
+ {
3365
+ "length": 20,
3366
+ "start": 13212
3367
+ },
3368
+ {
3369
+ "length": 20,
3370
+ "start": 13328
3371
+ },
3372
+ {
3373
+ "length": 20,
3374
+ "start": 14060
3375
+ },
3376
+ {
3377
+ "length": 20,
3378
+ "start": 14176
3379
+ },
3380
+ {
3381
+ "length": 20,
3382
+ "start": 14358
3383
+ },
3384
+ {
3385
+ "length": 20,
3386
+ "start": 14474
3387
+ }
3388
+ ]
3389
+ },
1684
3390
  "contracts/types/NftId.sol": {
1685
3391
  "NftIdLib": [
1686
3392
  {
1687
3393
  "length": 20,
1688
- "start": 4336
3394
+ "start": 3456
3395
+ },
3396
+ {
3397
+ "length": 20,
3398
+ "start": 5216
3399
+ },
3400
+ {
3401
+ "length": 20,
3402
+ "start": 6347
3403
+ },
3404
+ {
3405
+ "length": 20,
3406
+ "start": 7136
3407
+ },
3408
+ {
3409
+ "length": 20,
3410
+ "start": 10038
3411
+ }
3412
+ ]
3413
+ },
3414
+ "contracts/types/ObjectType.sol": {
3415
+ "ObjectTypeLib": [
3416
+ {
3417
+ "length": 20,
3418
+ "start": 11730
3419
+ }
3420
+ ]
3421
+ },
3422
+ "contracts/types/RiskId.sol": {
3423
+ "RiskIdLib": [
3424
+ {
3425
+ "length": 20,
3426
+ "start": 4299
3427
+ },
3428
+ {
3429
+ "length": 20,
3430
+ "start": 5957
1689
3431
  },
1690
3432
  {
1691
3433
  "length": 20,
1692
- "start": 5504
3434
+ "start": 7221
3435
+ }
3436
+ ]
3437
+ },
3438
+ "contracts/types/RoleId.sol": {
3439
+ "RoleIdLib": [
3440
+ {
3441
+ "length": 20,
3442
+ "start": 4751
3443
+ },
3444
+ {
3445
+ "length": 20,
3446
+ "start": 6084
1693
3447
  },
1694
3448
  {
1695
3449
  "length": 20,
1696
- "start": 10292
3450
+ "start": 6170
1697
3451
  },
1698
3452
  {
1699
3453
  "length": 20,
1700
- "start": 17595
3454
+ "start": 7823
1701
3455
  },
1702
3456
  {
1703
3457
  "length": 20,
1704
- "start": 17818
3458
+ "start": 8236
1705
3459
  },
1706
3460
  {
1707
3461
  "length": 20,
1708
- "start": 19336
3462
+ "start": 8948
3463
+ },
3464
+ {
3465
+ "length": 20,
3466
+ "start": 9116
3467
+ },
3468
+ {
3469
+ "length": 20,
3470
+ "start": 10812
1709
3471
  }
1710
3472
  ]
1711
3473
  },
1712
- "contracts/types/UFixed.sol": {
1713
- "UFixedMathLib": [
3474
+ "contracts/types/StateId.sol": {
3475
+ "StateIdLib": [
3476
+ {
3477
+ "length": 20,
3478
+ "start": 5048
3479
+ },
3480
+ {
3481
+ "length": 20,
3482
+ "start": 7375
3483
+ },
3484
+ {
3485
+ "length": 20,
3486
+ "start": 8629
3487
+ },
3488
+ {
3489
+ "length": 20,
3490
+ "start": 11947
3491
+ },
3492
+ {
3493
+ "length": 20,
3494
+ "start": 12666
3495
+ },
3496
+ {
3497
+ "length": 20,
3498
+ "start": 12886
3499
+ },
1714
3500
  {
1715
3501
  "length": 20,
1716
- "start": 21623
3502
+ "start": 13486
1717
3503
  },
1718
3504
  {
1719
3505
  "length": 20,
1720
- "start": 21766
3506
+ "start": 13706
1721
3507
  }
1722
3508
  ]
1723
3509
  }