@etherisc/gif-next 0.0.2-e9148e0-933 → 0.0.2-e922e07-736
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.
- package/README.md +136 -2
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
 - package/artifacts/contracts/components/Component.sol/Component.json +774 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +879 -236
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/{shared/RegisterableUpgradable.sol/RegisterableUpgradable.json → components/IComponent.sol/IComponent.json} +164 -159
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +689 -30
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +838 -58
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +524 -9
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +950 -281
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +568 -188
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +764 -0
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
 - package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +86 -2
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1912 -421
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +194 -165
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +901 -1127
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +211 -144
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +126 -159
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +420 -305
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +297 -112
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +261 -0
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/{ComponentServiceBase.sol/ComponentServiceBase.json → ComponentService.sol/ComponentService.json} +189 -177
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +2 -2
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +2 -2
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +59 -16
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +968 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +665 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1096 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +661 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +754 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +637 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1221 -213
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +436 -79
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +556 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +633 -0
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/{IComponentOwnerService.sol/IComponentOwnerService.json → IClaimService.sol/IClaimService.json} +150 -207
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +727 -160
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +540 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +37 -251
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +47 -414
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1021 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +689 -0
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +209 -321
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +296 -95
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +218 -499
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +299 -98
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +242 -131
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +158 -215
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +256 -226
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +202 -318
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +298 -141
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +547 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +141 -53
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +40 -29
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +129 -0
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +21 -34
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/{experiment/inheritance/IB.sol/IB.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +18 -20
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
 - package/artifacts/contracts/shared/IService.sol/IService.json +31 -183
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -152
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +120 -27
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +294 -61
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +129 -51
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
 - package/artifacts/contracts/shared/Service.sol/Service.json +127 -170
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.json +2 -152
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +129 -51
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
 - package/artifacts/contracts/test/TestService.sol/TestService.json +148 -227
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +8 -190
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -0
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.json +23 -4
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
 - package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +25 -7
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
 - package/contracts/components/Component.sol +221 -0
 - package/contracts/components/Distribution.sol +200 -79
 - package/contracts/components/IComponent.sol +68 -0
 - package/contracts/components/IDistributionComponent.sol +44 -17
 - package/contracts/components/IPoolComponent.sol +126 -37
 - package/contracts/components/IProductComponent.sol +10 -5
 - package/contracts/components/Pool.sol +288 -152
 - package/contracts/components/Product.sol +124 -119
 - package/contracts/instance/BundleManager.sol +125 -0
 - package/contracts/instance/Cloneable.sol +46 -0
 - package/contracts/instance/IInstance.sol +56 -5
 - package/contracts/instance/IInstanceService.sol +33 -4
 - package/contracts/instance/Instance.sol +109 -261
 - package/contracts/instance/InstanceAccessManager.sol +87 -78
 - package/contracts/instance/InstanceReader.sol +12 -25
 - package/contracts/instance/InstanceService.sol +401 -104
 - package/contracts/instance/InstanceServiceManager.sol +6 -9
 - package/contracts/instance/ObjectManager.sol +84 -0
 - package/contracts/instance/base/ComponentService.sol +134 -0
 - package/contracts/instance/module/IAccess.sol +27 -18
 - package/contracts/instance/module/IBundle.sol +2 -1
 - package/contracts/instance/module/IDistribution.sol +2 -0
 - package/contracts/instance/module/IPolicy.sol +30 -3
 - package/contracts/instance/module/ISetup.sol +12 -10
 - package/contracts/instance/service/ApplicationService.sol +349 -0
 - package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
 - package/contracts/instance/service/BundleService.sol +299 -0
 - package/contracts/instance/service/BundleServiceManager.sol +51 -0
 - package/contracts/instance/service/ClaimService.sol +151 -0
 - package/contracts/instance/service/ClaimServiceManager.sol +35 -0
 - package/contracts/instance/service/DistributionService.sol +390 -28
 - package/contracts/instance/service/DistributionServiceManager.sol +7 -10
 - package/contracts/instance/service/IApplicationService.sol +82 -0
 - package/contracts/instance/service/IBundleService.sol +55 -0
 - package/contracts/instance/service/IClaimService.sol +61 -0
 - package/contracts/instance/service/IDistributionService.sol +86 -0
 - package/contracts/instance/service/IPolicyService.sol +72 -0
 - package/contracts/instance/service/IPoolService.sol +6 -23
 - package/contracts/instance/service/IProductService.sol +6 -73
 - package/contracts/instance/service/PolicyService.sol +394 -0
 - package/contracts/instance/service/PolicyServiceManager.sol +54 -0
 - package/contracts/instance/service/PoolService.sol +38 -123
 - package/contracts/instance/service/PoolServiceManager.sol +6 -9
 - package/contracts/instance/service/ProductService.sol +133 -448
 - package/contracts/instance/service/ProductServiceManager.sol +2 -2
 - package/contracts/registry/ChainNft.sol +1 -1
 - package/contracts/registry/IRegistry.sol +39 -19
 - package/contracts/registry/IRegistryService.sol +30 -13
 - package/contracts/registry/Registry.sol +236 -216
 - package/contracts/registry/RegistryAccessManager.sol +216 -0
 - package/contracts/registry/RegistryService.sol +96 -171
 - package/contracts/registry/RegistryServiceManager.sol +21 -39
 - package/contracts/registry/ReleaseManager.sol +322 -0
 - package/contracts/registry/TokenRegistry.sol +22 -17
 - package/contracts/shared/ERC165.sol +14 -12
 - package/contracts/shared/INftOwnable.sol +11 -10
 - package/contracts/shared/IPolicyHolder.sol +26 -0
 - package/contracts/shared/IRegisterable.sol +4 -6
 - package/contracts/shared/IRegistryLinked.sol +12 -0
 - package/contracts/shared/IService.sol +4 -1
 - package/contracts/shared/IVersionable.sol +4 -47
 - package/contracts/shared/NftOwnable.sol +66 -80
 - package/contracts/shared/PolicyHolder.sol +81 -0
 - package/contracts/shared/ProxyManager.sol +100 -25
 - package/contracts/shared/Registerable.sol +16 -32
 - package/contracts/shared/RegistryLinked.sol +48 -0
 - package/contracts/shared/Service.sol +25 -22
 - package/contracts/shared/Versionable.sol +4 -92
 - package/contracts/test/TestRegisterable.sol +1 -1
 - package/contracts/test/TestService.sol +4 -3
 - package/contracts/types/ClaimId.sol +52 -0
 - package/contracts/types/DistributorType.sol +2 -2
 - package/contracts/types/NftIdSet.sol +26 -24
 - package/contracts/types/ObjectType.sol +9 -5
 - package/contracts/types/PayoutId.sol +54 -0
 - package/contracts/types/Referral.sol +4 -0
 - package/contracts/types/RoleId.sol +19 -14
 - package/contracts/types/Seconds.sol +54 -0
 - package/contracts/types/Timestamp.sol +12 -13
 - package/package.json +3 -3
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -327
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -280
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
 - package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
 - package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
 - package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
 - package/contracts/components/BaseComponent.sol +0 -91
 - package/contracts/components/IBaseComponent.sol +0 -25
 - package/contracts/experiment/cloning/Cloner.sol +0 -47
 - package/contracts/experiment/errors/Require.sol +0 -38
 - package/contracts/experiment/errors/Revert.sol +0 -44
 - package/contracts/experiment/inheritance/A.sol +0 -53
 - package/contracts/experiment/inheritance/B.sol +0 -28
 - package/contracts/experiment/inheritance/C.sol +0 -34
 - package/contracts/experiment/inheritance/IA.sol +0 -13
 - package/contracts/experiment/inheritance/IB.sol +0 -10
 - package/contracts/experiment/inheritance/IC.sol +0 -12
 - package/contracts/experiment/statemachine/Dummy.sol +0 -27
 - package/contracts/experiment/statemachine/ISM.sol +0 -25
 - package/contracts/experiment/statemachine/SM.sol +0 -57
 - package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
 - package/contracts/experiment/types/TypeA.sol +0 -47
 - package/contracts/experiment/types/TypeB.sol +0 -29
 - package/contracts/instance/AccessManagedSimple.sol +0 -115
 - package/contracts/instance/AccessManagerSimple.sol +0 -692
 - package/contracts/instance/IAccessManagerSimple.sol +0 -391
 - package/contracts/instance/base/ComponentServiceBase.sol +0 -124
 - package/contracts/instance/base/IInstanceBase.sol +0 -23
 - package/contracts/instance/service/ComponentOwnerService.sol +0 -317
 - package/contracts/instance/service/IComponentOwnerService.sol +0 -20
 - package/contracts/shared/RegisterableUpgradable.sol +0 -16
 
| 
         @@ -0,0 +1,637 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {
         
     | 
| 
      
 2 
     | 
    
         
            +
              "_format": "hh-sol-artifact-1",
         
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "ClaimServiceManager",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "sourceName": "contracts/instance/service/ClaimServiceManager.sol",
         
     | 
| 
      
 5 
     | 
    
         
            +
              "abi": [
         
     | 
| 
      
 6 
     | 
    
         
            +
                {
         
     | 
| 
      
 7 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 8 
     | 
    
         
            +
                    {
         
     | 
| 
      
 9 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 11 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 12 
     | 
    
         
            +
                    }
         
     | 
| 
      
 13 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 14 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 15 
     | 
    
         
            +
                  "type": "constructor"
         
     | 
| 
      
 16 
     | 
    
         
            +
                },
         
     | 
| 
      
 17 
     | 
    
         
            +
                {
         
     | 
| 
      
 18 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 19 
     | 
    
         
            +
                    {
         
     | 
| 
      
 20 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 21 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 22 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 23 
     | 
    
         
            +
                    }
         
     | 
| 
      
 24 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 25 
     | 
    
         
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         
     | 
| 
      
 26 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 27 
     | 
    
         
            +
                },
         
     | 
| 
      
 28 
     | 
    
         
            +
                {
         
     | 
| 
      
 29 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 30 
     | 
    
         
            +
                    {
         
     | 
| 
      
 31 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 32 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
      
 33 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 34 
     | 
    
         
            +
                    }
         
     | 
| 
      
 35 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 36 
     | 
    
         
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         
     | 
| 
      
 37 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 38 
     | 
    
         
            +
                },
         
     | 
| 
      
 39 
     | 
    
         
            +
                {
         
     | 
| 
      
 40 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 41 
     | 
    
         
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         
     | 
| 
      
 42 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 43 
     | 
    
         
            +
                },
         
     | 
| 
      
 44 
     | 
    
         
            +
                {
         
     | 
| 
      
 45 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 46 
     | 
    
         
            +
                    {
         
     | 
| 
      
 47 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 49 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 50 
     | 
    
         
            +
                    }
         
     | 
| 
      
 51 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 52 
     | 
    
         
            +
                  "name": "ErrorNftOwnableNotOwner",
         
     | 
| 
      
 53 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 54 
     | 
    
         
            +
                },
         
     | 
| 
      
 55 
     | 
    
         
            +
                {
         
     | 
| 
      
 56 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 57 
     | 
    
         
            +
                    {
         
     | 
| 
      
 58 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 59 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 60 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 61 
     | 
    
         
            +
                    }
         
     | 
| 
      
 62 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 63 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
      
 64 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 65 
     | 
    
         
            +
                },
         
     | 
| 
      
 66 
     | 
    
         
            +
                {
         
     | 
| 
      
 67 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 68 
     | 
    
         
            +
                  "name": "ErrorProxyManagerAlreadyDeployed",
         
     | 
| 
      
 69 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 70 
     | 
    
         
            +
                },
         
     | 
| 
      
 71 
     | 
    
         
            +
                {
         
     | 
| 
      
 72 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 73 
     | 
    
         
            +
                    {
         
     | 
| 
      
 74 
     | 
    
         
            +
                      "internalType": "Version",
         
     | 
| 
      
 75 
     | 
    
         
            +
                      "name": "nextVersion",
         
     | 
| 
      
 76 
     | 
    
         
            +
                      "type": "uint24"
         
     | 
| 
      
 77 
     | 
    
         
            +
                    }
         
     | 
| 
      
 78 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 79 
     | 
    
         
            +
                  "name": "ErrorProxyManagerNextVersionNotIncreasing",
         
     | 
| 
      
 80 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 81 
     | 
    
         
            +
                },
         
     | 
| 
      
 82 
     | 
    
         
            +
                {
         
     | 
| 
      
 83 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 84 
     | 
    
         
            +
                  "name": "ErrorProxyManagerNotYetDeployed",
         
     | 
| 
      
 85 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 86 
     | 
    
         
            +
                },
         
     | 
| 
      
 87 
     | 
    
         
            +
                {
         
     | 
| 
      
 88 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 89 
     | 
    
         
            +
                  "name": "ErrorProxyManagerZeroVersion",
         
     | 
| 
      
 90 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 91 
     | 
    
         
            +
                },
         
     | 
| 
      
 92 
     | 
    
         
            +
                {
         
     | 
| 
      
 93 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 94 
     | 
    
         
            +
                  "name": "InvalidInitialization",
         
     | 
| 
      
 95 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 96 
     | 
    
         
            +
                },
         
     | 
| 
      
 97 
     | 
    
         
            +
                {
         
     | 
| 
      
 98 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 99 
     | 
    
         
            +
                  "name": "NotInitializing",
         
     | 
| 
      
 100 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 101 
     | 
    
         
            +
                },
         
     | 
| 
      
 102 
     | 
    
         
            +
                {
         
     | 
| 
      
 103 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 104 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 105 
     | 
    
         
            +
                    {
         
     | 
| 
      
 106 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 107 
     | 
    
         
            +
                      "internalType": "uint64",
         
     | 
| 
      
 108 
     | 
    
         
            +
                      "name": "version",
         
     | 
| 
      
 109 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 110 
     | 
    
         
            +
                    }
         
     | 
| 
      
 111 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 112 
     | 
    
         
            +
                  "name": "Initialized",
         
     | 
| 
      
 113 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 114 
     | 
    
         
            +
                },
         
     | 
| 
      
 115 
     | 
    
         
            +
                {
         
     | 
| 
      
 116 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 117 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 118 
     | 
    
         
            +
                    {
         
     | 
| 
      
 119 
     | 
    
         
            +
                      "indexed": true,
         
     | 
| 
      
 120 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 121 
     | 
    
         
            +
                      "name": "proxy",
         
     | 
| 
      
 122 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 123 
     | 
    
         
            +
                    },
         
     | 
| 
      
 124 
     | 
    
         
            +
                    {
         
     | 
| 
      
 125 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 126 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 127 
     | 
    
         
            +
                      "name": "initialImplementation",
         
     | 
| 
      
 128 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 129 
     | 
    
         
            +
                    }
         
     | 
| 
      
 130 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 131 
     | 
    
         
            +
                  "name": "LogProxyManagerVersionableDeployed",
         
     | 
| 
      
 132 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 133 
     | 
    
         
            +
                },
         
     | 
| 
      
 134 
     | 
    
         
            +
                {
         
     | 
| 
      
 135 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 136 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 137 
     | 
    
         
            +
                    {
         
     | 
| 
      
 138 
     | 
    
         
            +
                      "indexed": true,
         
     | 
| 
      
 139 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 140 
     | 
    
         
            +
                      "name": "proxy",
         
     | 
| 
      
 141 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 142 
     | 
    
         
            +
                    },
         
     | 
| 
      
 143 
     | 
    
         
            +
                    {
         
     | 
| 
      
 144 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 145 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 146 
     | 
    
         
            +
                      "name": "upgradedImplementation",
         
     | 
| 
      
 147 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 148 
     | 
    
         
            +
                    }
         
     | 
| 
      
 149 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 150 
     | 
    
         
            +
                  "name": "LogProxyManagerVersionableUpgraded",
         
     | 
| 
      
 151 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 152 
     | 
    
         
            +
                },
         
     | 
| 
      
 153 
     | 
    
         
            +
                {
         
     | 
| 
      
 154 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 155 
     | 
    
         
            +
                  "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
         
     | 
| 
      
 156 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 157 
     | 
    
         
            +
                    {
         
     | 
| 
      
 158 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 159 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 160 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 161 
     | 
    
         
            +
                    }
         
     | 
| 
      
 162 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 163 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 164 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 165 
     | 
    
         
            +
                },
         
     | 
| 
      
 166 
     | 
    
         
            +
                {
         
     | 
| 
      
 167 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 168 
     | 
    
         
            +
                    {
         
     | 
| 
      
 169 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 170 
     | 
    
         
            +
                      "name": "initialImplementation",
         
     | 
| 
      
 171 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 172 
     | 
    
         
            +
                    },
         
     | 
| 
      
 173 
     | 
    
         
            +
                    {
         
     | 
| 
      
 174 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 175 
     | 
    
         
            +
                      "name": "initializationData",
         
     | 
| 
      
 176 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 177 
     | 
    
         
            +
                    }
         
     | 
| 
      
 178 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 179 
     | 
    
         
            +
                  "name": "deploy",
         
     | 
| 
      
 180 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 181 
     | 
    
         
            +
                    {
         
     | 
| 
      
 182 
     | 
    
         
            +
                      "internalType": "contract IVersionable",
         
     | 
| 
      
 183 
     | 
    
         
            +
                      "name": "versionable",
         
     | 
| 
      
 184 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 185 
     | 
    
         
            +
                    }
         
     | 
| 
      
 186 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 187 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 188 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 189 
     | 
    
         
            +
                },
         
     | 
| 
      
 190 
     | 
    
         
            +
                {
         
     | 
| 
      
 191 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 192 
     | 
    
         
            +
                  "name": "getClaimService",
         
     | 
| 
      
 193 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 194 
     | 
    
         
            +
                    {
         
     | 
| 
      
 195 
     | 
    
         
            +
                      "internalType": "contract ClaimService",
         
     | 
| 
      
 196 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 197 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 198 
     | 
    
         
            +
                    }
         
     | 
| 
      
 199 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 200 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 201 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 202 
     | 
    
         
            +
                },
         
     | 
| 
      
 203 
     | 
    
         
            +
                {
         
     | 
| 
      
 204 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 205 
     | 
    
         
            +
                    {
         
     | 
| 
      
 206 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 207 
     | 
    
         
            +
                      "name": "proxyOwner",
         
     | 
| 
      
 208 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 209 
     | 
    
         
            +
                    },
         
     | 
| 
      
 210 
     | 
    
         
            +
                    {
         
     | 
| 
      
 211 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 212 
     | 
    
         
            +
                      "name": "deployData",
         
     | 
| 
      
 213 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 214 
     | 
    
         
            +
                    }
         
     | 
| 
      
 215 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 216 
     | 
    
         
            +
                  "name": "getDeployData",
         
     | 
| 
      
 217 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 218 
     | 
    
         
            +
                    {
         
     | 
| 
      
 219 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 220 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 221 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 222 
     | 
    
         
            +
                    }
         
     | 
| 
      
 223 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 224 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 225 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 226 
     | 
    
         
            +
                },
         
     | 
| 
      
 227 
     | 
    
         
            +
                {
         
     | 
| 
      
 228 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 229 
     | 
    
         
            +
                  "name": "getNftId",
         
     | 
| 
      
 230 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 231 
     | 
    
         
            +
                    {
         
     | 
| 
      
 232 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 233 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 234 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 235 
     | 
    
         
            +
                    }
         
     | 
| 
      
 236 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 237 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 238 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 239 
     | 
    
         
            +
                },
         
     | 
| 
      
 240 
     | 
    
         
            +
                {
         
     | 
| 
      
 241 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 242 
     | 
    
         
            +
                  "name": "getOwner",
         
     | 
| 
      
 243 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 244 
     | 
    
         
            +
                    {
         
     | 
| 
      
 245 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 246 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 247 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 248 
     | 
    
         
            +
                    }
         
     | 
| 
      
 249 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 250 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 251 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 252 
     | 
    
         
            +
                },
         
     | 
| 
      
 253 
     | 
    
         
            +
                {
         
     | 
| 
      
 254 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 255 
     | 
    
         
            +
                  "name": "getProxy",
         
     | 
| 
      
 256 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 257 
     | 
    
         
            +
                    {
         
     | 
| 
      
 258 
     | 
    
         
            +
                      "internalType": "contract UpgradableProxyWithAdmin",
         
     | 
| 
      
 259 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 260 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 261 
     | 
    
         
            +
                    }
         
     | 
| 
      
 262 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 263 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 264 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 265 
     | 
    
         
            +
                },
         
     | 
| 
      
 266 
     | 
    
         
            +
                {
         
     | 
| 
      
 267 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 268 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
      
 269 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 270 
     | 
    
         
            +
                    {
         
     | 
| 
      
 271 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 272 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 273 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 274 
     | 
    
         
            +
                    }
         
     | 
| 
      
 275 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 276 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 277 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 278 
     | 
    
         
            +
                },
         
     | 
| 
      
 279 
     | 
    
         
            +
                {
         
     | 
| 
      
 280 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 281 
     | 
    
         
            +
                  "name": "getRegistryAddress",
         
     | 
| 
      
 282 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 283 
     | 
    
         
            +
                    {
         
     | 
| 
      
 284 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 285 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 286 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 287 
     | 
    
         
            +
                    }
         
     | 
| 
      
 288 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 289 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 290 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 291 
     | 
    
         
            +
                },
         
     | 
| 
      
 292 
     | 
    
         
            +
                {
         
     | 
| 
      
 293 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 294 
     | 
    
         
            +
                    {
         
     | 
| 
      
 295 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 296 
     | 
    
         
            +
                      "name": "upgradeData",
         
     | 
| 
      
 297 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 298 
     | 
    
         
            +
                    }
         
     | 
| 
      
 299 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 300 
     | 
    
         
            +
                  "name": "getUpgradeData",
         
     | 
| 
      
 301 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 302 
     | 
    
         
            +
                    {
         
     | 
| 
      
 303 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 304 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 305 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 306 
     | 
    
         
            +
                    }
         
     | 
| 
      
 307 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 308 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 309 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 310 
     | 
    
         
            +
                },
         
     | 
| 
      
 311 
     | 
    
         
            +
                {
         
     | 
| 
      
 312 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 313 
     | 
    
         
            +
                  "name": "getVersion",
         
     | 
| 
      
 314 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 315 
     | 
    
         
            +
                    {
         
     | 
| 
      
 316 
     | 
    
         
            +
                      "internalType": "Version",
         
     | 
| 
      
 317 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 318 
     | 
    
         
            +
                      "type": "uint24"
         
     | 
| 
      
 319 
     | 
    
         
            +
                    }
         
     | 
| 
      
 320 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 321 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 322 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 323 
     | 
    
         
            +
                },
         
     | 
| 
      
 324 
     | 
    
         
            +
                {
         
     | 
| 
      
 325 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 326 
     | 
    
         
            +
                    {
         
     | 
| 
      
 327 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 328 
     | 
    
         
            +
                      "name": "idx",
         
     | 
| 
      
 329 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 330 
     | 
    
         
            +
                    }
         
     | 
| 
      
 331 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 332 
     | 
    
         
            +
                  "name": "getVersion",
         
     | 
| 
      
 333 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 334 
     | 
    
         
            +
                    {
         
     | 
| 
      
 335 
     | 
    
         
            +
                      "internalType": "Version",
         
     | 
| 
      
 336 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 337 
     | 
    
         
            +
                      "type": "uint24"
         
     | 
| 
      
 338 
     | 
    
         
            +
                    }
         
     | 
| 
      
 339 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 340 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 341 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 342 
     | 
    
         
            +
                },
         
     | 
| 
      
 343 
     | 
    
         
            +
                {
         
     | 
| 
      
 344 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 345 
     | 
    
         
            +
                  "name": "getVersionCount",
         
     | 
| 
      
 346 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 347 
     | 
    
         
            +
                    {
         
     | 
| 
      
 348 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 349 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 350 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 351 
     | 
    
         
            +
                    }
         
     | 
| 
      
 352 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 353 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 354 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 355 
     | 
    
         
            +
                },
         
     | 
| 
      
 356 
     | 
    
         
            +
                {
         
     | 
| 
      
 357 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 358 
     | 
    
         
            +
                    {
         
     | 
| 
      
 359 
     | 
    
         
            +
                      "internalType": "Version",
         
     | 
| 
      
 360 
     | 
    
         
            +
                      "name": "_version",
         
     | 
| 
      
 361 
     | 
    
         
            +
                      "type": "uint24"
         
     | 
| 
      
 362 
     | 
    
         
            +
                    }
         
     | 
| 
      
 363 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 364 
     | 
    
         
            +
                  "name": "getVersionInfo",
         
     | 
| 
      
 365 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 366 
     | 
    
         
            +
                    {
         
     | 
| 
      
 367 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 368 
     | 
    
         
            +
                        {
         
     | 
| 
      
 369 
     | 
    
         
            +
                          "internalType": "Version",
         
     | 
| 
      
 370 
     | 
    
         
            +
                          "name": "version",
         
     | 
| 
      
 371 
     | 
    
         
            +
                          "type": "uint24"
         
     | 
| 
      
 372 
     | 
    
         
            +
                        },
         
     | 
| 
      
 373 
     | 
    
         
            +
                        {
         
     | 
| 
      
 374 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 375 
     | 
    
         
            +
                          "name": "implementation",
         
     | 
| 
      
 376 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 377 
     | 
    
         
            +
                        },
         
     | 
| 
      
 378 
     | 
    
         
            +
                        {
         
     | 
| 
      
 379 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 380 
     | 
    
         
            +
                          "name": "activatedBy",
         
     | 
| 
      
 381 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 382 
     | 
    
         
            +
                        },
         
     | 
| 
      
 383 
     | 
    
         
            +
                        {
         
     | 
| 
      
 384 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 385 
     | 
    
         
            +
                          "name": "activatedAt",
         
     | 
| 
      
 386 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 387 
     | 
    
         
            +
                        },
         
     | 
| 
      
 388 
     | 
    
         
            +
                        {
         
     | 
| 
      
 389 
     | 
    
         
            +
                          "internalType": "Blocknumber",
         
     | 
| 
      
 390 
     | 
    
         
            +
                          "name": "activatedIn",
         
     | 
| 
      
 391 
     | 
    
         
            +
                          "type": "uint32"
         
     | 
| 
      
 392 
     | 
    
         
            +
                        }
         
     | 
| 
      
 393 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 394 
     | 
    
         
            +
                      "internalType": "struct ProxyManager.VersionInfo",
         
     | 
| 
      
 395 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 396 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 397 
     | 
    
         
            +
                    }
         
     | 
| 
      
 398 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 399 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 400 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 401 
     | 
    
         
            +
                },
         
     | 
| 
      
 402 
     | 
    
         
            +
                {
         
     | 
| 
      
 403 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 404 
     | 
    
         
            +
                  "name": "initializeERC165",
         
     | 
| 
      
 405 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 406 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 407 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 408 
     | 
    
         
            +
                },
         
     | 
| 
      
 409 
     | 
    
         
            +
                {
         
     | 
| 
      
 410 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 411 
     | 
    
         
            +
                    {
         
     | 
| 
      
 412 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 413 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 414 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 415 
     | 
    
         
            +
                    },
         
     | 
| 
      
 416 
     | 
    
         
            +
                    {
         
     | 
| 
      
 417 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 418 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 419 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 420 
     | 
    
         
            +
                    }
         
     | 
| 
      
 421 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 422 
     | 
    
         
            +
                  "name": "initializeNftOwnable",
         
     | 
| 
      
 423 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 424 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 425 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 426 
     | 
    
         
            +
                },
         
     | 
| 
      
 427 
     | 
    
         
            +
                {
         
     | 
| 
      
 428 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 429 
     | 
    
         
            +
                    {
         
     | 
| 
      
 430 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 431 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 432 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 433 
     | 
    
         
            +
                    }
         
     | 
| 
      
 434 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 435 
     | 
    
         
            +
                  "name": "initializeProxyManager",
         
     | 
| 
      
 436 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 437 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 438 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 439 
     | 
    
         
            +
                },
         
     | 
| 
      
 440 
     | 
    
         
            +
                {
         
     | 
| 
      
 441 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 442 
     | 
    
         
            +
                    {
         
     | 
| 
      
 443 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 444 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 445 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 446 
     | 
    
         
            +
                    }
         
     | 
| 
      
 447 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 448 
     | 
    
         
            +
                  "name": "initializeRegistryLinked",
         
     | 
| 
      
 449 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 450 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 451 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 452 
     | 
    
         
            +
                },
         
     | 
| 
      
 453 
     | 
    
         
            +
                {
         
     | 
| 
      
 454 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 455 
     | 
    
         
            +
                  "name": "linkToRegisteredNftId",
         
     | 
| 
      
 456 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 457 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 458 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 459 
     | 
    
         
            +
                },
         
     | 
| 
      
 460 
     | 
    
         
            +
                {
         
     | 
| 
      
 461 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 462 
     | 
    
         
            +
                    {
         
     | 
| 
      
 463 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 464 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 465 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 466 
     | 
    
         
            +
                    }
         
     | 
| 
      
 467 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 468 
     | 
    
         
            +
                  "name": "registerInterface",
         
     | 
| 
      
 469 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 470 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 471 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 472 
     | 
    
         
            +
                },
         
     | 
| 
      
 473 
     | 
    
         
            +
                {
         
     | 
| 
      
 474 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 475 
     | 
    
         
            +
                    {
         
     | 
| 
      
 476 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 477 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 478 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 479 
     | 
    
         
            +
                    }
         
     | 
| 
      
 480 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 481 
     | 
    
         
            +
                  "name": "supportsInterface",
         
     | 
| 
      
 482 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 483 
     | 
    
         
            +
                    {
         
     | 
| 
      
 484 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 485 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 486 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 487 
     | 
    
         
            +
                    }
         
     | 
| 
      
 488 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 489 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 490 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 491 
     | 
    
         
            +
                },
         
     | 
| 
      
 492 
     | 
    
         
            +
                {
         
     | 
| 
      
 493 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 494 
     | 
    
         
            +
                    {
         
     | 
| 
      
 495 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 496 
     | 
    
         
            +
                      "name": "newImplementation",
         
     | 
| 
      
 497 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 498 
     | 
    
         
            +
                    },
         
     | 
| 
      
 499 
     | 
    
         
            +
                    {
         
     | 
| 
      
 500 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 501 
     | 
    
         
            +
                      "name": "upgradeData",
         
     | 
| 
      
 502 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 503 
     | 
    
         
            +
                    }
         
     | 
| 
      
 504 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 505 
     | 
    
         
            +
                  "name": "upgrade",
         
     | 
| 
      
 506 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 507 
     | 
    
         
            +
                    {
         
     | 
| 
      
 508 
     | 
    
         
            +
                      "internalType": "contract IVersionable",
         
     | 
| 
      
 509 
     | 
    
         
            +
                      "name": "versionable",
         
     | 
| 
      
 510 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 511 
     | 
    
         
            +
                    }
         
     | 
| 
      
 512 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 513 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 514 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 515 
     | 
    
         
            +
                }
         
     | 
| 
      
 516 
     | 
    
         
            +
              ],
         
     | 
| 
      
 517 
     | 
    
         
            +
              "bytecode": "0x60806040523480156200001157600080fd5b5060405162005e3138038062005e31833981016040819052620000349162000b60565b806200004081620000d4565b506000604051620000519062000b44565b604051809103906000f0801580156200006e573d6000803e3d6000fd5b50604080516001600160a01b0385166020820152308183015281518082038301815260609091019091529091506000620000a98383620001f4565b600580546001600160a01b0319166001600160a01b03929092169190911790555062000d0592505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff1615906001600160401b03166000811580156200011f5750825b90506000826001600160401b031660011480156200013c5750303b155b9050811580156200014b575080155b156200016a5760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b031916600117855583156200019957845460ff60401b1916680100000000000000001785555b620001a5338762000390565b8315620001ec57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b60006200020062000429565b6001600160a01b0316336001600160a01b031614620002395760405163086391f760e31b81523360048201526024015b60405180910390fd5b600454156200025b5760405163402b135f60e11b815260040160405180910390fd5b60006200026762000429565b905030848162000278848762000582565b604051620002869062000b52565b620002949392919062000bda565b604051809103906000f080158015620002b1573d6000803e3d6000fd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b8152905191945062000344918591630d8e6e2c9160048083019260209291908290030181865afa15801562000316573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200033c919062000c11565b8684620005dc565b6002546040516001600160a01b038781168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a2505092915050565b6200039a62000993565b620003a581620009e4565b620003af62000afc565b6001600160a01b038216620003d75760405163f17ef42d60e01b815260040160405180910390fd5b507f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546001600160601b03166c010000000000000000000000006001600160a01b0390931692909202919091179055565b6000807f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015620004ac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004d2919062000c38565b1562000563576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801562000537573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200055d919062000b60565b91505090565b546c0100000000000000000000000090046001600160a01b0316919050565b60606349bb9e4b60e01b8383604051602401620005a192919062000c5c565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b6200065e8373__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__6304b8f6c56040518163ffffffff1660e01b8152600401602060405180830381865af41580156200062b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000651919062000c11565b62ffffff90811691161490565b156200067d576040516348c618db60e01b815260040160405180910390fd5b60045415620007e85760048054620006989060019062000c8a565b81548110620006ab57620006ab62000cac565b60009182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90635560100790602401602060405180830381865af415801562000720573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000746919062000cc2565b604051635560100760e01b815262ffffff8516600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90635560100790602401602060405180830381865af41580156200079b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007c1919062000cc2565b11620007e857604051633e614b6d60e11b815262ffffff8416600482015260240162000230565b600480546001810182556000829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808916600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020848101919091529085168383015281516356db0c1960e11b815291519293606085019373__$d53880c81dc91c20799140d711e5ab8718$__9363adb6183293818401939092918290030181865af4158015620008bc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008e2919062000cdc565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff968716600090815260038452604090819020855181549587015199166001600160b81b03199095169490941763010000006001600160a01b03998a1602178455840151600190930180546060860151608090960151949098166001600160c81b031990981697909717600160a01b94909216939093021763ffffffff60c81b1916600160c81b9190921602179092555050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16620009e257604051631afcd79f60e31b815260040160405180910390fd5b565b620009ee62000993565b806001600160a01b03163b60000362000a265760405163fdeac91f60e01b81526001600160a01b038216600482015260240162000230565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263230c0c8160e11b60048201526301ffc9a790602401602060405180830381865afa92505050801562000aa3575060408051601f3d908101601f1916820190925262000aa09181019062000c38565b60015b62000acd5760405163fdeac91f60e01b81526001600160a01b038216600482015260240162000230565b8062000af85760405163fdeac91f60e01b81526001600160a01b038316600482015260240162000230565b5050565b62000b0662000993565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b611a2e80620034d483390190565b610f2f8062004f0283390190565b60006020828403121562000b7357600080fd5b81516001600160a01b038116811462000b8b57600080fd5b9392505050565b6000815180845260005b8181101562000bba5760208185018101518683018201520162000b9c565b506000602082860101526020601f19601f83011685010191505092915050565b6001600160a01b0384811682528316602082015260606040820181905260009062000c089083018462000b92565b95945050505050565b60006020828403121562000c2457600080fd5b815162ffffff8116811462000b8b57600080fd5b60006020828403121562000c4b57600080fd5b8151801515811462000b8b57600080fd5b6001600160a01b038316815260406020820181905260009062000c829083018462000b92565b949350505050565b81810381811115620005d657634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60006020828403121562000cd557600080fd5b5051919050565b60006020828403121562000cef57600080fd5b815164ffffffffff8116811462000b8b57600080fd5b6127bf8062000d156000396000f3fe60806040523480156200001157600080fd5b50600436106200015d5760003560e01c80636c25096111620000c7578063ada9652e1162000086578063ada9652e1462000402578063b88da7591462000419578063c987336c1462000430578063e97fac051462000447578063f21de1e81462000343578063f7c34ee0146200045e57600080fd5b80636c25096114620003aa578063893d20e814620003bc5780638e9afce614620003c6578063933a9ce814620003dd578063946dfcfe14620003ef57600080fd5b8063214cdb801162000120578063214cdb80146200020f57806336fc697e14620002265780634d459c9014620002305780635ab1bd531462000343578063644c45e01462000369578063675393bf146200039357600080fd5b806301ffc9a71462000162578063058f7a9714620001a75780630d8e6e2c14620001c0578063138461e014620001df5780631775564d14620001e9575b600080fd5b620001926200017336600462001441565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b620001be620001b83660046200148a565b62000475565b005b620001ca6200058e565b60405162ffffff90911681526020016200019e565b620001be62000604565b62000200620001fa36600462001555565b62000819565b6040516200019e9190620015f3565b620001be6200022036600462001441565b62000873565b620001be620008a2565b620002e5620002413660046200161a565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091525062ffffff908116600090815260036020908152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a0016200019e565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016200019e565b6000805160206200276a833981519152546040516001600160601b0390911681526020016200019e565b620001be620003a43660046200148a565b620008ea565b6005546001600160a01b031662000350565b6200035062000a03565b62000200620003d73660046200163a565b62000b42565b6002546001600160a01b031662000350565b6004545b6040519081526020016200019e565b620003f36000805160206200276a83398151915281565b620001ca6200042a3660046200167b565b62000b97565b620003506200044136600462001555565b62000bdb565b620003506200045836600462001555565b62000e19565b620001be6200046f36600462001695565b62000fb1565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff16600081158015620004bc5750825b905060008267ffffffffffffffff166001148015620004da5750303b155b905081158015620004e9575080155b15620005085760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156200053357845460ff60401b1916600160401b1785555b6200053f338762000fb1565b83156200058657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b600254604080516303639b8b60e21b815290516000926001600160a01b031691630d8e6e2c9160048083019260209291908290030181865afa158015620005d9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005ff9190620016d3565b905090565b60006000805160206200276a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801562000675573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200069b9190620016f3565b15620006cd5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b30620006e16001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156200072a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007509190620016f3565b6200077a5760405163b9304b0d60e01b81526001600160a01b0382166004820152602401620006c4565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015620007cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007f5919062001717565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b60606349bb9e4b60e01b83836040516024016200083892919062001742565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b6200087d62001030565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b620008ac62001030565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b620008f462001030565b806001600160a01b03163b6000036200092c5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620006c4565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263230c0c8160e11b60048201526301ffc9a790602401602060405180830381865afa925050508015620009a9575060408051601f3d908101601f19168201909252620009a691810190620016f3565b60015b620009d35760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620006c4565b80620009fe5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401620006c4565b505b50565b6000806000805160206200276a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801562000a75573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a9b9190620016f3565b1562000b2c576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801562000b00573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000b26919062001768565b91505090565b54600160601b90046001600160a01b0316919050565b606063329d6e7460e01b8260405160240162000b5f9190620015f3565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915292915050565b60006004828154811062000baf5762000baf62001788565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b600062000be762000a03565b6001600160a01b0316336001600160a01b03161462000c1c5760405163086391f760e31b8152336004820152602401620006c4565b60045460000362000c405760405163366dfd2160e21b815260040160405180910390fd5b600062000c4c62000a03565b9050600062000c636002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000ca3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000cc9919062001768565b6002549091506001600160a01b03908116908216639623609d828862000cef8962000b42565b6040518463ffffffff1660e01b815260040162000d0f939291906200179e565b600060405180830381600087803b15801562000d2a57600080fd5b505af115801562000d3f573d6000803e3d6000fd5b50505050600260009054906101000a90046001600160a01b0316935062000dcc846001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000d9e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000dc49190620016d3565b87856200107c565b6002546040516001600160a01b038881168252909116907f1356a2c922be684528fa1759d1808395e5c5010181dd333cdb6f03e2d8545b659060200160405180910390a250505092915050565b600062000e2562000a03565b6001600160a01b0316336001600160a01b03161462000e5a5760405163086391f760e31b8152336004820152602401620006c4565b6004541562000e7c5760405163402b135f60e11b815260040160405180910390fd5b600062000e8862000a03565b905030848162000e99848762000819565b60405162000ea79062001433565b62000eb5939291906200179e565b604051809103906000f08015801562000ed2573d6000803e3d6000fd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b8152905191945062000f65918591630d8e6e2c9160048083019260209291908290030181865afa15801562000f37573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f5d9190620016d3565b86846200107c565b6002546040516001600160a01b038781168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a2505092915050565b62000fbb62001030565b62000fc681620008ea565b62000fd0620008a2565b6001600160a01b03821662000ff85760405163f17ef42d60e01b815260040160405180910390fd5b506000805160206200276a83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166200107a57604051631afcd79f60e31b815260040160405180910390fd5b565b620010fe8373__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__6304b8f6c56040518163ffffffff1660e01b8152600401602060405180830381865af4158015620010cb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010f19190620016d3565b62ffffff90811691161490565b156200111d576040516348c618db60e01b815260040160405180910390fd5b600454156200128857600480546200113890600190620017d5565b815481106200114b576200114b62001788565b60009182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90635560100790602401602060405180830381865af4158015620011c0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620011e69190620017f7565b604051635560100760e01b815262ffffff8516600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90635560100790602401602060405180830381865af41580156200123b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620012619190620017f7565b116200128857604051633e614b6d60e11b815262ffffff84166004820152602401620006c4565b600480546001810182556000829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808916600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020848101919091529085168383015281516356db0c1960e11b815291519293606085019373__$d53880c81dc91c20799140d711e5ab8718$__9363adb6183293818401939092918290030181865af41580156200135c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001382919062001811565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff968716600090815260038452604090819020855181549587015199166001600160b81b03199095169490941763010000006001600160a01b03998a1602178455840151600190930180546060860151608090960151949098166001600160c81b031990981697909717600160a01b94909216939093021763ffffffff60c81b1916600160c81b9190921602179092555050565b610f2f806200183b83390190565b6000602082840312156200145457600080fd5b81356001600160e01b0319811681146200146d57600080fd5b9392505050565b6001600160a01b038116811462000a0057600080fd5b6000602082840312156200149d57600080fd5b81356200146d8162001474565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620014d257600080fd5b813567ffffffffffffffff80821115620014f057620014f0620014aa565b604051601f8301601f19908116603f011681019082821181831017156200151b576200151b620014aa565b816040528381528660208588010111156200153557600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080604083850312156200156957600080fd5b8235620015768162001474565b9150602083013567ffffffffffffffff8111156200159357600080fd5b620015a185828601620014c0565b9150509250929050565b6000815180845260005b81811015620015d357602081850181015186830182015201620015b5565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006200146d6020830184620015ab565b62ffffff8116811462000a0057600080fd5b6000602082840312156200162d57600080fd5b81356200146d8162001608565b6000602082840312156200164d57600080fd5b813567ffffffffffffffff8111156200166557600080fd5b6200167384828501620014c0565b949350505050565b6000602082840312156200168e57600080fd5b5035919050565b60008060408385031215620016a957600080fd5b8235620016b68162001474565b91506020830135620016c88162001474565b809150509250929050565b600060208284031215620016e657600080fd5b81516200146d8162001608565b6000602082840312156200170657600080fd5b815180151581146200146d57600080fd5b6000602082840312156200172a57600080fd5b81516001600160601b03811681146200146d57600080fd5b6001600160a01b03831681526040602082018190526000906200167390830184620015ab565b6000602082840312156200177b57600080fd5b81516200146d8162001474565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03848116825283166020820152606060408201819052600090620017cc90830184620015ab565b95945050505050565b818103818111156200086d57634e487b7160e01b600052601160045260246000fd5b6000602082840312156200180a57600080fd5b5051919050565b6000602082840312156200182457600080fd5b815164ffffffffff811681146200146d57600080fdfe60a06040523480156200001157600080fd5b5060405162000f2f38038062000f2f8339810160408190526200003491620003e1565b8282828281620000458282620000b0565b50508160405162000056906200037a565b6001600160a01b039091168152602001604051809103906000f08015801562000083573d6000803e3d6000fd5b506001600160a01b0316608052620000a46200009e60805190565b62000116565b505050505050620004df565b620000bb8262000188565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115620001085762000103828262000208565b505050565b6200011262000285565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200015860008051602062000f0f833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16200018581620002a7565b50565b806001600160a01b03163b600003620001c457604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060600080846001600160a01b031684604051620002279190620004c1565b600060405180830381855af49150503d806000811462000264576040519150601f19603f3d011682016040523d82523d6000602084013e62000269565b606091505b5090925090506200027c858383620002ea565b95945050505050565b3415620002a55760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b038116620002d357604051633173bdd160e11b815260006004820152602401620001bb565b8060008051602062000f0f833981519152620001e7565b6060826200030357620002fd8262000350565b62000349565b81511580156200031b57506001600160a01b0384163b155b156200034657604051639996b31560e01b81526001600160a01b0385166004820152602401620001bb565b50805b9392505050565b805115620003615780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b61052480620009eb83390190565b80516001600160a01b0381168114620003a057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003d8578181015183820152602001620003be565b50506000910152565b600080600060608486031215620003f757600080fd5b620004028462000388565b9250620004126020850162000388565b60408501519092506001600160401b03808211156200043057600080fd5b818601915086601f8301126200044557600080fd5b8151818111156200045a576200045a620003a5565b604051601f8201601f19908116603f01168101908382118183101715620004855762000485620003a5565b816040528281528960208487010111156200049f57600080fd5b620004b2836020830160208801620003bb565b80955050505050509250925092565b60008251620004d5818460208701620003bb565b9190910192915050565b6080516104eb620005006000396000818160370152607401526104eb6000f3fe60806040526004361061001e5760003560e01c80638b3240a014610028575b610026610072565b005b34801561003457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100df576000356001600160e01b03191663278f794360e11b146100d5576040516334ad5dbb60e21b815260040160405180910390fd5b6100dd6100ec565b565b6100dd61011b565b905090565b6000806100fc3660048184610376565b81019061010991906103b6565b91509150610117828261012b565b5050565b6100dd610126610186565b6101b9565b610134826101dd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561017e576101798282610259565b505050565b6101176102cf565b60006100e77f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e8080156101d8573d6000f35b3d6000fd5b806001600160a01b03163b60000361021857604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516102769190610486565b600060405180830381855af49150503d80600081146102b1576040519150601f19603f3d011682016040523d82523d6000602084013e6102b6565b606091505b50915091506102c68583836102ee565b95945050505050565b34156100dd5760405163b398979f60e01b815260040160405180910390fd5b606082610303576102fe8261034d565b610346565b815115801561031a57506001600160a01b0384163b155b1561034357604051639996b31560e01b81526001600160a01b038516600482015260240161020f565b50805b9392505050565b80511561035d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6000808585111561038657600080fd5b8386111561039357600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156103c957600080fd5b82356001600160a01b03811681146103e057600080fd5b9150602083013567ffffffffffffffff808211156103fd57600080fd5b818501915085601f83011261041157600080fd5b813581811115610423576104236103a0565b604051601f8201601f19908116603f0116810190838211818310171561044b5761044b6103a0565b8160405282815288602084870101111561046457600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b818110156104a7576020818601810151858301520161048d565b50600092019182525091905056fea26469706673582212208eec392843ea468857c026e8015385bb30d80269923d8cf4188551b1fb73c5c264736f6c63430008140033608060405234801561001057600080fd5b5060405161052438038061052483398101604081905261002f916100be565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100678161006e565b50506100ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d057600080fd5b81516001600160a01b03811681146100e757600080fd5b9392505050565b610427806100fd6000396000f3fe60806040526004361061004a5760003560e01c8063715018a61461004f5780638da5cb5b146100665780639623609d14610093578063ad3cb1cc146100a6578063f2fde38b146100e4575b600080fd5b34801561005b57600080fd5b50610064610104565b005b34801561007257600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b6100646100a1366004610272565b610118565b3480156100b257600080fd5b506100d7604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161008a919061038e565b3480156100f057600080fd5b506100646100ff3660046103a8565b610187565b61010c6101ca565b61011660006101f7565b565b6101206101ca565b60405163278f794360e11b81526001600160a01b03841690634f1ef28690349061015090869086906004016103c5565b6000604051808303818588803b15801561016957600080fd5b505af115801561017d573d6000803e3d6000fd5b5050505050505050565b61018f6101ca565b6001600160a01b0381166101be57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6101c7816101f7565b50565b6000546001600160a01b031633146101165760405163118cdaa760e01b81523360048201526024016101b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101c757600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561028757600080fd5b833561029281610247565b925060208401356102a281610247565b9150604084013567ffffffffffffffff808211156102bf57600080fd5b818601915086601f8301126102d357600080fd5b8135818111156102e5576102e561025c565b604051601f8201601f19908116603f0116810190838211818310171561030d5761030d61025c565b8160405282815289602084870101111561032657600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000815180845260005b8181101561036e57602081850181015186830182015201610352565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103a16020830184610348565b9392505050565b6000602082840312156103ba57600080fd5b81356103a181610247565b6001600160a01b03831681526040602082018190526000906103e990830184610348565b94935050505056fea2646970667358221220cb46d8eee562c2068d4d3afab9e2a7f48be119bb61a6a1c3d7ef6ba5a8aff09464736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a264697066735822122055d0724a62cf14f09db2dbd7a1cf9376244467a33e74f527520db9f98c6e6b3564736f6c63430008140033608060405234801561001057600080fd5b5061001961001e565b6100d0565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161561006e5760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146100cd5780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b61194f806100df6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063675393bf116100f9578063cc9fc59a11610097578063ea86657211610071578063ea866572146103d6578063f21de1e8146102e1578063f7c34ee0146103e9578063fc20e6f4146103fc57600080fd5b8063cc9fc59a146103b8578063cde749f4146103c0578063e10b6067146103c857600080fd5b80639e14822a116100d35780639e14822a14610373578063ada9652e14610386578063b68d18091461039b578063caf4e3d4146103b057600080fd5b8063675393bf1461032e5780637211bedd14610341578063893d20e81461036b57600080fd5b806327bb7a331161016657806349bb9e4b1161014057806349bb9e4b146102ce5780634a7d34cb146101c95780635ab1bd53146102e1578063644c45e01461030657600080fd5b806327bb7a33146102a0578063329d6e74146102b357806336fc697e146102c657600080fd5b80630fec111c116101a25780630fec111c1461023b578063138461e0146102505780631eff4b2214610258578063214cdb801461028d57600080fd5b806301a57efc146101c957806301ffc9a7146101dd5780630d8e6e2c1461021f575b600080fd5b6101db6101d73660046111bc565b5050565b005b61020a6101eb3660046111f1565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610227610415565b60405162ffffff9091168152602001610216565b61024361049f565b6040516102169190611268565b6101db61064e565b61027f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610216565b6101db61029b3660046111f1565b610855565b6101db6102ae3660046113c7565b610882565b6101db6102c136600461145f565b61090e565b6101db610a5b565b6101db6102dc366004611493565b610aa1565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610216565b6000805160206118da833981519152546040516001600160601b039091168152602001610216565b6101db61033c3660046114e2565b610ba0565b61035861034f3660046114ff565b60009392505050565b60405161ffff9091168152602001610216565b6102ee610cac565b6101db610381366004611557565b505050565b61027f6000805160206118da83398151915281565b60d45b60405160ff9091168152602001610216565b6102ee610de3565b6102ee610e80565b61039e610eaa565b6101db6101d73660046115a6565b6101db6103e43660046115df565b610f21565b6101db6103f73660046115df565b610fb9565b61022761040a36600461160d565b600095945050505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015610476573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061049a91906116a9565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b9091041615159181019190915260018201805491929160608401919061054a906116c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610576906116c6565b80156105c35780601f10610598576101008083540402835291602001916105c3565b820191906000526020600020905b8154815290600101906020018083116105a657829003601f168201915b50505050508152505090506040518060e001604052806105e1600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b03168152602001610632610cac565b6001600160a01b03168152602001826060015181525091505090565b60006000805160206118da83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156106bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106e19190611700565b156107125780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b306107256001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa15801561076d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107919190611700565b6107b95760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610709565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa15801561080d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610831919061171d565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b61085d611030565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b61088a611030565b6108948287610fb9565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016109048382611788565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610930610415565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610970573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109949190611847565b6000805160206118fa8339815191528054600160401b900460ff16806109c7575080546001600160401b03808416911610155b156109e55760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610a0f83611069565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610a63611030565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6000805160206118fa8339815191528054600160401b810460ff1615906001600160401b0316600081158015610ad45750825b90506000826001600160401b03166001148015610af05750303b155b905081158015610afe575080155b15610b1c5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610b4657845460ff60401b1916600160401b1785555b610b508787611071565b8315610b9757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610ba8611030565b806001600160a01b03163b600003610bde5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610709565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263230c0c8160e11b60048201526301ffc9a790602401602060405180830381865afa925050508015610c58575060408051601f3d908101601f19168201909252610c5591810190611700565b60015b610c805760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610709565b806101d75760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610709565b50565b6000806000805160206118da83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610d1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d409190611700565b15610dcd576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610da3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc79190611870565b91505090565b54600160601b90046001600160a01b0316919050565b600080610df86001546001600160a01b031690565b6001600160a01b031663d39e604360285b610e11610eaa565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015610e56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7a9190611870565b92915050565b600080610e956001546001600160a01b031690565b6001600160a01b031663d39e60436046610e09565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015610efd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061049a919061188d565b610f29611030565b610fa982836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8f919061171d565b603c60008560405180602001604052806000815250610882565b6101d7637b6a51fd60e01b610855565b610fc1611030565b610fca81610ba0565b610fd2610a5b565b6001600160a01b038216610ff95760405163f17ef42d60e01b815260040160405180910390fd5b506000805160206118da83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6000805160206118fa83398151915254600160401b900460ff1661106757604051631afcd79f60e31b815260040160405180910390fd5b565b6101c4611030565b6000805160206118fa8339815191528054600160401b810460ff1615906001600160401b03166000811580156110a45750825b90506000826001600160401b031660011480156110c05750303b155b9050811580156110ce575080155b156110ec5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561111657845460ff60401b1916600160401b1785555b6000808780602001905181019061112d91906118aa565b909250905061113c828a610f21565b61114c63baf6f05360e01b610855565b50508315610b9757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610b8e565b6001600160601b0381168114610ca957600080fd5b803561ffff811681146111b757600080fd5b919050565b600080604083850312156111cf57600080fd5b82356111da81611190565b91506111e8602084016111a5565b90509250929050565b60006020828403121561120357600080fd5b81356001600160e01b03198116811461121b57600080fd5b9392505050565b6000815180845260005b818110156112485760208185018101518683018201520161122c565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516112d160c08401826001600160a01b03169052565b5060c083015160e0808401526112eb610100840182611222565b949350505050565b6001600160a01b0381168114610ca957600080fd5b60ff81168114610ca957600080fd5b8015158114610ca957600080fd5b634e487b7160e01b600052604160045260246000fd5b600082601f83011261134c57600080fd5b81356001600160401b038082111561136657611366611325565b604051601f8301601f19908116603f0116810190828211818310171561138e5761138e611325565b816040528381528660208588010111156113a757600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060008060008060c087890312156113e057600080fd5b86356113eb816112f3565b955060208701356113fb81611190565b9450604087013561140b81611308565b9350606087013561141b81611317565b9250608087013561142b816112f3565b915060a08701356001600160401b0381111561144657600080fd5b61145289828a0161133b565b9150509295509295509295565b60006020828403121561147157600080fd5b81356001600160401b0381111561148757600080fd5b6112eb8482850161133b565b600080604083850312156114a657600080fd5b82356114b1816112f3565b915060208301356001600160401b038111156114cc57600080fd5b6114d88582860161133b565b9150509250929050565b6000602082840312156114f457600080fd5b813561121b816112f3565b60008060006060848603121561151457600080fd5b833561151f81611190565b92506020840135915060408401356001600160401b0381111561154157600080fd5b61154d8682870161133b565b9150509250925092565b60008060006060848603121561156c57600080fd5b833561157781611190565b9250611585602085016111a5565b9150604084013590509250925092565b62ffffff81168114610ca957600080fd5b600080604083850312156115b957600080fd5b82356115c481611190565b915060208301356115d481611595565b809150509250929050565b600080604083850312156115f257600080fd5b82356115fd816112f3565b915060208301356115d4816112f3565b60008060008060006080868803121561162557600080fd5b853561163081611190565b945061163e602087016111a5565b93506040860135925060608601356001600160401b038082111561166157600080fd5b818801915088601f83011261167557600080fd5b81358181111561168457600080fd5b89602082850101111561169657600080fd5b9699959850939650602001949392505050565b6000602082840312156116bb57600080fd5b815161121b81611595565b600181811c908216806116da57607f821691505b6020821081036116fa57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561171257600080fd5b815161121b81611317565b60006020828403121561172f57600080fd5b815161121b81611190565b601f82111561038157600081815260208120601f850160051c810160208610156117615750805b601f850160051c820191505b818110156117805782815560010161176d565b505050505050565b81516001600160401b038111156117a1576117a1611325565b6117b5816117af84546116c6565b8461173a565b602080601f8311600181146117ea57600084156117d25750858301515b600019600386901b1c1916600185901b178555611780565b600085815260208120601f198616915b82811015611819578886015182559484019460019091019084016117fa565b50858210156118375787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561185957600080fd5b81516001600160401b038116811461121b57600080fd5b60006020828403121561188257600080fd5b815161121b816112f3565b60006020828403121561189f57600080fd5b815161121b81611308565b600080604083850312156118bd57600080fd5b82516118c8816112f3565b60208401519092506115d4816112f356fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212200e9333e4f2e2ffde4d99e48b1c9fa9d0770c78773cf72050849dff333d8ce96664736f6c6343000814003360a06040523480156200001157600080fd5b5060405162000f2f38038062000f2f8339810160408190526200003491620003e1565b8282828281620000458282620000b0565b50508160405162000056906200037a565b6001600160a01b039091168152602001604051809103906000f08015801562000083573d6000803e3d6000fd5b506001600160a01b0316608052620000a46200009e60805190565b62000116565b505050505050620004df565b620000bb8262000188565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115620001085762000103828262000208565b505050565b6200011262000285565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200015860008051602062000f0f833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16200018581620002a7565b50565b806001600160a01b03163b600003620001c457604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060600080846001600160a01b031684604051620002279190620004c1565b600060405180830381855af49150503d806000811462000264576040519150601f19603f3d011682016040523d82523d6000602084013e62000269565b606091505b5090925090506200027c858383620002ea565b95945050505050565b3415620002a55760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b038116620002d357604051633173bdd160e11b815260006004820152602401620001bb565b8060008051602062000f0f833981519152620001e7565b6060826200030357620002fd8262000350565b62000349565b81511580156200031b57506001600160a01b0384163b155b156200034657604051639996b31560e01b81526001600160a01b0385166004820152602401620001bb565b50805b9392505050565b805115620003615780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b61052480620009eb83390190565b80516001600160a01b0381168114620003a057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003d8578181015183820152602001620003be565b50506000910152565b600080600060608486031215620003f757600080fd5b620004028462000388565b9250620004126020850162000388565b60408501519092506001600160401b03808211156200043057600080fd5b818601915086601f8301126200044557600080fd5b8151818111156200045a576200045a620003a5565b604051601f8201601f19908116603f01168101908382118183101715620004855762000485620003a5565b816040528281528960208487010111156200049f57600080fd5b620004b2836020830160208801620003bb565b80955050505050509250925092565b60008251620004d5818460208701620003bb565b9190910192915050565b6080516104eb620005006000396000818160370152607401526104eb6000f3fe60806040526004361061001e5760003560e01c80638b3240a014610028575b610026610072565b005b34801561003457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100df576000356001600160e01b03191663278f794360e11b146100d5576040516334ad5dbb60e21b815260040160405180910390fd5b6100dd6100ec565b565b6100dd61011b565b905090565b6000806100fc3660048184610376565b81019061010991906103b6565b91509150610117828261012b565b5050565b6100dd610126610186565b6101b9565b610134826101dd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561017e576101798282610259565b505050565b6101176102cf565b60006100e77f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e8080156101d8573d6000f35b3d6000fd5b806001600160a01b03163b60000361021857604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516102769190610486565b600060405180830381855af49150503d80600081146102b1576040519150601f19603f3d011682016040523d82523d6000602084013e6102b6565b606091505b50915091506102c68583836102ee565b95945050505050565b34156100dd5760405163b398979f60e01b815260040160405180910390fd5b606082610303576102fe8261034d565b610346565b815115801561031a57506001600160a01b0384163b155b1561034357604051639996b31560e01b81526001600160a01b038516600482015260240161020f565b50805b9392505050565b80511561035d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6000808585111561038657600080fd5b8386111561039357600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156103c957600080fd5b82356001600160a01b03811681146103e057600080fd5b9150602083013567ffffffffffffffff808211156103fd57600080fd5b818501915085601f83011261041157600080fd5b813581811115610423576104236103a0565b604051601f8201601f19908116603f0116810190838211818310171561044b5761044b6103a0565b8160405282815288602084870101111561046457600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b818110156104a7576020818601810151858301520161048d565b50600092019182525091905056fea26469706673582212208eec392843ea468857c026e8015385bb30d80269923d8cf4188551b1fb73c5c264736f6c63430008140033608060405234801561001057600080fd5b5060405161052438038061052483398101604081905261002f916100be565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100678161006e565b50506100ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d057600080fd5b81516001600160a01b03811681146100e757600080fd5b9392505050565b610427806100fd6000396000f3fe60806040526004361061004a5760003560e01c8063715018a61461004f5780638da5cb5b146100665780639623609d14610093578063ad3cb1cc146100a6578063f2fde38b146100e4575b600080fd5b34801561005b57600080fd5b50610064610104565b005b34801561007257600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b6100646100a1366004610272565b610118565b3480156100b257600080fd5b506100d7604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161008a919061038e565b3480156100f057600080fd5b506100646100ff3660046103a8565b610187565b61010c6101ca565b61011660006101f7565b565b6101206101ca565b60405163278f794360e11b81526001600160a01b03841690634f1ef28690349061015090869086906004016103c5565b6000604051808303818588803b15801561016957600080fd5b505af115801561017d573d6000803e3d6000fd5b5050505050505050565b61018f6101ca565b6001600160a01b0381166101be57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6101c7816101f7565b50565b6000546001600160a01b031633146101165760405163118cdaa760e01b81523360048201526024016101b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101c757600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561028757600080fd5b833561029281610247565b925060208401356102a281610247565b9150604084013567ffffffffffffffff808211156102bf57600080fd5b818601915086601f8301126102d357600080fd5b8135818111156102e5576102e561025c565b604051601f8201601f19908116603f0116810190838211818310171561030d5761030d61025c565b8160405282815289602084870101111561032657600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000815180845260005b8181101561036e57602081850181015186830182015201610352565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103a16020830184610348565b9392505050565b6000602082840312156103ba57600080fd5b81356103a181610247565b6001600160a01b03831681526040602082018190526000906103e990830184610348565b94935050505056fea2646970667358221220cb46d8eee562c2068d4d3afab9e2a7f48be119bb61a6a1c3d7ef6ba5a8aff09464736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103",
         
     | 
| 
      
 518 
     | 
    
         
            +
              "deployedBytecode": "0x60806040523480156200001157600080fd5b50600436106200015d5760003560e01c80636c25096111620000c7578063ada9652e1162000086578063ada9652e1462000402578063b88da7591462000419578063c987336c1462000430578063e97fac051462000447578063f21de1e81462000343578063f7c34ee0146200045e57600080fd5b80636c25096114620003aa578063893d20e814620003bc5780638e9afce614620003c6578063933a9ce814620003dd578063946dfcfe14620003ef57600080fd5b8063214cdb801162000120578063214cdb80146200020f57806336fc697e14620002265780634d459c9014620002305780635ab1bd531462000343578063644c45e01462000369578063675393bf146200039357600080fd5b806301ffc9a71462000162578063058f7a9714620001a75780630d8e6e2c14620001c0578063138461e014620001df5780631775564d14620001e9575b600080fd5b620001926200017336600462001441565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b620001be620001b83660046200148a565b62000475565b005b620001ca6200058e565b60405162ffffff90911681526020016200019e565b620001be62000604565b62000200620001fa36600462001555565b62000819565b6040516200019e9190620015f3565b620001be6200022036600462001441565b62000873565b620001be620008a2565b620002e5620002413660046200161a565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091525062ffffff908116600090815260036020908152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a0016200019e565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016200019e565b6000805160206200276a833981519152546040516001600160601b0390911681526020016200019e565b620001be620003a43660046200148a565b620008ea565b6005546001600160a01b031662000350565b6200035062000a03565b62000200620003d73660046200163a565b62000b42565b6002546001600160a01b031662000350565b6004545b6040519081526020016200019e565b620003f36000805160206200276a83398151915281565b620001ca6200042a3660046200167b565b62000b97565b620003506200044136600462001555565b62000bdb565b620003506200045836600462001555565b62000e19565b620001be6200046f36600462001695565b62000fb1565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff16600081158015620004bc5750825b905060008267ffffffffffffffff166001148015620004da5750303b155b905081158015620004e9575080155b15620005085760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156200053357845460ff60401b1916600160401b1785555b6200053f338762000fb1565b83156200058657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b600254604080516303639b8b60e21b815290516000926001600160a01b031691630d8e6e2c9160048083019260209291908290030181865afa158015620005d9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005ff9190620016d3565b905090565b60006000805160206200276a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801562000675573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200069b9190620016f3565b15620006cd5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b30620006e16001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156200072a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007509190620016f3565b6200077a5760405163b9304b0d60e01b81526001600160a01b0382166004820152602401620006c4565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015620007cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007f5919062001717565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b60606349bb9e4b60e01b83836040516024016200083892919062001742565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b6200087d62001030565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b620008ac62001030565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b620008f462001030565b806001600160a01b03163b6000036200092c5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620006c4565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263230c0c8160e11b60048201526301ffc9a790602401602060405180830381865afa925050508015620009a9575060408051601f3d908101601f19168201909252620009a691810190620016f3565b60015b620009d35760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620006c4565b80620009fe5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401620006c4565b505b50565b6000806000805160206200276a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801562000a75573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a9b9190620016f3565b1562000b2c576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801562000b00573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000b26919062001768565b91505090565b54600160601b90046001600160a01b0316919050565b606063329d6e7460e01b8260405160240162000b5f9190620015f3565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915292915050565b60006004828154811062000baf5762000baf62001788565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b600062000be762000a03565b6001600160a01b0316336001600160a01b03161462000c1c5760405163086391f760e31b8152336004820152602401620006c4565b60045460000362000c405760405163366dfd2160e21b815260040160405180910390fd5b600062000c4c62000a03565b9050600062000c636002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000ca3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000cc9919062001768565b6002549091506001600160a01b03908116908216639623609d828862000cef8962000b42565b6040518463ffffffff1660e01b815260040162000d0f939291906200179e565b600060405180830381600087803b15801562000d2a57600080fd5b505af115801562000d3f573d6000803e3d6000fd5b50505050600260009054906101000a90046001600160a01b0316935062000dcc846001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000d9e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000dc49190620016d3565b87856200107c565b6002546040516001600160a01b038881168252909116907f1356a2c922be684528fa1759d1808395e5c5010181dd333cdb6f03e2d8545b659060200160405180910390a250505092915050565b600062000e2562000a03565b6001600160a01b0316336001600160a01b03161462000e5a5760405163086391f760e31b8152336004820152602401620006c4565b6004541562000e7c5760405163402b135f60e11b815260040160405180910390fd5b600062000e8862000a03565b905030848162000e99848762000819565b60405162000ea79062001433565b62000eb5939291906200179e565b604051809103906000f08015801562000ed2573d6000803e3d6000fd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b8152905191945062000f65918591630d8e6e2c9160048083019260209291908290030181865afa15801562000f37573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f5d9190620016d3565b86846200107c565b6002546040516001600160a01b038781168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a2505092915050565b62000fbb62001030565b62000fc681620008ea565b62000fd0620008a2565b6001600160a01b03821662000ff85760405163f17ef42d60e01b815260040160405180910390fd5b506000805160206200276a83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166200107a57604051631afcd79f60e31b815260040160405180910390fd5b565b620010fe8373__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__6304b8f6c56040518163ffffffff1660e01b8152600401602060405180830381865af4158015620010cb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010f19190620016d3565b62ffffff90811691161490565b156200111d576040516348c618db60e01b815260040160405180910390fd5b600454156200128857600480546200113890600190620017d5565b815481106200114b576200114b62001788565b60009182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90635560100790602401602060405180830381865af4158015620011c0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620011e69190620017f7565b604051635560100760e01b815262ffffff8516600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90635560100790602401602060405180830381865af41580156200123b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620012619190620017f7565b116200128857604051633e614b6d60e11b815262ffffff84166004820152602401620006c4565b600480546001810182556000829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808916600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020848101919091529085168383015281516356db0c1960e11b815291519293606085019373__$d53880c81dc91c20799140d711e5ab8718$__9363adb6183293818401939092918290030181865af41580156200135c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001382919062001811565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff968716600090815260038452604090819020855181549587015199166001600160b81b03199095169490941763010000006001600160a01b03998a1602178455840151600190930180546060860151608090960151949098166001600160c81b031990981697909717600160a01b94909216939093021763ffffffff60c81b1916600160c81b9190921602179092555050565b610f2f806200183b83390190565b6000602082840312156200145457600080fd5b81356001600160e01b0319811681146200146d57600080fd5b9392505050565b6001600160a01b038116811462000a0057600080fd5b6000602082840312156200149d57600080fd5b81356200146d8162001474565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620014d257600080fd5b813567ffffffffffffffff80821115620014f057620014f0620014aa565b604051601f8301601f19908116603f011681019082821181831017156200151b576200151b620014aa565b816040528381528660208588010111156200153557600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080604083850312156200156957600080fd5b8235620015768162001474565b9150602083013567ffffffffffffffff8111156200159357600080fd5b620015a185828601620014c0565b9150509250929050565b6000815180845260005b81811015620015d357602081850181015186830182015201620015b5565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006200146d6020830184620015ab565b62ffffff8116811462000a0057600080fd5b6000602082840312156200162d57600080fd5b81356200146d8162001608565b6000602082840312156200164d57600080fd5b813567ffffffffffffffff8111156200166557600080fd5b6200167384828501620014c0565b949350505050565b6000602082840312156200168e57600080fd5b5035919050565b60008060408385031215620016a957600080fd5b8235620016b68162001474565b91506020830135620016c88162001474565b809150509250929050565b600060208284031215620016e657600080fd5b81516200146d8162001608565b6000602082840312156200170657600080fd5b815180151581146200146d57600080fd5b6000602082840312156200172a57600080fd5b81516001600160601b03811681146200146d57600080fd5b6001600160a01b03831681526040602082018190526000906200167390830184620015ab565b6000602082840312156200177b57600080fd5b81516200146d8162001474565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03848116825283166020820152606060408201819052600090620017cc90830184620015ab565b95945050505050565b818103818111156200086d57634e487b7160e01b600052601160045260246000fd5b6000602082840312156200180a57600080fd5b5051919050565b6000602082840312156200182457600080fd5b815164ffffffffff811681146200146d57600080fdfe60a06040523480156200001157600080fd5b5060405162000f2f38038062000f2f8339810160408190526200003491620003e1565b8282828281620000458282620000b0565b50508160405162000056906200037a565b6001600160a01b039091168152602001604051809103906000f08015801562000083573d6000803e3d6000fd5b506001600160a01b0316608052620000a46200009e60805190565b62000116565b505050505050620004df565b620000bb8262000188565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115620001085762000103828262000208565b505050565b6200011262000285565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200015860008051602062000f0f833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16200018581620002a7565b50565b806001600160a01b03163b600003620001c457604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060600080846001600160a01b031684604051620002279190620004c1565b600060405180830381855af49150503d806000811462000264576040519150601f19603f3d011682016040523d82523d6000602084013e62000269565b606091505b5090925090506200027c858383620002ea565b95945050505050565b3415620002a55760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b038116620002d357604051633173bdd160e11b815260006004820152602401620001bb565b8060008051602062000f0f833981519152620001e7565b6060826200030357620002fd8262000350565b62000349565b81511580156200031b57506001600160a01b0384163b155b156200034657604051639996b31560e01b81526001600160a01b0385166004820152602401620001bb565b50805b9392505050565b805115620003615780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b61052480620009eb83390190565b80516001600160a01b0381168114620003a057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003d8578181015183820152602001620003be565b50506000910152565b600080600060608486031215620003f757600080fd5b620004028462000388565b9250620004126020850162000388565b60408501519092506001600160401b03808211156200043057600080fd5b818601915086601f8301126200044557600080fd5b8151818111156200045a576200045a620003a5565b604051601f8201601f19908116603f01168101908382118183101715620004855762000485620003a5565b816040528281528960208487010111156200049f57600080fd5b620004b2836020830160208801620003bb565b80955050505050509250925092565b60008251620004d5818460208701620003bb565b9190910192915050565b6080516104eb620005006000396000818160370152607401526104eb6000f3fe60806040526004361061001e5760003560e01c80638b3240a014610028575b610026610072565b005b34801561003457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100df576000356001600160e01b03191663278f794360e11b146100d5576040516334ad5dbb60e21b815260040160405180910390fd5b6100dd6100ec565b565b6100dd61011b565b905090565b6000806100fc3660048184610376565b81019061010991906103b6565b91509150610117828261012b565b5050565b6100dd610126610186565b6101b9565b610134826101dd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561017e576101798282610259565b505050565b6101176102cf565b60006100e77f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e8080156101d8573d6000f35b3d6000fd5b806001600160a01b03163b60000361021857604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516102769190610486565b600060405180830381855af49150503d80600081146102b1576040519150601f19603f3d011682016040523d82523d6000602084013e6102b6565b606091505b50915091506102c68583836102ee565b95945050505050565b34156100dd5760405163b398979f60e01b815260040160405180910390fd5b606082610303576102fe8261034d565b610346565b815115801561031a57506001600160a01b0384163b155b1561034357604051639996b31560e01b81526001600160a01b038516600482015260240161020f565b50805b9392505050565b80511561035d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6000808585111561038657600080fd5b8386111561039357600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156103c957600080fd5b82356001600160a01b03811681146103e057600080fd5b9150602083013567ffffffffffffffff808211156103fd57600080fd5b818501915085601f83011261041157600080fd5b813581811115610423576104236103a0565b604051601f8201601f19908116603f0116810190838211818310171561044b5761044b6103a0565b8160405282815288602084870101111561046457600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b818110156104a7576020818601810151858301520161048d565b50600092019182525091905056fea26469706673582212208eec392843ea468857c026e8015385bb30d80269923d8cf4188551b1fb73c5c264736f6c63430008140033608060405234801561001057600080fd5b5060405161052438038061052483398101604081905261002f916100be565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100678161006e565b50506100ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d057600080fd5b81516001600160a01b03811681146100e757600080fd5b9392505050565b610427806100fd6000396000f3fe60806040526004361061004a5760003560e01c8063715018a61461004f5780638da5cb5b146100665780639623609d14610093578063ad3cb1cc146100a6578063f2fde38b146100e4575b600080fd5b34801561005b57600080fd5b50610064610104565b005b34801561007257600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b6100646100a1366004610272565b610118565b3480156100b257600080fd5b506100d7604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161008a919061038e565b3480156100f057600080fd5b506100646100ff3660046103a8565b610187565b61010c6101ca565b61011660006101f7565b565b6101206101ca565b60405163278f794360e11b81526001600160a01b03841690634f1ef28690349061015090869086906004016103c5565b6000604051808303818588803b15801561016957600080fd5b505af115801561017d573d6000803e3d6000fd5b5050505050505050565b61018f6101ca565b6001600160a01b0381166101be57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6101c7816101f7565b50565b6000546001600160a01b031633146101165760405163118cdaa760e01b81523360048201526024016101b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101c757600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561028757600080fd5b833561029281610247565b925060208401356102a281610247565b9150604084013567ffffffffffffffff808211156102bf57600080fd5b818601915086601f8301126102d357600080fd5b8135818111156102e5576102e561025c565b604051601f8201601f19908116603f0116810190838211818310171561030d5761030d61025c565b8160405282815289602084870101111561032657600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000815180845260005b8181101561036e57602081850181015186830182015201610352565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103a16020830184610348565b9392505050565b6000602082840312156103ba57600080fd5b81356103a181610247565b6001600160a01b03831681526040602082018190526000906103e990830184610348565b94935050505056fea2646970667358221220cb46d8eee562c2068d4d3afab9e2a7f48be119bb61a6a1c3d7ef6ba5a8aff09464736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a264697066735822122055d0724a62cf14f09db2dbd7a1cf9376244467a33e74f527520db9f98c6e6b3564736f6c63430008140033",
         
     | 
| 
      
 519 
     | 
    
         
            +
              "linkReferences": {
         
     | 
| 
      
 520 
     | 
    
         
            +
                "contracts/types/NftId.sol": {
         
     | 
| 
      
 521 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 522 
     | 
    
         
            +
                    {
         
     | 
| 
      
 523 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 524 
     | 
    
         
            +
                      "start": 1137
         
     | 
| 
      
 525 
     | 
    
         
            +
                    },
         
     | 
| 
      
 526 
     | 
    
         
            +
                    {
         
     | 
| 
      
 527 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 528 
     | 
    
         
            +
                      "start": 4943
         
     | 
| 
      
 529 
     | 
    
         
            +
                    },
         
     | 
| 
      
 530 
     | 
    
         
            +
                    {
         
     | 
| 
      
 531 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 532 
     | 
    
         
            +
                      "start": 5967
         
     | 
| 
      
 533 
     | 
    
         
            +
                    },
         
     | 
| 
      
 534 
     | 
    
         
            +
                    {
         
     | 
| 
      
 535 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 536 
     | 
    
         
            +
                      "start": 15414
         
     | 
| 
      
 537 
     | 
    
         
            +
                    },
         
     | 
| 
      
 538 
     | 
    
         
            +
                    {
         
     | 
| 
      
 539 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 540 
     | 
    
         
            +
                      "start": 17045
         
     | 
| 
      
 541 
     | 
    
         
            +
                    }
         
     | 
| 
      
 542 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 543 
     | 
    
         
            +
                },
         
     | 
| 
      
 544 
     | 
    
         
            +
                "contracts/types/Timestamp.sol": {
         
     | 
| 
      
 545 
     | 
    
         
            +
                  "TimestampLib": [
         
     | 
| 
      
 546 
     | 
    
         
            +
                    {
         
     | 
| 
      
 547 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 548 
     | 
    
         
            +
                      "start": 2177
         
     | 
| 
      
 549 
     | 
    
         
            +
                    },
         
     | 
| 
      
 550 
     | 
    
         
            +
                    {
         
     | 
| 
      
 551 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 552 
     | 
    
         
            +
                      "start": 8246
         
     | 
| 
      
 553 
     | 
    
         
            +
                    }
         
     | 
| 
      
 554 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 555 
     | 
    
         
            +
                },
         
     | 
| 
      
 556 
     | 
    
         
            +
                "contracts/types/Version.sol": {
         
     | 
| 
      
 557 
     | 
    
         
            +
                  "VersionLib": [
         
     | 
| 
      
 558 
     | 
    
         
            +
                    {
         
     | 
| 
      
 559 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 560 
     | 
    
         
            +
                      "start": 1507
         
     | 
| 
      
 561 
     | 
    
         
            +
                    },
         
     | 
| 
      
 562 
     | 
    
         
            +
                    {
         
     | 
| 
      
 563 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 564 
     | 
    
         
            +
                      "start": 1765
         
     | 
| 
      
 565 
     | 
    
         
            +
                    },
         
     | 
| 
      
 566 
     | 
    
         
            +
                    {
         
     | 
| 
      
 567 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 568 
     | 
    
         
            +
                      "start": 1888
         
     | 
| 
      
 569 
     | 
    
         
            +
                    },
         
     | 
| 
      
 570 
     | 
    
         
            +
                    {
         
     | 
| 
      
 571 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 572 
     | 
    
         
            +
                      "start": 7576
         
     | 
| 
      
 573 
     | 
    
         
            +
                    },
         
     | 
| 
      
 574 
     | 
    
         
            +
                    {
         
     | 
| 
      
 575 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 576 
     | 
    
         
            +
                      "start": 7834
         
     | 
| 
      
 577 
     | 
    
         
            +
                    },
         
     | 
| 
      
 578 
     | 
    
         
            +
                    {
         
     | 
| 
      
 579 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 580 
     | 
    
         
            +
                      "start": 7957
         
     | 
| 
      
 581 
     | 
    
         
            +
                    },
         
     | 
| 
      
 582 
     | 
    
         
            +
                    {
         
     | 
| 
      
 583 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 584 
     | 
    
         
            +
                      "start": 14831
         
     | 
| 
      
 585 
     | 
    
         
            +
                    },
         
     | 
| 
      
 586 
     | 
    
         
            +
                    {
         
     | 
| 
      
 587 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 588 
     | 
    
         
            +
                      "start": 16067
         
     | 
| 
      
 589 
     | 
    
         
            +
                    }
         
     | 
| 
      
 590 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 591 
     | 
    
         
            +
                  "VersionPartLib": [
         
     | 
| 
      
 592 
     | 
    
         
            +
                    {
         
     | 
| 
      
 593 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 594 
     | 
    
         
            +
                      "start": 17526
         
     | 
| 
      
 595 
     | 
    
         
            +
                    }
         
     | 
| 
      
 596 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 597 
     | 
    
         
            +
                }
         
     | 
| 
      
 598 
     | 
    
         
            +
              },
         
     | 
| 
      
 599 
     | 
    
         
            +
              "deployedLinkReferences": {
         
     | 
| 
      
 600 
     | 
    
         
            +
                "contracts/types/NftId.sol": {
         
     | 
| 
      
 601 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 602 
     | 
    
         
            +
                    {
         
     | 
| 
      
 603 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 604 
     | 
    
         
            +
                      "start": 1594
         
     | 
| 
      
 605 
     | 
    
         
            +
                    },
         
     | 
| 
      
 606 
     | 
    
         
            +
                    {
         
     | 
| 
      
 607 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 608 
     | 
    
         
            +
                      "start": 2618
         
     | 
| 
      
 609 
     | 
    
         
            +
                    }
         
     | 
| 
      
 610 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 611 
     | 
    
         
            +
                },
         
     | 
| 
      
 612 
     | 
    
         
            +
                "contracts/types/Timestamp.sol": {
         
     | 
| 
      
 613 
     | 
    
         
            +
                  "TimestampLib": [
         
     | 
| 
      
 614 
     | 
    
         
            +
                    {
         
     | 
| 
      
 615 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 616 
     | 
    
         
            +
                      "start": 4897
         
     | 
| 
      
 617 
     | 
    
         
            +
                    }
         
     | 
| 
      
 618 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 619 
     | 
    
         
            +
                },
         
     | 
| 
      
 620 
     | 
    
         
            +
                "contracts/types/Version.sol": {
         
     | 
| 
      
 621 
     | 
    
         
            +
                  "VersionLib": [
         
     | 
| 
      
 622 
     | 
    
         
            +
                    {
         
     | 
| 
      
 623 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 624 
     | 
    
         
            +
                      "start": 4227
         
     | 
| 
      
 625 
     | 
    
         
            +
                    },
         
     | 
| 
      
 626 
     | 
    
         
            +
                    {
         
     | 
| 
      
 627 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 628 
     | 
    
         
            +
                      "start": 4485
         
     | 
| 
      
 629 
     | 
    
         
            +
                    },
         
     | 
| 
      
 630 
     | 
    
         
            +
                    {
         
     | 
| 
      
 631 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 632 
     | 
    
         
            +
                      "start": 4608
         
     | 
| 
      
 633 
     | 
    
         
            +
                    }
         
     | 
| 
      
 634 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 635 
     | 
    
         
            +
                }
         
     | 
| 
      
 636 
     | 
    
         
            +
              }
         
     | 
| 
      
 637 
     | 
    
         
            +
            }
         
     |