@etherisc/gif-next 0.0.2-f2b0fa2-473 → 0.0.2-f4f92b3-338
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 +67 -1
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +656 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +329 -90
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{shared/RegisterableUpgradable.sol/RegisterableUpgradable.json → components/IComponent.sol/IComponent.json} +171 -158
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +496 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +568 -2
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +596 -5
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +360 -118
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +342 -147
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +1 -1
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +1 -1
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- 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 +1657 -28
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +162 -18
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +232 -632
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +231 -114
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +182 -58
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +328 -67
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +72 -23
- 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} +138 -16
- 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/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1102 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +449 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +772 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +437 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/{IComponentOwnerService.sol/IComponentOwnerService.json → IBundleService.sol/IBundleService.json} +295 -46
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +13 -18
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +766 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +15 -82
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +25 -245
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1227 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +505 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +806 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +437 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +856 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +437 -0
- 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 +339 -59
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +220 -111
- 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 +301 -188
- 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 +69 -130
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +51 -91
- 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 +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +394 -0
- 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 +2 -2
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +0 -5
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +13 -18
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +19 -6
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +19 -6
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +19 -11
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +26 -18
- 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/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 +19 -11
- 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 +44 -36
- 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/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +2 -2
- 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/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- 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/NftId.sol/NftIdLib.dbg.json +1 -1
- 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/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- 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/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- 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/VersionLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
- package/contracts/components/Component.sol +222 -0
- package/contracts/components/Distribution.sol +33 -55
- package/contracts/components/IComponent.sol +43 -0
- package/contracts/components/IDistributionComponent.sol +5 -1
- package/contracts/components/IPoolComponent.sol +11 -3
- package/contracts/components/IProductComponent.sol +7 -3
- package/contracts/components/Pool.sol +65 -83
- package/contracts/components/Product.sol +70 -109
- package/contracts/instance/BundleManager.sol +125 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +54 -10
- package/contracts/instance/IInstanceService.sol +24 -1
- package/contracts/instance/Instance.sol +76 -243
- package/contracts/instance/InstanceAccessManager.sol +88 -78
- package/contracts/instance/InstanceReader.sol +34 -21
- package/contracts/instance/InstanceService.sol +311 -51
- package/contracts/instance/InstanceServiceManager.sol +10 -12
- package/contracts/instance/ObjectManager.sol +84 -0
- package/contracts/instance/base/ComponentService.sol +134 -0
- package/contracts/instance/module/IAccess.sol +27 -17
- package/contracts/instance/module/IBundle.sol +1 -0
- package/contracts/instance/module/ISetup.sol +3 -0
- package/contracts/instance/service/BundleService.sol +293 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/DistributionService.sol +106 -0
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IBundleService.sol +44 -0
- package/contracts/instance/service/IPolicyService.sol +94 -0
- package/contracts/instance/service/IPoolService.sol +6 -23
- package/contracts/instance/service/IProductService.sol +6 -73
- package/contracts/instance/service/PolicyService.sol +538 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +109 -0
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +232 -0
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +1 -1
- package/contracts/registry/IRegistry.sol +47 -6
- package/contracts/registry/IRegistryService.sol +44 -14
- package/contracts/registry/Registry.sol +243 -214
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +81 -258
- package/contracts/registry/RegistryServiceManager.sol +20 -22
- package/contracts/registry/ReleaseManager.sol +332 -0
- package/contracts/registry/TokenRegistry.sol +112 -0
- package/contracts/shared/ERC165.sol +6 -2
- package/contracts/shared/IRegisterable.sol +1 -3
- package/contracts/shared/IService.sol +2 -1
- package/contracts/shared/NftOwnable.sol +7 -4
- package/contracts/shared/ProxyManager.sol +1 -1
- package/contracts/shared/Registerable.sol +11 -14
- package/contracts/shared/Service.sol +14 -8
- package/contracts/test/TestService.sol +3 -2
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/RoleId.sol +14 -6
- package/contracts/types/StateId.sol +4 -0
- package/contracts/types/Version.sol +4 -1
- package/package.json +1 -1
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -314
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -267
- 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 -1119
- 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 -86
- package/contracts/components/IBaseComponent.sol +0 -24
- package/contracts/instance/AccessManagedSimple.sol +0 -114
- package/contracts/instance/AccessManagerSimple.sol +0 -682
- package/contracts/instance/IAccessManagerSimple.sol +0 -391
- package/contracts/instance/base/ComponentServiceBase.sol +0 -49
- 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,772 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "_format": "hh-sol-artifact-1",
         | 
| 3 | 
            +
              "contractName": "DistributionService",
         | 
| 4 | 
            +
              "sourceName": "contracts/instance/service/DistributionService.sol",
         | 
| 5 | 
            +
              "abi": [
         | 
| 6 | 
            +
                {
         | 
| 7 | 
            +
                  "inputs": [
         | 
| 8 | 
            +
                    {
         | 
| 9 | 
            +
                      "internalType": "address",
         | 
| 10 | 
            +
                      "name": "registry",
         | 
| 11 | 
            +
                      "type": "address"
         | 
| 12 | 
            +
                    },
         | 
| 13 | 
            +
                    {
         | 
| 14 | 
            +
                      "internalType": "NftId",
         | 
| 15 | 
            +
                      "name": "nftId",
         | 
| 16 | 
            +
                      "type": "uint96"
         | 
| 17 | 
            +
                    }
         | 
| 18 | 
            +
                  ],
         | 
| 19 | 
            +
                  "name": "ErrorAlreadyLinked",
         | 
| 20 | 
            +
                  "type": "error"
         | 
| 21 | 
            +
                },
         | 
| 22 | 
            +
                {
         | 
| 23 | 
            +
                  "inputs": [
         | 
| 24 | 
            +
                    {
         | 
| 25 | 
            +
                      "internalType": "address",
         | 
| 26 | 
            +
                      "name": "component",
         | 
| 27 | 
            +
                      "type": "address"
         | 
| 28 | 
            +
                    },
         | 
| 29 | 
            +
                    {
         | 
| 30 | 
            +
                      "internalType": "NftId",
         | 
| 31 | 
            +
                      "name": "nftId",
         | 
| 32 | 
            +
                      "type": "uint96"
         | 
| 33 | 
            +
                    }
         | 
| 34 | 
            +
                  ],
         | 
| 35 | 
            +
                  "name": "ErrorComponentServiceAlreadyRegistered",
         | 
| 36 | 
            +
                  "type": "error"
         | 
| 37 | 
            +
                },
         | 
| 38 | 
            +
                {
         | 
| 39 | 
            +
                  "inputs": [
         | 
| 40 | 
            +
                    {
         | 
| 41 | 
            +
                      "internalType": "address",
         | 
| 42 | 
            +
                      "name": "component",
         | 
| 43 | 
            +
                      "type": "address"
         | 
| 44 | 
            +
                    }
         | 
| 45 | 
            +
                  ],
         | 
| 46 | 
            +
                  "name": "ErrorComponentServiceComponentLocked",
         | 
| 47 | 
            +
                  "type": "error"
         | 
| 48 | 
            +
                },
         | 
| 49 | 
            +
                {
         | 
| 50 | 
            +
                  "inputs": [
         | 
| 51 | 
            +
                    {
         | 
| 52 | 
            +
                      "internalType": "NftId",
         | 
| 53 | 
            +
                      "name": "instanceNftId",
         | 
| 54 | 
            +
                      "type": "uint96"
         | 
| 55 | 
            +
                    },
         | 
| 56 | 
            +
                    {
         | 
| 57 | 
            +
                      "internalType": "RoleId",
         | 
| 58 | 
            +
                      "name": "requiredRole",
         | 
| 59 | 
            +
                      "type": "uint64"
         | 
| 60 | 
            +
                    },
         | 
| 61 | 
            +
                    {
         | 
| 62 | 
            +
                      "internalType": "address",
         | 
| 63 | 
            +
                      "name": "sender",
         | 
| 64 | 
            +
                      "type": "address"
         | 
| 65 | 
            +
                    }
         | 
| 66 | 
            +
                  ],
         | 
| 67 | 
            +
                  "name": "ErrorComponentServiceExpectedRoleMissing",
         | 
| 68 | 
            +
                  "type": "error"
         | 
| 69 | 
            +
                },
         | 
| 70 | 
            +
                {
         | 
| 71 | 
            +
                  "inputs": [
         | 
| 72 | 
            +
                    {
         | 
| 73 | 
            +
                      "internalType": "address",
         | 
| 74 | 
            +
                      "name": "component",
         | 
| 75 | 
            +
                      "type": "address"
         | 
| 76 | 
            +
                    },
         | 
| 77 | 
            +
                    {
         | 
| 78 | 
            +
                      "internalType": "ObjectType",
         | 
| 79 | 
            +
                      "name": "requiredType",
         | 
| 80 | 
            +
                      "type": "uint8"
         | 
| 81 | 
            +
                    },
         | 
| 82 | 
            +
                    {
         | 
| 83 | 
            +
                      "internalType": "ObjectType",
         | 
| 84 | 
            +
                      "name": "componentType",
         | 
| 85 | 
            +
                      "type": "uint8"
         | 
| 86 | 
            +
                    }
         | 
| 87 | 
            +
                  ],
         | 
| 88 | 
            +
                  "name": "ErrorComponentServiceInvalidType",
         | 
| 89 | 
            +
                  "type": "error"
         | 
| 90 | 
            +
                },
         | 
| 91 | 
            +
                {
         | 
| 92 | 
            +
                  "inputs": [
         | 
| 93 | 
            +
                    {
         | 
| 94 | 
            +
                      "internalType": "address",
         | 
| 95 | 
            +
                      "name": "component",
         | 
| 96 | 
            +
                      "type": "address"
         | 
| 97 | 
            +
                    }
         | 
| 98 | 
            +
                  ],
         | 
| 99 | 
            +
                  "name": "ErrorComponentServiceNotComponent",
         | 
| 100 | 
            +
                  "type": "error"
         | 
| 101 | 
            +
                },
         | 
| 102 | 
            +
                {
         | 
| 103 | 
            +
                  "inputs": [
         | 
| 104 | 
            +
                    {
         | 
| 105 | 
            +
                      "internalType": "address",
         | 
| 106 | 
            +
                      "name": "component",
         | 
| 107 | 
            +
                      "type": "address"
         | 
| 108 | 
            +
                    },
         | 
| 109 | 
            +
                    {
         | 
| 110 | 
            +
                      "internalType": "address",
         | 
| 111 | 
            +
                      "name": "initialOwner",
         | 
| 112 | 
            +
                      "type": "address"
         | 
| 113 | 
            +
                    },
         | 
| 114 | 
            +
                    {
         | 
| 115 | 
            +
                      "internalType": "address",
         | 
| 116 | 
            +
                      "name": "sender",
         | 
| 117 | 
            +
                      "type": "address"
         | 
| 118 | 
            +
                    }
         | 
| 119 | 
            +
                  ],
         | 
| 120 | 
            +
                  "name": "ErrorComponentServiceSenderNotOwner",
         | 
| 121 | 
            +
                  "type": "error"
         | 
| 122 | 
            +
                },
         | 
| 123 | 
            +
                {
         | 
| 124 | 
            +
                  "inputs": [
         | 
| 125 | 
            +
                    {
         | 
| 126 | 
            +
                      "internalType": "address",
         | 
| 127 | 
            +
                      "name": "contractAddress",
         | 
| 128 | 
            +
                      "type": "address"
         | 
| 129 | 
            +
                    }
         | 
| 130 | 
            +
                  ],
         | 
| 131 | 
            +
                  "name": "ErrorContractNotRegistered",
         | 
| 132 | 
            +
                  "type": "error"
         | 
| 133 | 
            +
                },
         | 
| 134 | 
            +
                {
         | 
| 135 | 
            +
                  "inputs": [
         | 
| 136 | 
            +
                    {
         | 
| 137 | 
            +
                      "internalType": "address",
         | 
| 138 | 
            +
                      "name": "target",
         | 
| 139 | 
            +
                      "type": "address"
         | 
| 140 | 
            +
                    }
         | 
| 141 | 
            +
                  ],
         | 
| 142 | 
            +
                  "name": "ErrorIAccessTargetLocked",
         | 
| 143 | 
            +
                  "type": "error"
         | 
| 144 | 
            +
                },
         | 
| 145 | 
            +
                {
         | 
| 146 | 
            +
                  "inputs": [
         | 
| 147 | 
            +
                    {
         | 
| 148 | 
            +
                      "internalType": "address",
         | 
| 149 | 
            +
                      "name": "account",
         | 
| 150 | 
            +
                      "type": "address"
         | 
| 151 | 
            +
                    }
         | 
| 152 | 
            +
                  ],
         | 
| 153 | 
            +
                  "name": "ErrorNotOwner",
         | 
| 154 | 
            +
                  "type": "error"
         | 
| 155 | 
            +
                },
         | 
| 156 | 
            +
                {
         | 
| 157 | 
            +
                  "inputs": [
         | 
| 158 | 
            +
                    {
         | 
| 159 | 
            +
                      "internalType": "address",
         | 
| 160 | 
            +
                      "name": "registryAddress",
         | 
| 161 | 
            +
                      "type": "address"
         | 
| 162 | 
            +
                    }
         | 
| 163 | 
            +
                  ],
         | 
| 164 | 
            +
                  "name": "ErrorNotRegistry",
         | 
| 165 | 
            +
                  "type": "error"
         | 
| 166 | 
            +
                },
         | 
| 167 | 
            +
                {
         | 
| 168 | 
            +
                  "inputs": [
         | 
| 169 | 
            +
                    {
         | 
| 170 | 
            +
                      "internalType": "address",
         | 
| 171 | 
            +
                      "name": "registryAddress",
         | 
| 172 | 
            +
                      "type": "address"
         | 
| 173 | 
            +
                    }
         | 
| 174 | 
            +
                  ],
         | 
| 175 | 
            +
                  "name": "ErrorRegisterableNotRegistry",
         | 
| 176 | 
            +
                  "type": "error"
         | 
| 177 | 
            +
                },
         | 
| 178 | 
            +
                {
         | 
| 179 | 
            +
                  "inputs": [],
         | 
| 180 | 
            +
                  "name": "ErrorRegistryAddressZero",
         | 
| 181 | 
            +
                  "type": "error"
         | 
| 182 | 
            +
                },
         | 
| 183 | 
            +
                {
         | 
| 184 | 
            +
                  "inputs": [
         | 
| 185 | 
            +
                    {
         | 
| 186 | 
            +
                      "internalType": "address",
         | 
| 187 | 
            +
                      "name": "registry",
         | 
| 188 | 
            +
                      "type": "address"
         | 
| 189 | 
            +
                    }
         | 
| 190 | 
            +
                  ],
         | 
| 191 | 
            +
                  "name": "ErrorRegistryAlreadyInitialized",
         | 
| 192 | 
            +
                  "type": "error"
         | 
| 193 | 
            +
                },
         | 
| 194 | 
            +
                {
         | 
| 195 | 
            +
                  "inputs": [],
         | 
| 196 | 
            +
                  "name": "ErrorRegistryNotInitialized",
         | 
| 197 | 
            +
                  "type": "error"
         | 
| 198 | 
            +
                },
         | 
| 199 | 
            +
                {
         | 
| 200 | 
            +
                  "inputs": [],
         | 
| 201 | 
            +
                  "name": "InvalidInitialization",
         | 
| 202 | 
            +
                  "type": "error"
         | 
| 203 | 
            +
                },
         | 
| 204 | 
            +
                {
         | 
| 205 | 
            +
                  "inputs": [],
         | 
| 206 | 
            +
                  "name": "NotInitializing",
         | 
| 207 | 
            +
                  "type": "error"
         | 
| 208 | 
            +
                },
         | 
| 209 | 
            +
                {
         | 
| 210 | 
            +
                  "anonymous": false,
         | 
| 211 | 
            +
                  "inputs": [
         | 
| 212 | 
            +
                    {
         | 
| 213 | 
            +
                      "indexed": false,
         | 
| 214 | 
            +
                      "internalType": "uint64",
         | 
| 215 | 
            +
                      "name": "version",
         | 
| 216 | 
            +
                      "type": "uint64"
         | 
| 217 | 
            +
                    }
         | 
| 218 | 
            +
                  ],
         | 
| 219 | 
            +
                  "name": "Initialized",
         | 
| 220 | 
            +
                  "type": "event"
         | 
| 221 | 
            +
                },
         | 
| 222 | 
            +
                {
         | 
| 223 | 
            +
                  "anonymous": false,
         | 
| 224 | 
            +
                  "inputs": [
         | 
| 225 | 
            +
                    {
         | 
| 226 | 
            +
                      "indexed": false,
         | 
| 227 | 
            +
                      "internalType": "Version",
         | 
| 228 | 
            +
                      "name": "version",
         | 
| 229 | 
            +
                      "type": "uint24"
         | 
| 230 | 
            +
                    },
         | 
| 231 | 
            +
                    {
         | 
| 232 | 
            +
                      "indexed": false,
         | 
| 233 | 
            +
                      "internalType": "address",
         | 
| 234 | 
            +
                      "name": "implementation",
         | 
| 235 | 
            +
                      "type": "address"
         | 
| 236 | 
            +
                    },
         | 
| 237 | 
            +
                    {
         | 
| 238 | 
            +
                      "indexed": false,
         | 
| 239 | 
            +
                      "internalType": "address",
         | 
| 240 | 
            +
                      "name": "activatedBy",
         | 
| 241 | 
            +
                      "type": "address"
         | 
| 242 | 
            +
                    }
         | 
| 243 | 
            +
                  ],
         | 
| 244 | 
            +
                  "name": "LogVersionableInitialized",
         | 
| 245 | 
            +
                  "type": "event"
         | 
| 246 | 
            +
                },
         | 
| 247 | 
            +
                {
         | 
| 248 | 
            +
                  "inputs": [],
         | 
| 249 | 
            +
                  "name": "REGISTERABLE_LOCATION_V1",
         | 
| 250 | 
            +
                  "outputs": [
         | 
| 251 | 
            +
                    {
         | 
| 252 | 
            +
                      "internalType": "bytes32",
         | 
| 253 | 
            +
                      "name": "",
         | 
| 254 | 
            +
                      "type": "bytes32"
         | 
| 255 | 
            +
                    }
         | 
| 256 | 
            +
                  ],
         | 
| 257 | 
            +
                  "stateMutability": "view",
         | 
| 258 | 
            +
                  "type": "function"
         | 
| 259 | 
            +
                },
         | 
| 260 | 
            +
                {
         | 
| 261 | 
            +
                  "inputs": [],
         | 
| 262 | 
            +
                  "name": "getDomain",
         | 
| 263 | 
            +
                  "outputs": [
         | 
| 264 | 
            +
                    {
         | 
| 265 | 
            +
                      "internalType": "ObjectType",
         | 
| 266 | 
            +
                      "name": "",
         | 
| 267 | 
            +
                      "type": "uint8"
         | 
| 268 | 
            +
                    }
         | 
| 269 | 
            +
                  ],
         | 
| 270 | 
            +
                  "stateMutability": "pure",
         | 
| 271 | 
            +
                  "type": "function"
         | 
| 272 | 
            +
                },
         | 
| 273 | 
            +
                {
         | 
| 274 | 
            +
                  "inputs": [],
         | 
| 275 | 
            +
                  "name": "getInitialInfo",
         | 
| 276 | 
            +
                  "outputs": [
         | 
| 277 | 
            +
                    {
         | 
| 278 | 
            +
                      "components": [
         | 
| 279 | 
            +
                        {
         | 
| 280 | 
            +
                          "internalType": "NftId",
         | 
| 281 | 
            +
                          "name": "nftId",
         | 
| 282 | 
            +
                          "type": "uint96"
         | 
| 283 | 
            +
                        },
         | 
| 284 | 
            +
                        {
         | 
| 285 | 
            +
                          "internalType": "NftId",
         | 
| 286 | 
            +
                          "name": "parentNftId",
         | 
| 287 | 
            +
                          "type": "uint96"
         | 
| 288 | 
            +
                        },
         | 
| 289 | 
            +
                        {
         | 
| 290 | 
            +
                          "internalType": "ObjectType",
         | 
| 291 | 
            +
                          "name": "objectType",
         | 
| 292 | 
            +
                          "type": "uint8"
         | 
| 293 | 
            +
                        },
         | 
| 294 | 
            +
                        {
         | 
| 295 | 
            +
                          "internalType": "bool",
         | 
| 296 | 
            +
                          "name": "isInterceptor",
         | 
| 297 | 
            +
                          "type": "bool"
         | 
| 298 | 
            +
                        },
         | 
| 299 | 
            +
                        {
         | 
| 300 | 
            +
                          "internalType": "address",
         | 
| 301 | 
            +
                          "name": "objectAddress",
         | 
| 302 | 
            +
                          "type": "address"
         | 
| 303 | 
            +
                        },
         | 
| 304 | 
            +
                        {
         | 
| 305 | 
            +
                          "internalType": "address",
         | 
| 306 | 
            +
                          "name": "initialOwner",
         | 
| 307 | 
            +
                          "type": "address"
         | 
| 308 | 
            +
                        },
         | 
| 309 | 
            +
                        {
         | 
| 310 | 
            +
                          "internalType": "bytes",
         | 
| 311 | 
            +
                          "name": "data",
         | 
| 312 | 
            +
                          "type": "bytes"
         | 
| 313 | 
            +
                        }
         | 
| 314 | 
            +
                      ],
         | 
| 315 | 
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         | 
| 316 | 
            +
                      "name": "info",
         | 
| 317 | 
            +
                      "type": "tuple"
         | 
| 318 | 
            +
                    }
         | 
| 319 | 
            +
                  ],
         | 
| 320 | 
            +
                  "stateMutability": "view",
         | 
| 321 | 
            +
                  "type": "function"
         | 
| 322 | 
            +
                },
         | 
| 323 | 
            +
                {
         | 
| 324 | 
            +
                  "inputs": [],
         | 
| 325 | 
            +
                  "name": "getInitialOwner",
         | 
| 326 | 
            +
                  "outputs": [
         | 
| 327 | 
            +
                    {
         | 
| 328 | 
            +
                      "internalType": "address",
         | 
| 329 | 
            +
                      "name": "",
         | 
| 330 | 
            +
                      "type": "address"
         | 
| 331 | 
            +
                    }
         | 
| 332 | 
            +
                  ],
         | 
| 333 | 
            +
                  "stateMutability": "view",
         | 
| 334 | 
            +
                  "type": "function"
         | 
| 335 | 
            +
                },
         | 
| 336 | 
            +
                {
         | 
| 337 | 
            +
                  "inputs": [],
         | 
| 338 | 
            +
                  "name": "getInitializedVersion",
         | 
| 339 | 
            +
                  "outputs": [
         | 
| 340 | 
            +
                    {
         | 
| 341 | 
            +
                      "internalType": "uint64",
         | 
| 342 | 
            +
                      "name": "",
         | 
| 343 | 
            +
                      "type": "uint64"
         | 
| 344 | 
            +
                    }
         | 
| 345 | 
            +
                  ],
         | 
| 346 | 
            +
                  "stateMutability": "view",
         | 
| 347 | 
            +
                  "type": "function"
         | 
| 348 | 
            +
                },
         | 
| 349 | 
            +
                {
         | 
| 350 | 
            +
                  "inputs": [],
         | 
| 351 | 
            +
                  "name": "getInstanceService",
         | 
| 352 | 
            +
                  "outputs": [
         | 
| 353 | 
            +
                    {
         | 
| 354 | 
            +
                      "internalType": "contract InstanceService",
         | 
| 355 | 
            +
                      "name": "",
         | 
| 356 | 
            +
                      "type": "address"
         | 
| 357 | 
            +
                    }
         | 
| 358 | 
            +
                  ],
         | 
| 359 | 
            +
                  "stateMutability": "view",
         | 
| 360 | 
            +
                  "type": "function"
         | 
| 361 | 
            +
                },
         | 
| 362 | 
            +
                {
         | 
| 363 | 
            +
                  "inputs": [],
         | 
| 364 | 
            +
                  "name": "getMajorVersion",
         | 
| 365 | 
            +
                  "outputs": [
         | 
| 366 | 
            +
                    {
         | 
| 367 | 
            +
                      "internalType": "VersionPart",
         | 
| 368 | 
            +
                      "name": "majorVersion",
         | 
| 369 | 
            +
                      "type": "uint8"
         | 
| 370 | 
            +
                    }
         | 
| 371 | 
            +
                  ],
         | 
| 372 | 
            +
                  "stateMutability": "view",
         | 
| 373 | 
            +
                  "type": "function"
         | 
| 374 | 
            +
                },
         | 
| 375 | 
            +
                {
         | 
| 376 | 
            +
                  "inputs": [],
         | 
| 377 | 
            +
                  "name": "getNftId",
         | 
| 378 | 
            +
                  "outputs": [
         | 
| 379 | 
            +
                    {
         | 
| 380 | 
            +
                      "internalType": "NftId",
         | 
| 381 | 
            +
                      "name": "",
         | 
| 382 | 
            +
                      "type": "uint96"
         | 
| 383 | 
            +
                    }
         | 
| 384 | 
            +
                  ],
         | 
| 385 | 
            +
                  "stateMutability": "view",
         | 
| 386 | 
            +
                  "type": "function"
         | 
| 387 | 
            +
                },
         | 
| 388 | 
            +
                {
         | 
| 389 | 
            +
                  "inputs": [],
         | 
| 390 | 
            +
                  "name": "getOwner",
         | 
| 391 | 
            +
                  "outputs": [
         | 
| 392 | 
            +
                    {
         | 
| 393 | 
            +
                      "internalType": "address",
         | 
| 394 | 
            +
                      "name": "",
         | 
| 395 | 
            +
                      "type": "address"
         | 
| 396 | 
            +
                    }
         | 
| 397 | 
            +
                  ],
         | 
| 398 | 
            +
                  "stateMutability": "view",
         | 
| 399 | 
            +
                  "type": "function"
         | 
| 400 | 
            +
                },
         | 
| 401 | 
            +
                {
         | 
| 402 | 
            +
                  "inputs": [],
         | 
| 403 | 
            +
                  "name": "getRegistry",
         | 
| 404 | 
            +
                  "outputs": [
         | 
| 405 | 
            +
                    {
         | 
| 406 | 
            +
                      "internalType": "contract IRegistry",
         | 
| 407 | 
            +
                      "name": "",
         | 
| 408 | 
            +
                      "type": "address"
         | 
| 409 | 
            +
                    }
         | 
| 410 | 
            +
                  ],
         | 
| 411 | 
            +
                  "stateMutability": "view",
         | 
| 412 | 
            +
                  "type": "function"
         | 
| 413 | 
            +
                },
         | 
| 414 | 
            +
                {
         | 
| 415 | 
            +
                  "inputs": [],
         | 
| 416 | 
            +
                  "name": "getRegistryService",
         | 
| 417 | 
            +
                  "outputs": [
         | 
| 418 | 
            +
                    {
         | 
| 419 | 
            +
                      "internalType": "contract IRegistryService",
         | 
| 420 | 
            +
                      "name": "",
         | 
| 421 | 
            +
                      "type": "address"
         | 
| 422 | 
            +
                    }
         | 
| 423 | 
            +
                  ],
         | 
| 424 | 
            +
                  "stateMutability": "view",
         | 
| 425 | 
            +
                  "type": "function"
         | 
| 426 | 
            +
                },
         | 
| 427 | 
            +
                {
         | 
| 428 | 
            +
                  "inputs": [],
         | 
| 429 | 
            +
                  "name": "getVersion",
         | 
| 430 | 
            +
                  "outputs": [
         | 
| 431 | 
            +
                    {
         | 
| 432 | 
            +
                      "internalType": "Version",
         | 
| 433 | 
            +
                      "name": "",
         | 
| 434 | 
            +
                      "type": "uint24"
         | 
| 435 | 
            +
                    }
         | 
| 436 | 
            +
                  ],
         | 
| 437 | 
            +
                  "stateMutability": "pure",
         | 
| 438 | 
            +
                  "type": "function"
         | 
| 439 | 
            +
                },
         | 
| 440 | 
            +
                {
         | 
| 441 | 
            +
                  "inputs": [
         | 
| 442 | 
            +
                    {
         | 
| 443 | 
            +
                      "internalType": "uint256",
         | 
| 444 | 
            +
                      "name": "idx",
         | 
| 445 | 
            +
                      "type": "uint256"
         | 
| 446 | 
            +
                    }
         | 
| 447 | 
            +
                  ],
         | 
| 448 | 
            +
                  "name": "getVersion",
         | 
| 449 | 
            +
                  "outputs": [
         | 
| 450 | 
            +
                    {
         | 
| 451 | 
            +
                      "internalType": "Version",
         | 
| 452 | 
            +
                      "name": "",
         | 
| 453 | 
            +
                      "type": "uint24"
         | 
| 454 | 
            +
                    }
         | 
| 455 | 
            +
                  ],
         | 
| 456 | 
            +
                  "stateMutability": "view",
         | 
| 457 | 
            +
                  "type": "function"
         | 
| 458 | 
            +
                },
         | 
| 459 | 
            +
                {
         | 
| 460 | 
            +
                  "inputs": [],
         | 
| 461 | 
            +
                  "name": "getVersionCount",
         | 
| 462 | 
            +
                  "outputs": [
         | 
| 463 | 
            +
                    {
         | 
| 464 | 
            +
                      "internalType": "uint256",
         | 
| 465 | 
            +
                      "name": "",
         | 
| 466 | 
            +
                      "type": "uint256"
         | 
| 467 | 
            +
                    }
         | 
| 468 | 
            +
                  ],
         | 
| 469 | 
            +
                  "stateMutability": "view",
         | 
| 470 | 
            +
                  "type": "function"
         | 
| 471 | 
            +
                },
         | 
| 472 | 
            +
                {
         | 
| 473 | 
            +
                  "inputs": [
         | 
| 474 | 
            +
                    {
         | 
| 475 | 
            +
                      "internalType": "Version",
         | 
| 476 | 
            +
                      "name": "_version",
         | 
| 477 | 
            +
                      "type": "uint24"
         | 
| 478 | 
            +
                    }
         | 
| 479 | 
            +
                  ],
         | 
| 480 | 
            +
                  "name": "getVersionInfo",
         | 
| 481 | 
            +
                  "outputs": [
         | 
| 482 | 
            +
                    {
         | 
| 483 | 
            +
                      "components": [
         | 
| 484 | 
            +
                        {
         | 
| 485 | 
            +
                          "internalType": "Version",
         | 
| 486 | 
            +
                          "name": "version",
         | 
| 487 | 
            +
                          "type": "uint24"
         | 
| 488 | 
            +
                        },
         | 
| 489 | 
            +
                        {
         | 
| 490 | 
            +
                          "internalType": "address",
         | 
| 491 | 
            +
                          "name": "implementation",
         | 
| 492 | 
            +
                          "type": "address"
         | 
| 493 | 
            +
                        },
         | 
| 494 | 
            +
                        {
         | 
| 495 | 
            +
                          "internalType": "address",
         | 
| 496 | 
            +
                          "name": "activatedBy",
         | 
| 497 | 
            +
                          "type": "address"
         | 
| 498 | 
            +
                        },
         | 
| 499 | 
            +
                        {
         | 
| 500 | 
            +
                          "internalType": "Timestamp",
         | 
| 501 | 
            +
                          "name": "activatedAt",
         | 
| 502 | 
            +
                          "type": "uint40"
         | 
| 503 | 
            +
                        },
         | 
| 504 | 
            +
                        {
         | 
| 505 | 
            +
                          "internalType": "Blocknumber",
         | 
| 506 | 
            +
                          "name": "activatedIn",
         | 
| 507 | 
            +
                          "type": "uint32"
         | 
| 508 | 
            +
                        }
         | 
| 509 | 
            +
                      ],
         | 
| 510 | 
            +
                      "internalType": "struct IVersionable.VersionInfo",
         | 
| 511 | 
            +
                      "name": "",
         | 
| 512 | 
            +
                      "type": "tuple"
         | 
| 513 | 
            +
                    }
         | 
| 514 | 
            +
                  ],
         | 
| 515 | 
            +
                  "stateMutability": "view",
         | 
| 516 | 
            +
                  "type": "function"
         | 
| 517 | 
            +
                },
         | 
| 518 | 
            +
                {
         | 
| 519 | 
            +
                  "inputs": [
         | 
| 520 | 
            +
                    {
         | 
| 521 | 
            +
                      "internalType": "address",
         | 
| 522 | 
            +
                      "name": "implementation",
         | 
| 523 | 
            +
                      "type": "address"
         | 
| 524 | 
            +
                    },
         | 
| 525 | 
            +
                    {
         | 
| 526 | 
            +
                      "internalType": "address",
         | 
| 527 | 
            +
                      "name": "activatedBy",
         | 
| 528 | 
            +
                      "type": "address"
         | 
| 529 | 
            +
                    },
         | 
| 530 | 
            +
                    {
         | 
| 531 | 
            +
                      "internalType": "bytes",
         | 
| 532 | 
            +
                      "name": "data",
         | 
| 533 | 
            +
                      "type": "bytes"
         | 
| 534 | 
            +
                    }
         | 
| 535 | 
            +
                  ],
         | 
| 536 | 
            +
                  "name": "initialize",
         | 
| 537 | 
            +
                  "outputs": [],
         | 
| 538 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 539 | 
            +
                  "type": "function"
         | 
| 540 | 
            +
                },
         | 
| 541 | 
            +
                {
         | 
| 542 | 
            +
                  "inputs": [
         | 
| 543 | 
            +
                    {
         | 
| 544 | 
            +
                      "internalType": "Version",
         | 
| 545 | 
            +
                      "name": "_version",
         | 
| 546 | 
            +
                      "type": "uint24"
         | 
| 547 | 
            +
                    }
         | 
| 548 | 
            +
                  ],
         | 
| 549 | 
            +
                  "name": "isInitialized",
         | 
| 550 | 
            +
                  "outputs": [
         | 
| 551 | 
            +
                    {
         | 
| 552 | 
            +
                      "internalType": "bool",
         | 
| 553 | 
            +
                      "name": "",
         | 
| 554 | 
            +
                      "type": "bool"
         | 
| 555 | 
            +
                    }
         | 
| 556 | 
            +
                  ],
         | 
| 557 | 
            +
                  "stateMutability": "view",
         | 
| 558 | 
            +
                  "type": "function"
         | 
| 559 | 
            +
                },
         | 
| 560 | 
            +
                {
         | 
| 561 | 
            +
                  "inputs": [],
         | 
| 562 | 
            +
                  "name": "linkToRegisteredNftId",
         | 
| 563 | 
            +
                  "outputs": [],
         | 
| 564 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 565 | 
            +
                  "type": "function"
         | 
| 566 | 
            +
                },
         | 
| 567 | 
            +
                {
         | 
| 568 | 
            +
                  "inputs": [
         | 
| 569 | 
            +
                    {
         | 
| 570 | 
            +
                      "internalType": "address",
         | 
| 571 | 
            +
                      "name": "distributionAddress",
         | 
| 572 | 
            +
                      "type": "address"
         | 
| 573 | 
            +
                    }
         | 
| 574 | 
            +
                  ],
         | 
| 575 | 
            +
                  "name": "register",
         | 
| 576 | 
            +
                  "outputs": [
         | 
| 577 | 
            +
                    {
         | 
| 578 | 
            +
                      "internalType": "NftId",
         | 
| 579 | 
            +
                      "name": "distributionNftId",
         | 
| 580 | 
            +
                      "type": "uint96"
         | 
| 581 | 
            +
                    }
         | 
| 582 | 
            +
                  ],
         | 
| 583 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 584 | 
            +
                  "type": "function"
         | 
| 585 | 
            +
                },
         | 
| 586 | 
            +
                {
         | 
| 587 | 
            +
                  "inputs": [
         | 
| 588 | 
            +
                    {
         | 
| 589 | 
            +
                      "components": [
         | 
| 590 | 
            +
                        {
         | 
| 591 | 
            +
                          "internalType": "UFixed",
         | 
| 592 | 
            +
                          "name": "fractionalFee",
         | 
| 593 | 
            +
                          "type": "uint256"
         | 
| 594 | 
            +
                        },
         | 
| 595 | 
            +
                        {
         | 
| 596 | 
            +
                          "internalType": "uint256",
         | 
| 597 | 
            +
                          "name": "fixedFee",
         | 
| 598 | 
            +
                          "type": "uint256"
         | 
| 599 | 
            +
                        }
         | 
| 600 | 
            +
                      ],
         | 
| 601 | 
            +
                      "internalType": "struct Fee",
         | 
| 602 | 
            +
                      "name": "distributionFee",
         | 
| 603 | 
            +
                      "type": "tuple"
         | 
| 604 | 
            +
                    }
         | 
| 605 | 
            +
                  ],
         | 
| 606 | 
            +
                  "name": "setFees",
         | 
| 607 | 
            +
                  "outputs": [],
         | 
| 608 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 609 | 
            +
                  "type": "function"
         | 
| 610 | 
            +
                },
         | 
| 611 | 
            +
                {
         | 
| 612 | 
            +
                  "inputs": [
         | 
| 613 | 
            +
                    {
         | 
| 614 | 
            +
                      "internalType": "bytes4",
         | 
| 615 | 
            +
                      "name": "interfaceId",
         | 
| 616 | 
            +
                      "type": "bytes4"
         | 
| 617 | 
            +
                    }
         | 
| 618 | 
            +
                  ],
         | 
| 619 | 
            +
                  "name": "supportsInterface",
         | 
| 620 | 
            +
                  "outputs": [
         | 
| 621 | 
            +
                    {
         | 
| 622 | 
            +
                      "internalType": "bool",
         | 
| 623 | 
            +
                      "name": "",
         | 
| 624 | 
            +
                      "type": "bool"
         | 
| 625 | 
            +
                    }
         | 
| 626 | 
            +
                  ],
         | 
| 627 | 
            +
                  "stateMutability": "view",
         | 
| 628 | 
            +
                  "type": "function"
         | 
| 629 | 
            +
                },
         | 
| 630 | 
            +
                {
         | 
| 631 | 
            +
                  "inputs": [
         | 
| 632 | 
            +
                    {
         | 
| 633 | 
            +
                      "internalType": "address",
         | 
| 634 | 
            +
                      "name": "implementation",
         | 
| 635 | 
            +
                      "type": "address"
         | 
| 636 | 
            +
                    },
         | 
| 637 | 
            +
                    {
         | 
| 638 | 
            +
                      "internalType": "address",
         | 
| 639 | 
            +
                      "name": "activatedBy",
         | 
| 640 | 
            +
                      "type": "address"
         | 
| 641 | 
            +
                    },
         | 
| 642 | 
            +
                    {
         | 
| 643 | 
            +
                      "internalType": "bytes",
         | 
| 644 | 
            +
                      "name": "data",
         | 
| 645 | 
            +
                      "type": "bytes"
         | 
| 646 | 
            +
                    }
         | 
| 647 | 
            +
                  ],
         | 
| 648 | 
            +
                  "name": "upgrade",
         | 
| 649 | 
            +
                  "outputs": [],
         | 
| 650 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 651 | 
            +
                  "type": "function"
         | 
| 652 | 
            +
                }
         | 
| 653 | 
            +
              ],
         | 
| 654 | 
            +
              "bytecode": "0x60806040523480156200001157600080fd5b50620000546301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600280546001600160a01b031916331790556200007062000076565b6200012a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000c75760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001275780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b612b5c806200013a6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063893d20e8116100b8578063b88da7591161007c578063b88da75914610417578063caf4e3d41461042a578063cc9fc59a14610432578063cde749f41461043a578063cf7a1d7714610442578063fb2cb1011461045557600080fd5b8063893d20e8146103a0578063946dfcfe146103a8578063a745e3df146103cf578063b3c65015146103e2578063b68d18091461040257600080fd5b80633f52c0f61161010a5780633f52c0f6146101f95780634420e4861461020c5780634d459c90146102375780634f421333146103505780635ab1bd5314610363578063644c45e01461038857600080fd5b806301ffc9a7146101475780630d8e6e2c146101895780630fec111c146101a5578063138461e0146101ba5780631eff4b22146101c4575b600080fd5b6101746101553660046121f0565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610191610466565b60405162ffffff9091168152602001610180565b6101ad6104f0565b6040516101809190612271565b6101c26106ae565b005b6101eb7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610180565b6101c261020736600461238c565b6108d0565b61021f61021a3660046123d3565b610a33565b6040516001600160601b039091168152602001610180565b6102f3610245366004612401565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152600080516020612b0783398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610180565b61017461035e366004612401565b610cd3565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610180565b600154600160a01b90046001600160601b031661021f565b610370610d86565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed901546101eb565b6101c26103dd366004612445565b610e9f565b6103ea610ff9565b6040516001600160401b039091168152602001610180565b60785b60405160ff9091168152602001610180565b6101916104253660046124e9565b61101a565b61037061106b565b610370611108565b610405611132565b6101c2610450366004612445565b6111b5565b6002546001600160a01b0316610370565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156104c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104eb9190612502565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b909104161515918101919091526001820180549192916060840191906105a09061251f565b80601f01602080910402602001604051908101604052809291908181526020018280546105cc9061251f565b80156106195780601f106105ee57610100808354040283529160200191610619565b820191906000526020600020905b8154815290600101906020018083116105fc57829003601f168201915b50505050508152505090506040518060e00160405280610637600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b031681526020016106926002546001600160a01b031690565b6001600160a01b03168152602001826060015181525091505090565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610710573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610734919061256e565b1561077b576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166107a45760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa1580156107ed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610811919061256e565b610839576040516372657a5160e01b81526001600160a01b0382166004820152602401610772565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610883573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a791906125a0565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b6000806108dd60786112be565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610921573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094591906125bb565b8351604051639ad69c6760e01b81526001600160601b0382166004820152919250906000906001600160a01b03841690639ad69c679060240160c060405180830381865afa15801561099b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bf91906125e3565b60408181018890525163bd5947e360e01b81529091506001600160a01b0385169063bd5947e3906109f9908590859060ff906004016126ed565b600060405180830381600087803b158015610a1357600080fd5b505af1158015610a27573d6000803e3d6000fd5b50505050505050505050565b600080808080610a4c866078610a47611560565b6115d7565b93509350935093506000610a5e61106b565b604051638fbc2d8160e01b81526001600160a01b03878116600483015286811660248301529190911690638fbc2d81906044016000604051808303816000875af1158015610ab0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ad89190810190612786565b90506000879050806001600160a01b031663138461e06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610b1a57600080fd5b505af1158015610b2e573d6000803e3d6000fd5b5050505081600001519650836001600160a01b0316630b24cf5f88836001600160a01b031663c200b8096040518163ffffffff1660e01b815260040160c060405180830381865afa158015610b87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bab91906125e3565b6040518363ffffffff1660e01b8152600401610bc8929190612858565b600060405180830381600087803b158015610be257600080fd5b505af1158015610bf6573d6000803e3d6000fd5b50505050610c02611108565b6001600160a01b03166386ebbf42848a846001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015610c50573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c789190810190612875565b6040518463ffffffff1660e01b8152600401610c96939291906128bd565b600060405180830381600087803b158015610cb057600080fd5b505af1158015610cc4573d6000803e3d6000fd5b50505050505050505050919050565b600080600080516020612b0783398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610d5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7f91906128f9565b1192915050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610deb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0f919061256e565b15610e8f57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610e6b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104eb91906125bb565b506002546001600160a01b031690565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610ec1610466565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610f01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f259190612927565b600080516020612ae78339815191528054600160401b900460ff1680610f58575080546001600160401b03808416911610155b15610f765760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610fa185856119a5565b610faa83611c44565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b60006104eb600080516020612ae7833981519152546001600160401b031690565b6000600080516020612b07833981519152600101828154811061103f5761103f612944565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b6000806110806001546001600160a01b031690565b6001600160a01b031663d39e604360285b611099611132565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156110de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110291906125bb565b92915050565b60008061111d6001546001600160a01b031690565b6001600160a01b031663d39e60436046611091565b600061113c610466565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015611191573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104eb919061295a565b600080516020612ae78339815191528054600160401b810460ff1615906001600160401b03166000811580156111e85750825b90506000826001600160401b031660011480156112045750303b155b905081158015611212575080155b156112305760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561125a57845460ff60401b1916600160401b1785555b61126488886119a5565b61126e8787611c4c565b83156112b457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c082015260015490919081906001600160a01b03166040516308b09a5f60e41b81523360048201529091506001600160a01b03821690638b09a5f090602401600060405180830381865afa15801561134d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113759190810190612786565b925061138b83604001518560ff90811691161490565b6113cd5760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b6044820152606401610772565b60208301516040516305247a1760e51b81526001600160601b0390911660048201526000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611423573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261144b9190810190612786565b6080015190508092506000836001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611494573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b891906125bb565b6080860151604051629b7b3560e61b81526001600160a01b0391821660048201529192508216906326decd4090602401602060405180830381865afa158015611505573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611529919061256e565b1561155857608085015160405163d53987e560e01b81526001600160a01b039091166004820152602401610772565b505050915091565b6040516368aebf7b60e01b81526064600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af41580156115b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104eb9190612927565b600154604051636939560f60e11b81526001600160a01b038581166004830152600092339284928392839291169063d272ac1e90602401602060405180830381865afa15801561162b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164f91906125a0565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156116aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ce919061256e565b156117055760405162b8422b60e71b81526001600160a01b03891660048201526001600160601b0382166024820152604401610772565b6040516301ffc9a760e01b8152636fb9922f60e11b60048201528895506001600160a01b038616906301ffc9a790602401602060405180830381865afa158015611753573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611777919061256e565b61179f576040516359bff0e360e11b81526001600160a01b0389166004820152602401610772565b6000856001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156117df573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118079190810190612786565b905061181e81604001518960ff9081169116141590565b1561185e576040808201519051634a2e948760e11b81526001600160a01b038b16600482015260ff808b1660248301529091166044820152606401610772565b60a08101516001600160a01b03868116908216146118b05760a0820151604051632b50a20960e21b81526001600160a01b03808d16600483015291821660248201529087166044820152606401610772565b816020015193506118c084611d77565b945060006118cc611108565b60405163081deaed60e11b81526001600160a01b0389811660048301526001600160401b038c1660248301528881166044830152919091169063103bd5da90606401602060405180830381865afa15801561192b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194f919061256e565b90508061199857604051636af540d960e01b81526001600160601b03861660048201526001600160401b038a1660248201526001600160a01b0388166044820152606401610772565b5050505093509350935093565b6119ad611e0e565b600080516020612b0783398151915260006119dd600080516020612ae7833981519152546001600160401b031690565b905060006119e9610466565b9050816001600160401b0316600103611a165760028301805462ffffff191662ffffff8316179055611a64565b600283015462ffffff90811690821611611a645760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b6044820152606401610772565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015611b18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3c9190612977565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf6890610fea9083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b610142611e0e565b600080516020612ae78339815191528054600160401b810460ff1615906001600160401b0316600081158015611c7f5750825b90506000826001600160401b03166001148015611c9b5750303b155b905081158015611ca9575080155b15611cc75760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611cf157845460ff60401b1916600160401b1785555b60008087806020019051810190611d08919061299e565b92509050611d16818a611e47565b611d26631fa9607b60e11b611eb2565b50508315611d6e57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b600080611d8c6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611ddb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e039190810190612786565b608001519392505050565b600080516020612ae783398151915254600160401b900460ff16611e4557604051631afcd79f60e31b815260040160405180910390fd5b565b60006078611e53611132565b6040805160ff9384166020820152929091169082015260600160405160208183030381529060405290506000611e8884611ed7565b90506000611e9b8583603c848888611f42565b611eab637b6a51fd60e01b611eb2565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015611f1e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110291906125a0565b611f836301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b611f8d828761200e565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101611ffd8382612a27565b50611d6e6303fb044760e21b611eb2565b6001600160a01b0382166120645760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e6572206973203000006044820152606401610772565b600280546001600160a01b0319166001600160a01b0384161790556120888161208c565b5050565b6001546001600160a01b0316156120c55760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610772565b6001600160a01b0381166120ec5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036121225760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610772565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526316c8f9ff60e01b60048201526301ffc9a790602401602060405180830381865afa92505050801561219c575060408051601f3d908101601f191682019092526121999181019061256e565b60015b6121c45760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610772565b806120885760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610772565b50565b60006020828403121561220257600080fd5b81356001600160e01b03198116811461221a57600080fd5b9392505050565b60005b8381101561223c578181015183820152602001612224565b50506000910152565b6000815180845261225d816020860160208601612221565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516122da60c08401826001600160a01b03169052565b5060c083015160e0808401526122f4610100840182612245565b949350505050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715612334576123346122fc565b60405290565b60405160e081016001600160401b0381118282101715612334576123346122fc565b604051601f8201601f191681016001600160401b0381118282101715612384576123846122fc565b604052919050565b60006040828403121561239e57600080fd5b6123a6612312565b82358152602083013560208201528091505092915050565b6001600160a01b03811681146121ed57600080fd5b6000602082840312156123e557600080fd5b813561221a816123be565b62ffffff811681146121ed57600080fd5b60006020828403121561241357600080fd5b813561221a816123f0565b60006001600160401b03821115612437576124376122fc565b50601f01601f191660200190565b60008060006060848603121561245a57600080fd5b8335612465816123be565b92506020840135612475816123be565b915060408401356001600160401b0381111561249057600080fd5b8401601f810186136124a157600080fd5b80356124b46124af8261241e565b61235c565b8181528760208385010111156124c957600080fd5b816020840160208301376000602083830101528093505050509250925092565b6000602082840312156124fb57600080fd5b5035919050565b60006020828403121561251457600080fd5b815161221a816123f0565b600181811c9082168061253357607f821691505b60208210810361255357634e487b7160e01b600052602260045260246000fd5b50919050565b8051801515811461256957600080fd5b919050565b60006020828403121561258057600080fd5b61221a82612559565b80516001600160601b038116811461256957600080fd5b6000602082840312156125b257600080fd5b61221a82612589565b6000602082840312156125cd57600080fd5b815161221a816123be565b8051612569816123be565b600081830360c08112156125f657600080fd5b60405160a081018181106001600160401b0382111715612618576126186122fc565b60405261262484612589565b81526020840151612634816123be565b60208201526040603f198301121561264b57600080fd5b612653612312565b9150604084015182526060840151602083015281604082015261267860808501612559565b606082015261268960a085016125d8565b6080820152949350505050565b6001600160601b038151168252602081015160018060a01b0380821660208501526040830151915081516040850152602082015160608501526060830151151560808501528060808401511660a085015250505050565b6001600160601b0384168152610100810161270b6020830185612696565b60ff831660e0830152949350505050565b60ff811681146121ed57600080fd5b80516125698161271c565b60006127446124af8461241e565b905082815283838301111561275857600080fd5b61221a836020830184612221565b600082601f83011261277757600080fd5b61221a83835160208501612736565b60006020828403121561279857600080fd5b81516001600160401b03808211156127af57600080fd5b9083019060e082860312156127c357600080fd5b6127cb61233a565b6127d483612589565b81526127e260208401612589565b60208201526127f36040840161272b565b604082015261280460608401612559565b6060820152612815608084016125d8565b608082015261282660a084016125d8565b60a082015260c08301518281111561283d57600080fd5b61284987828601612766565b60c08301525095945050505050565b6001600160601b038316815260e0810161221a6020830184612696565b60006020828403121561288757600080fd5b81516001600160401b0381111561289d57600080fd5b8201601f810184136128ae57600080fd5b6122f484825160208401612736565b6001600160601b03841681526001600160a01b03831660208201526060604082018190526000906128f090830184612245565b95945050505050565b60006020828403121561290b57600080fd5b5051919050565b6001600160401b03811681146121ed57600080fd5b60006020828403121561293957600080fd5b815161221a81612912565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561296c57600080fd5b815161221a8161271c565b60006020828403121561298957600080fd5b815164ffffffffff8116811461221a57600080fd5b600080604083850312156129b157600080fd5b82516129bc816123be565b60208401519092506129cd816123be565b809150509250929050565b601f821115612a2257600081815260208120601f850160051c810160208610156129ff5750805b601f850160051c820191505b81811015612a1e57828155600101612a0b565b5050505b505050565b81516001600160401b03811115612a4057612a406122fc565b612a5481612a4e845461251f565b846129d8565b602080601f831160018114612a895760008415612a715750858301515b600019600386901b1c1916600185901b178555612a1e565b600085815260208120601f198616915b82811015612ab857888601518255948401946001909101908401612a99565b5085821015612ad65787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a264697066735822122065260a0b7eab7a9114183cd191d9bef33159ec9b88894f527a2651342f2143c464736f6c63430008140033",
         | 
| 655 | 
            +
              "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063893d20e8116100b8578063b88da7591161007c578063b88da75914610417578063caf4e3d41461042a578063cc9fc59a14610432578063cde749f41461043a578063cf7a1d7714610442578063fb2cb1011461045557600080fd5b8063893d20e8146103a0578063946dfcfe146103a8578063a745e3df146103cf578063b3c65015146103e2578063b68d18091461040257600080fd5b80633f52c0f61161010a5780633f52c0f6146101f95780634420e4861461020c5780634d459c90146102375780634f421333146103505780635ab1bd5314610363578063644c45e01461038857600080fd5b806301ffc9a7146101475780630d8e6e2c146101895780630fec111c146101a5578063138461e0146101ba5780631eff4b22146101c4575b600080fd5b6101746101553660046121f0565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610191610466565b60405162ffffff9091168152602001610180565b6101ad6104f0565b6040516101809190612271565b6101c26106ae565b005b6101eb7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610180565b6101c261020736600461238c565b6108d0565b61021f61021a3660046123d3565b610a33565b6040516001600160601b039091168152602001610180565b6102f3610245366004612401565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152600080516020612b0783398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610180565b61017461035e366004612401565b610cd3565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610180565b600154600160a01b90046001600160601b031661021f565b610370610d86565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed901546101eb565b6101c26103dd366004612445565b610e9f565b6103ea610ff9565b6040516001600160401b039091168152602001610180565b60785b60405160ff9091168152602001610180565b6101916104253660046124e9565b61101a565b61037061106b565b610370611108565b610405611132565b6101c2610450366004612445565b6111b5565b6002546001600160a01b0316610370565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156104c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104eb9190612502565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b909104161515918101919091526001820180549192916060840191906105a09061251f565b80601f01602080910402602001604051908101604052809291908181526020018280546105cc9061251f565b80156106195780601f106105ee57610100808354040283529160200191610619565b820191906000526020600020905b8154815290600101906020018083116105fc57829003601f168201915b50505050508152505090506040518060e00160405280610637600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b031681526020016106926002546001600160a01b031690565b6001600160a01b03168152602001826060015181525091505090565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610710573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610734919061256e565b1561077b576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166107a45760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa1580156107ed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610811919061256e565b610839576040516372657a5160e01b81526001600160a01b0382166004820152602401610772565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610883573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a791906125a0565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b6000806108dd60786112be565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610921573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094591906125bb565b8351604051639ad69c6760e01b81526001600160601b0382166004820152919250906000906001600160a01b03841690639ad69c679060240160c060405180830381865afa15801561099b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bf91906125e3565b60408181018890525163bd5947e360e01b81529091506001600160a01b0385169063bd5947e3906109f9908590859060ff906004016126ed565b600060405180830381600087803b158015610a1357600080fd5b505af1158015610a27573d6000803e3d6000fd5b50505050505050505050565b600080808080610a4c866078610a47611560565b6115d7565b93509350935093506000610a5e61106b565b604051638fbc2d8160e01b81526001600160a01b03878116600483015286811660248301529190911690638fbc2d81906044016000604051808303816000875af1158015610ab0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ad89190810190612786565b90506000879050806001600160a01b031663138461e06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610b1a57600080fd5b505af1158015610b2e573d6000803e3d6000fd5b5050505081600001519650836001600160a01b0316630b24cf5f88836001600160a01b031663c200b8096040518163ffffffff1660e01b815260040160c060405180830381865afa158015610b87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bab91906125e3565b6040518363ffffffff1660e01b8152600401610bc8929190612858565b600060405180830381600087803b158015610be257600080fd5b505af1158015610bf6573d6000803e3d6000fd5b50505050610c02611108565b6001600160a01b03166386ebbf42848a846001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015610c50573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c789190810190612875565b6040518463ffffffff1660e01b8152600401610c96939291906128bd565b600060405180830381600087803b158015610cb057600080fd5b505af1158015610cc4573d6000803e3d6000fd5b50505050505050505050919050565b600080600080516020612b0783398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610d5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7f91906128f9565b1192915050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610deb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0f919061256e565b15610e8f57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610e6b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104eb91906125bb565b506002546001600160a01b031690565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610ec1610466565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610f01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f259190612927565b600080516020612ae78339815191528054600160401b900460ff1680610f58575080546001600160401b03808416911610155b15610f765760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610fa185856119a5565b610faa83611c44565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b60006104eb600080516020612ae7833981519152546001600160401b031690565b6000600080516020612b07833981519152600101828154811061103f5761103f612944565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b6000806110806001546001600160a01b031690565b6001600160a01b031663d39e604360285b611099611132565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156110de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110291906125bb565b92915050565b60008061111d6001546001600160a01b031690565b6001600160a01b031663d39e60436046611091565b600061113c610466565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015611191573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104eb919061295a565b600080516020612ae78339815191528054600160401b810460ff1615906001600160401b03166000811580156111e85750825b90506000826001600160401b031660011480156112045750303b155b905081158015611212575080155b156112305760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561125a57845460ff60401b1916600160401b1785555b61126488886119a5565b61126e8787611c4c565b83156112b457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c082015260015490919081906001600160a01b03166040516308b09a5f60e41b81523360048201529091506001600160a01b03821690638b09a5f090602401600060405180830381865afa15801561134d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113759190810190612786565b925061138b83604001518560ff90811691161490565b6113cd5760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b6044820152606401610772565b60208301516040516305247a1760e51b81526001600160601b0390911660048201526000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611423573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261144b9190810190612786565b6080015190508092506000836001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611494573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b891906125bb565b6080860151604051629b7b3560e61b81526001600160a01b0391821660048201529192508216906326decd4090602401602060405180830381865afa158015611505573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611529919061256e565b1561155857608085015160405163d53987e560e01b81526001600160a01b039091166004820152602401610772565b505050915091565b6040516368aebf7b60e01b81526064600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af41580156115b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104eb9190612927565b600154604051636939560f60e11b81526001600160a01b038581166004830152600092339284928392839291169063d272ac1e90602401602060405180830381865afa15801561162b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164f91906125a0565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156116aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ce919061256e565b156117055760405162b8422b60e71b81526001600160a01b03891660048201526001600160601b0382166024820152604401610772565b6040516301ffc9a760e01b8152636fb9922f60e11b60048201528895506001600160a01b038616906301ffc9a790602401602060405180830381865afa158015611753573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611777919061256e565b61179f576040516359bff0e360e11b81526001600160a01b0389166004820152602401610772565b6000856001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156117df573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118079190810190612786565b905061181e81604001518960ff9081169116141590565b1561185e576040808201519051634a2e948760e11b81526001600160a01b038b16600482015260ff808b1660248301529091166044820152606401610772565b60a08101516001600160a01b03868116908216146118b05760a0820151604051632b50a20960e21b81526001600160a01b03808d16600483015291821660248201529087166044820152606401610772565b816020015193506118c084611d77565b945060006118cc611108565b60405163081deaed60e11b81526001600160a01b0389811660048301526001600160401b038c1660248301528881166044830152919091169063103bd5da90606401602060405180830381865afa15801561192b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194f919061256e565b90508061199857604051636af540d960e01b81526001600160601b03861660048201526001600160401b038a1660248201526001600160a01b0388166044820152606401610772565b5050505093509350935093565b6119ad611e0e565b600080516020612b0783398151915260006119dd600080516020612ae7833981519152546001600160401b031690565b905060006119e9610466565b9050816001600160401b0316600103611a165760028301805462ffffff191662ffffff8316179055611a64565b600283015462ffffff90811690821611611a645760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b6044820152606401610772565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015611b18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3c9190612977565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf6890610fea9083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b610142611e0e565b600080516020612ae78339815191528054600160401b810460ff1615906001600160401b0316600081158015611c7f5750825b90506000826001600160401b03166001148015611c9b5750303b155b905081158015611ca9575080155b15611cc75760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611cf157845460ff60401b1916600160401b1785555b60008087806020019051810190611d08919061299e565b92509050611d16818a611e47565b611d26631fa9607b60e11b611eb2565b50508315611d6e57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b600080611d8c6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611ddb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e039190810190612786565b608001519392505050565b600080516020612ae783398151915254600160401b900460ff16611e4557604051631afcd79f60e31b815260040160405180910390fd5b565b60006078611e53611132565b6040805160ff9384166020820152929091169082015260600160405160208183030381529060405290506000611e8884611ed7565b90506000611e9b8583603c848888611f42565b611eab637b6a51fd60e01b611eb2565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015611f1e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110291906125a0565b611f836301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b611f8d828761200e565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101611ffd8382612a27565b50611d6e6303fb044760e21b611eb2565b6001600160a01b0382166120645760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e6572206973203000006044820152606401610772565b600280546001600160a01b0319166001600160a01b0384161790556120888161208c565b5050565b6001546001600160a01b0316156120c55760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610772565b6001600160a01b0381166120ec5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036121225760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610772565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526316c8f9ff60e01b60048201526301ffc9a790602401602060405180830381865afa92505050801561219c575060408051601f3d908101601f191682019092526121999181019061256e565b60015b6121c45760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610772565b806120885760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610772565b50565b60006020828403121561220257600080fd5b81356001600160e01b03198116811461221a57600080fd5b9392505050565b60005b8381101561223c578181015183820152602001612224565b50506000910152565b6000815180845261225d816020860160208601612221565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516122da60c08401826001600160a01b03169052565b5060c083015160e0808401526122f4610100840182612245565b949350505050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715612334576123346122fc565b60405290565b60405160e081016001600160401b0381118282101715612334576123346122fc565b604051601f8201601f191681016001600160401b0381118282101715612384576123846122fc565b604052919050565b60006040828403121561239e57600080fd5b6123a6612312565b82358152602083013560208201528091505092915050565b6001600160a01b03811681146121ed57600080fd5b6000602082840312156123e557600080fd5b813561221a816123be565b62ffffff811681146121ed57600080fd5b60006020828403121561241357600080fd5b813561221a816123f0565b60006001600160401b03821115612437576124376122fc565b50601f01601f191660200190565b60008060006060848603121561245a57600080fd5b8335612465816123be565b92506020840135612475816123be565b915060408401356001600160401b0381111561249057600080fd5b8401601f810186136124a157600080fd5b80356124b46124af8261241e565b61235c565b8181528760208385010111156124c957600080fd5b816020840160208301376000602083830101528093505050509250925092565b6000602082840312156124fb57600080fd5b5035919050565b60006020828403121561251457600080fd5b815161221a816123f0565b600181811c9082168061253357607f821691505b60208210810361255357634e487b7160e01b600052602260045260246000fd5b50919050565b8051801515811461256957600080fd5b919050565b60006020828403121561258057600080fd5b61221a82612559565b80516001600160601b038116811461256957600080fd5b6000602082840312156125b257600080fd5b61221a82612589565b6000602082840312156125cd57600080fd5b815161221a816123be565b8051612569816123be565b600081830360c08112156125f657600080fd5b60405160a081018181106001600160401b0382111715612618576126186122fc565b60405261262484612589565b81526020840151612634816123be565b60208201526040603f198301121561264b57600080fd5b612653612312565b9150604084015182526060840151602083015281604082015261267860808501612559565b606082015261268960a085016125d8565b6080820152949350505050565b6001600160601b038151168252602081015160018060a01b0380821660208501526040830151915081516040850152602082015160608501526060830151151560808501528060808401511660a085015250505050565b6001600160601b0384168152610100810161270b6020830185612696565b60ff831660e0830152949350505050565b60ff811681146121ed57600080fd5b80516125698161271c565b60006127446124af8461241e565b905082815283838301111561275857600080fd5b61221a836020830184612221565b600082601f83011261277757600080fd5b61221a83835160208501612736565b60006020828403121561279857600080fd5b81516001600160401b03808211156127af57600080fd5b9083019060e082860312156127c357600080fd5b6127cb61233a565b6127d483612589565b81526127e260208401612589565b60208201526127f36040840161272b565b604082015261280460608401612559565b6060820152612815608084016125d8565b608082015261282660a084016125d8565b60a082015260c08301518281111561283d57600080fd5b61284987828601612766565b60c08301525095945050505050565b6001600160601b038316815260e0810161221a6020830184612696565b60006020828403121561288757600080fd5b81516001600160401b0381111561289d57600080fd5b8201601f810184136128ae57600080fd5b6122f484825160208401612736565b6001600160601b03841681526001600160a01b03831660208201526060604082018190526000906128f090830184612245565b95945050505050565b60006020828403121561290b57600080fd5b5051919050565b6001600160401b03811681146121ed57600080fd5b60006020828403121561293957600080fd5b815161221a81612912565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561296c57600080fd5b815161221a8161271c565b60006020828403121561298957600080fd5b815164ffffffffff8116811461221a57600080fd5b600080604083850312156129b157600080fd5b82516129bc816123be565b60208401519092506129cd816123be565b809150509250929050565b601f821115612a2257600081815260208120601f850160051c810160208610156129ff5750805b601f850160051c820191505b81811015612a1e57828155600101612a0b565b5050505b505050565b81516001600160401b03811115612a4057612a406122fc565b612a5481612a4e845461251f565b846129d8565b602080601f831160018114612a895760008415612a715750858301515b600019600386901b1c1916600185901b178555612a1e565b600085815260208120601f198616915b82811015612ab857888601518255948401946001909101908401612a99565b5085821015612ad65787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a264697066735822122065260a0b7eab7a9114183cd191d9bef33159ec9b88894f527a2651342f2143c464736f6c63430008140033",
         | 
| 656 | 
            +
              "linkReferences": {
         | 
| 657 | 
            +
                "contracts/types/Blocknumber.sol": {
         | 
| 658 | 
            +
                  "BlocknumberLib": [
         | 
| 659 | 
            +
                    {
         | 
| 660 | 
            +
                      "length": 20,
         | 
| 661 | 
            +
                      "start": 3675
         | 
| 662 | 
            +
                    }
         | 
| 663 | 
            +
                  ]
         | 
| 664 | 
            +
                },
         | 
| 665 | 
            +
                "contracts/types/NftId.sol": {
         | 
| 666 | 
            +
                  "NftIdLib": [
         | 
| 667 | 
            +
                    {
         | 
| 668 | 
            +
                      "length": 20,
         | 
| 669 | 
            +
                      "start": 2064
         | 
| 670 | 
            +
                    },
         | 
| 671 | 
            +
                    {
         | 
| 672 | 
            +
                      "length": 20,
         | 
| 673 | 
            +
                      "start": 3819
         | 
| 674 | 
            +
                    },
         | 
| 675 | 
            +
                    {
         | 
| 676 | 
            +
                      "length": 20,
         | 
| 677 | 
            +
                      "start": 6058
         | 
| 678 | 
            +
                    }
         | 
| 679 | 
            +
                  ]
         | 
| 680 | 
            +
                },
         | 
| 681 | 
            +
                "contracts/types/RoleId.sol": {
         | 
| 682 | 
            +
                  "RoleIdLib": [
         | 
| 683 | 
            +
                    {
         | 
| 684 | 
            +
                      "length": 20,
         | 
| 685 | 
            +
                      "start": 5811
         | 
| 686 | 
            +
                    }
         | 
| 687 | 
            +
                  ]
         | 
| 688 | 
            +
                },
         | 
| 689 | 
            +
                "contracts/types/Timestamp.sol": {
         | 
| 690 | 
            +
                  "TimestampLib": [
         | 
| 691 | 
            +
                    {
         | 
| 692 | 
            +
                      "length": 20,
         | 
| 693 | 
            +
                      "start": 7192
         | 
| 694 | 
            +
                    }
         | 
| 695 | 
            +
                  ]
         | 
| 696 | 
            +
                },
         | 
| 697 | 
            +
                "contracts/types/Version.sol": {
         | 
| 698 | 
            +
                  "VersionLib": [
         | 
| 699 | 
            +
                    {
         | 
| 700 | 
            +
                      "length": 20,
         | 
| 701 | 
            +
                      "start": 1479
         | 
| 702 | 
            +
                    },
         | 
| 703 | 
            +
                    {
         | 
| 704 | 
            +
                      "length": 20,
         | 
| 705 | 
            +
                      "start": 4059
         | 
| 706 | 
            +
                    },
         | 
| 707 | 
            +
                    {
         | 
| 708 | 
            +
                      "length": 20,
         | 
| 709 | 
            +
                      "start": 4753
         | 
| 710 | 
            +
                    }
         | 
| 711 | 
            +
                  ]
         | 
| 712 | 
            +
                }
         | 
| 713 | 
            +
              },
         | 
| 714 | 
            +
              "deployedLinkReferences": {
         | 
| 715 | 
            +
                "contracts/types/Blocknumber.sol": {
         | 
| 716 | 
            +
                  "BlocknumberLib": [
         | 
| 717 | 
            +
                    {
         | 
| 718 | 
            +
                      "length": 20,
         | 
| 719 | 
            +
                      "start": 3361
         | 
| 720 | 
            +
                    }
         | 
| 721 | 
            +
                  ]
         | 
| 722 | 
            +
                },
         | 
| 723 | 
            +
                "contracts/types/NftId.sol": {
         | 
| 724 | 
            +
                  "NftIdLib": [
         | 
| 725 | 
            +
                    {
         | 
| 726 | 
            +
                      "length": 20,
         | 
| 727 | 
            +
                      "start": 1750
         | 
| 728 | 
            +
                    },
         | 
| 729 | 
            +
                    {
         | 
| 730 | 
            +
                      "length": 20,
         | 
| 731 | 
            +
                      "start": 3505
         | 
| 732 | 
            +
                    },
         | 
| 733 | 
            +
                    {
         | 
| 734 | 
            +
                      "length": 20,
         | 
| 735 | 
            +
                      "start": 5744
         | 
| 736 | 
            +
                    }
         | 
| 737 | 
            +
                  ]
         | 
| 738 | 
            +
                },
         | 
| 739 | 
            +
                "contracts/types/RoleId.sol": {
         | 
| 740 | 
            +
                  "RoleIdLib": [
         | 
| 741 | 
            +
                    {
         | 
| 742 | 
            +
                      "length": 20,
         | 
| 743 | 
            +
                      "start": 5497
         | 
| 744 | 
            +
                    }
         | 
| 745 | 
            +
                  ]
         | 
| 746 | 
            +
                },
         | 
| 747 | 
            +
                "contracts/types/Timestamp.sol": {
         | 
| 748 | 
            +
                  "TimestampLib": [
         | 
| 749 | 
            +
                    {
         | 
| 750 | 
            +
                      "length": 20,
         | 
| 751 | 
            +
                      "start": 6878
         | 
| 752 | 
            +
                    }
         | 
| 753 | 
            +
                  ]
         | 
| 754 | 
            +
                },
         | 
| 755 | 
            +
                "contracts/types/Version.sol": {
         | 
| 756 | 
            +
                  "VersionLib": [
         | 
| 757 | 
            +
                    {
         | 
| 758 | 
            +
                      "length": 20,
         | 
| 759 | 
            +
                      "start": 1165
         | 
| 760 | 
            +
                    },
         | 
| 761 | 
            +
                    {
         | 
| 762 | 
            +
                      "length": 20,
         | 
| 763 | 
            +
                      "start": 3745
         | 
| 764 | 
            +
                    },
         | 
| 765 | 
            +
                    {
         | 
| 766 | 
            +
                      "length": 20,
         | 
| 767 | 
            +
                      "start": 4439
         | 
| 768 | 
            +
                    }
         | 
| 769 | 
            +
                  ]
         | 
| 770 | 
            +
                }
         | 
| 771 | 
            +
              }
         | 
| 772 | 
            +
            }
         |