@1delta/abis 0.0.13 → 0.0.15
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/dist/fluid/vaultResolver.d.ts +388 -0
- package/dist/fluid/vaultResolver.d.ts.map +1 -1
- package/dist/fluid/vaultResolver.js +532 -5
- package/dist/gearbox/addressProviderV310.d.ts +17 -0
- package/dist/gearbox/addressProviderV310.d.ts.map +1 -0
- package/dist/gearbox/addressProviderV310.js +24 -0
- package/dist/gearbox/creditAccountCompressorV310.d.ts +203 -0
- package/dist/gearbox/creditAccountCompressorV310.d.ts.map +1 -0
- package/dist/gearbox/creditAccountCompressorV310.js +140 -0
- package/dist/gearbox/creditFacadeV3.d.ts +59 -0
- package/dist/gearbox/creditFacadeV3.d.ts.map +1 -0
- package/dist/gearbox/creditFacadeV3.js +59 -0
- package/dist/gearbox/creditManagerV3.d.ts +156 -0
- package/dist/gearbox/creditManagerV3.d.ts.map +1 -0
- package/dist/gearbox/creditManagerV3.js +108 -0
- package/dist/gearbox/index.d.ts +9 -0
- package/dist/gearbox/index.d.ts.map +1 -0
- package/dist/gearbox/index.js +11 -0
- package/dist/gearbox/marketCompressorV310.d.ts +555 -0
- package/dist/gearbox/marketCompressorV310.d.ts.map +1 -0
- package/dist/gearbox/marketCompressorV310.js +619 -0
- package/dist/gearbox/poolQuotaKeeperV3.d.ts +65 -0
- package/dist/gearbox/poolQuotaKeeperV3.d.ts.map +1 -0
- package/dist/gearbox/poolQuotaKeeperV3.js +52 -0
- package/dist/gearbox/poolV3.d.ts +152 -0
- package/dist/gearbox/poolV3.d.ts.map +1 -0
- package/dist/gearbox/poolV3.js +133 -0
- package/dist/gearbox/priceOracleV3.d.ts +35 -0
- package/dist/gearbox/priceOracleV3.d.ts.map +1 -0
- package/dist/gearbox/priceOracleV3.js +28 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/package.json +5 -5
|
@@ -691,5 +691,393 @@ export declare const FluidVaultResolverAbi: readonly [{
|
|
|
691
691
|
}];
|
|
692
692
|
readonly stateMutability: "view";
|
|
693
693
|
readonly type: "function";
|
|
694
|
+
}, {
|
|
695
|
+
readonly inputs: readonly [{
|
|
696
|
+
readonly name: "user_";
|
|
697
|
+
readonly type: "address";
|
|
698
|
+
}];
|
|
699
|
+
readonly name: "positionsByUser";
|
|
700
|
+
readonly outputs: readonly [{
|
|
701
|
+
readonly components: readonly [{
|
|
702
|
+
readonly name: "nftId";
|
|
703
|
+
readonly type: "uint256";
|
|
704
|
+
}, {
|
|
705
|
+
readonly name: "owner";
|
|
706
|
+
readonly type: "address";
|
|
707
|
+
}, {
|
|
708
|
+
readonly name: "isLiquidated";
|
|
709
|
+
readonly type: "bool";
|
|
710
|
+
}, {
|
|
711
|
+
readonly name: "isSupplyPosition";
|
|
712
|
+
readonly type: "bool";
|
|
713
|
+
}, {
|
|
714
|
+
readonly name: "tick";
|
|
715
|
+
readonly type: "int256";
|
|
716
|
+
}, {
|
|
717
|
+
readonly name: "tickId";
|
|
718
|
+
readonly type: "uint256";
|
|
719
|
+
}, {
|
|
720
|
+
readonly name: "beforeSupply";
|
|
721
|
+
readonly type: "uint256";
|
|
722
|
+
}, {
|
|
723
|
+
readonly name: "beforeBorrow";
|
|
724
|
+
readonly type: "uint256";
|
|
725
|
+
}, {
|
|
726
|
+
readonly name: "beforeDustBorrow";
|
|
727
|
+
readonly type: "uint256";
|
|
728
|
+
}, {
|
|
729
|
+
readonly name: "supply";
|
|
730
|
+
readonly type: "uint256";
|
|
731
|
+
}, {
|
|
732
|
+
readonly name: "borrow";
|
|
733
|
+
readonly type: "uint256";
|
|
734
|
+
}, {
|
|
735
|
+
readonly name: "dustBorrow";
|
|
736
|
+
readonly type: "uint256";
|
|
737
|
+
}];
|
|
738
|
+
readonly name: "userPositions_";
|
|
739
|
+
readonly type: "tuple[]";
|
|
740
|
+
}, {
|
|
741
|
+
readonly components: readonly [{
|
|
742
|
+
readonly name: "vault";
|
|
743
|
+
readonly type: "address";
|
|
744
|
+
}, {
|
|
745
|
+
readonly name: "isSmartCol";
|
|
746
|
+
readonly type: "bool";
|
|
747
|
+
}, {
|
|
748
|
+
readonly name: "isSmartDebt";
|
|
749
|
+
readonly type: "bool";
|
|
750
|
+
}, {
|
|
751
|
+
readonly components: readonly [{
|
|
752
|
+
readonly name: "liquidity";
|
|
753
|
+
readonly type: "address";
|
|
754
|
+
}, {
|
|
755
|
+
readonly name: "factory";
|
|
756
|
+
readonly type: "address";
|
|
757
|
+
}, {
|
|
758
|
+
readonly name: "operateImplementation";
|
|
759
|
+
readonly type: "address";
|
|
760
|
+
}, {
|
|
761
|
+
readonly name: "adminImplementation";
|
|
762
|
+
readonly type: "address";
|
|
763
|
+
}, {
|
|
764
|
+
readonly name: "secondaryImplementation";
|
|
765
|
+
readonly type: "address";
|
|
766
|
+
}, {
|
|
767
|
+
readonly name: "deployer";
|
|
768
|
+
readonly type: "address";
|
|
769
|
+
}, {
|
|
770
|
+
readonly name: "supply";
|
|
771
|
+
readonly type: "address";
|
|
772
|
+
}, {
|
|
773
|
+
readonly name: "borrow";
|
|
774
|
+
readonly type: "address";
|
|
775
|
+
}, {
|
|
776
|
+
readonly components: readonly [{
|
|
777
|
+
readonly name: "token0";
|
|
778
|
+
readonly type: "address";
|
|
779
|
+
}, {
|
|
780
|
+
readonly name: "token1";
|
|
781
|
+
readonly type: "address";
|
|
782
|
+
}];
|
|
783
|
+
readonly name: "supplyToken";
|
|
784
|
+
readonly type: "tuple";
|
|
785
|
+
}, {
|
|
786
|
+
readonly components: readonly [{
|
|
787
|
+
readonly name: "token0";
|
|
788
|
+
readonly type: "address";
|
|
789
|
+
}, {
|
|
790
|
+
readonly name: "token1";
|
|
791
|
+
readonly type: "address";
|
|
792
|
+
}];
|
|
793
|
+
readonly name: "borrowToken";
|
|
794
|
+
readonly type: "tuple";
|
|
795
|
+
}, {
|
|
796
|
+
readonly name: "vaultId";
|
|
797
|
+
readonly type: "uint256";
|
|
798
|
+
}, {
|
|
799
|
+
readonly name: "vaultType";
|
|
800
|
+
readonly type: "uint256";
|
|
801
|
+
}, {
|
|
802
|
+
readonly name: "supplyExchangePriceSlot";
|
|
803
|
+
readonly type: "bytes32";
|
|
804
|
+
}, {
|
|
805
|
+
readonly name: "borrowExchangePriceSlot";
|
|
806
|
+
readonly type: "bytes32";
|
|
807
|
+
}, {
|
|
808
|
+
readonly name: "userSupplySlot";
|
|
809
|
+
readonly type: "bytes32";
|
|
810
|
+
}, {
|
|
811
|
+
readonly name: "userBorrowSlot";
|
|
812
|
+
readonly type: "bytes32";
|
|
813
|
+
}];
|
|
814
|
+
readonly name: "constantVariables";
|
|
815
|
+
readonly type: "tuple";
|
|
816
|
+
}, {
|
|
817
|
+
readonly components: readonly [{
|
|
818
|
+
readonly name: "supplyRateMagnifier";
|
|
819
|
+
readonly type: "uint16";
|
|
820
|
+
}, {
|
|
821
|
+
readonly name: "borrowRateMagnifier";
|
|
822
|
+
readonly type: "uint16";
|
|
823
|
+
}, {
|
|
824
|
+
readonly name: "collateralFactor";
|
|
825
|
+
readonly type: "uint16";
|
|
826
|
+
}, {
|
|
827
|
+
readonly name: "liquidationThreshold";
|
|
828
|
+
readonly type: "uint16";
|
|
829
|
+
}, {
|
|
830
|
+
readonly name: "liquidationMaxLimit";
|
|
831
|
+
readonly type: "uint16";
|
|
832
|
+
}, {
|
|
833
|
+
readonly name: "withdrawalGap";
|
|
834
|
+
readonly type: "uint16";
|
|
835
|
+
}, {
|
|
836
|
+
readonly name: "liquidationPenalty";
|
|
837
|
+
readonly type: "uint16";
|
|
838
|
+
}, {
|
|
839
|
+
readonly name: "borrowFee";
|
|
840
|
+
readonly type: "uint16";
|
|
841
|
+
}, {
|
|
842
|
+
readonly name: "oracle";
|
|
843
|
+
readonly type: "address";
|
|
844
|
+
}, {
|
|
845
|
+
readonly name: "oraclePriceOperate";
|
|
846
|
+
readonly type: "uint256";
|
|
847
|
+
}, {
|
|
848
|
+
readonly name: "oraclePriceLiquidate";
|
|
849
|
+
readonly type: "uint256";
|
|
850
|
+
}, {
|
|
851
|
+
readonly name: "rebalancer";
|
|
852
|
+
readonly type: "address";
|
|
853
|
+
}, {
|
|
854
|
+
readonly name: "lastUpdateTimestamp";
|
|
855
|
+
readonly type: "uint256";
|
|
856
|
+
}];
|
|
857
|
+
readonly name: "configs";
|
|
858
|
+
readonly type: "tuple";
|
|
859
|
+
}, {
|
|
860
|
+
readonly components: readonly [{
|
|
861
|
+
readonly name: "lastStoredLiquiditySupplyExchangePrice";
|
|
862
|
+
readonly type: "uint256";
|
|
863
|
+
}, {
|
|
864
|
+
readonly name: "lastStoredLiquidityBorrowExchangePrice";
|
|
865
|
+
readonly type: "uint256";
|
|
866
|
+
}, {
|
|
867
|
+
readonly name: "lastStoredVaultSupplyExchangePrice";
|
|
868
|
+
readonly type: "uint256";
|
|
869
|
+
}, {
|
|
870
|
+
readonly name: "lastStoredVaultBorrowExchangePrice";
|
|
871
|
+
readonly type: "uint256";
|
|
872
|
+
}, {
|
|
873
|
+
readonly name: "liquiditySupplyExchangePrice";
|
|
874
|
+
readonly type: "uint256";
|
|
875
|
+
}, {
|
|
876
|
+
readonly name: "liquidityBorrowExchangePrice";
|
|
877
|
+
readonly type: "uint256";
|
|
878
|
+
}, {
|
|
879
|
+
readonly name: "vaultSupplyExchangePrice";
|
|
880
|
+
readonly type: "uint256";
|
|
881
|
+
}, {
|
|
882
|
+
readonly name: "vaultBorrowExchangePrice";
|
|
883
|
+
readonly type: "uint256";
|
|
884
|
+
}, {
|
|
885
|
+
readonly name: "supplyRateLiquidity";
|
|
886
|
+
readonly type: "uint256";
|
|
887
|
+
}, {
|
|
888
|
+
readonly name: "borrowRateLiquidity";
|
|
889
|
+
readonly type: "uint256";
|
|
890
|
+
}, {
|
|
891
|
+
readonly name: "supplyRateVault";
|
|
892
|
+
readonly type: "int256";
|
|
893
|
+
}, {
|
|
894
|
+
readonly name: "borrowRateVault";
|
|
895
|
+
readonly type: "int256";
|
|
896
|
+
}, {
|
|
897
|
+
readonly name: "rewardsOrFeeRateSupply";
|
|
898
|
+
readonly type: "int256";
|
|
899
|
+
}, {
|
|
900
|
+
readonly name: "rewardsOrFeeRateBorrow";
|
|
901
|
+
readonly type: "int256";
|
|
902
|
+
}];
|
|
903
|
+
readonly name: "exchangePricesAndRates";
|
|
904
|
+
readonly type: "tuple";
|
|
905
|
+
}, {
|
|
906
|
+
readonly components: readonly [{
|
|
907
|
+
readonly name: "totalSupplyVault";
|
|
908
|
+
readonly type: "uint256";
|
|
909
|
+
}, {
|
|
910
|
+
readonly name: "totalBorrowVault";
|
|
911
|
+
readonly type: "uint256";
|
|
912
|
+
}, {
|
|
913
|
+
readonly name: "totalSupplyLiquidityOrDex";
|
|
914
|
+
readonly type: "uint256";
|
|
915
|
+
}, {
|
|
916
|
+
readonly name: "totalBorrowLiquidityOrDex";
|
|
917
|
+
readonly type: "uint256";
|
|
918
|
+
}, {
|
|
919
|
+
readonly name: "absorbedSupply";
|
|
920
|
+
readonly type: "uint256";
|
|
921
|
+
}, {
|
|
922
|
+
readonly name: "absorbedBorrow";
|
|
923
|
+
readonly type: "uint256";
|
|
924
|
+
}];
|
|
925
|
+
readonly name: "totalSupplyAndBorrow";
|
|
926
|
+
readonly type: "tuple";
|
|
927
|
+
}, {
|
|
928
|
+
readonly components: readonly [{
|
|
929
|
+
readonly name: "withdrawLimit";
|
|
930
|
+
readonly type: "uint256";
|
|
931
|
+
}, {
|
|
932
|
+
readonly name: "withdrawableUntilLimit";
|
|
933
|
+
readonly type: "uint256";
|
|
934
|
+
}, {
|
|
935
|
+
readonly name: "withdrawable";
|
|
936
|
+
readonly type: "uint256";
|
|
937
|
+
}, {
|
|
938
|
+
readonly name: "borrowLimit";
|
|
939
|
+
readonly type: "uint256";
|
|
940
|
+
}, {
|
|
941
|
+
readonly name: "borrowableUntilLimit";
|
|
942
|
+
readonly type: "uint256";
|
|
943
|
+
}, {
|
|
944
|
+
readonly name: "borrowable";
|
|
945
|
+
readonly type: "uint256";
|
|
946
|
+
}, {
|
|
947
|
+
readonly name: "borrowLimitUtilization";
|
|
948
|
+
readonly type: "uint256";
|
|
949
|
+
}, {
|
|
950
|
+
readonly name: "minimumBorrowing";
|
|
951
|
+
readonly type: "uint256";
|
|
952
|
+
}];
|
|
953
|
+
readonly name: "limitsAndAvailability";
|
|
954
|
+
readonly type: "tuple";
|
|
955
|
+
}, {
|
|
956
|
+
readonly components: readonly [{
|
|
957
|
+
readonly name: "totalPositions";
|
|
958
|
+
readonly type: "uint256";
|
|
959
|
+
}, {
|
|
960
|
+
readonly name: "topTick";
|
|
961
|
+
readonly type: "int256";
|
|
962
|
+
}, {
|
|
963
|
+
readonly name: "currentBranch";
|
|
964
|
+
readonly type: "uint256";
|
|
965
|
+
}, {
|
|
966
|
+
readonly name: "totalBranch";
|
|
967
|
+
readonly type: "uint256";
|
|
968
|
+
}, {
|
|
969
|
+
readonly name: "totalBorrow";
|
|
970
|
+
readonly type: "uint256";
|
|
971
|
+
}, {
|
|
972
|
+
readonly name: "totalSupply";
|
|
973
|
+
readonly type: "uint256";
|
|
974
|
+
}, {
|
|
975
|
+
readonly components: readonly [{
|
|
976
|
+
readonly name: "status";
|
|
977
|
+
readonly type: "uint256";
|
|
978
|
+
}, {
|
|
979
|
+
readonly name: "minimaTick";
|
|
980
|
+
readonly type: "int256";
|
|
981
|
+
}, {
|
|
982
|
+
readonly name: "debtFactor";
|
|
983
|
+
readonly type: "uint256";
|
|
984
|
+
}, {
|
|
985
|
+
readonly name: "partials";
|
|
986
|
+
readonly type: "uint256";
|
|
987
|
+
}, {
|
|
988
|
+
readonly name: "debtLiquidity";
|
|
989
|
+
readonly type: "uint256";
|
|
990
|
+
}, {
|
|
991
|
+
readonly name: "baseBranchId";
|
|
992
|
+
readonly type: "uint256";
|
|
993
|
+
}, {
|
|
994
|
+
readonly name: "baseBranchMinima";
|
|
995
|
+
readonly type: "int256";
|
|
996
|
+
}];
|
|
997
|
+
readonly name: "currentBranchState";
|
|
998
|
+
readonly type: "tuple";
|
|
999
|
+
}];
|
|
1000
|
+
readonly name: "vaultState";
|
|
1001
|
+
readonly type: "tuple";
|
|
1002
|
+
}, {
|
|
1003
|
+
readonly components: readonly [{
|
|
1004
|
+
readonly name: "modeWithInterest";
|
|
1005
|
+
readonly type: "bool";
|
|
1006
|
+
}, {
|
|
1007
|
+
readonly name: "supply";
|
|
1008
|
+
readonly type: "uint256";
|
|
1009
|
+
}, {
|
|
1010
|
+
readonly name: "withdrawalLimit";
|
|
1011
|
+
readonly type: "uint256";
|
|
1012
|
+
}, {
|
|
1013
|
+
readonly name: "lastUpdateTimestamp";
|
|
1014
|
+
readonly type: "uint256";
|
|
1015
|
+
}, {
|
|
1016
|
+
readonly name: "expandPercent";
|
|
1017
|
+
readonly type: "uint256";
|
|
1018
|
+
}, {
|
|
1019
|
+
readonly name: "expandDuration";
|
|
1020
|
+
readonly type: "uint256";
|
|
1021
|
+
}, {
|
|
1022
|
+
readonly name: "baseWithdrawalLimit";
|
|
1023
|
+
readonly type: "uint256";
|
|
1024
|
+
}, {
|
|
1025
|
+
readonly name: "withdrawableUntilLimit";
|
|
1026
|
+
readonly type: "uint256";
|
|
1027
|
+
}, {
|
|
1028
|
+
readonly name: "withdrawable";
|
|
1029
|
+
readonly type: "uint256";
|
|
1030
|
+
}, {
|
|
1031
|
+
readonly name: "decayEndTimestamp";
|
|
1032
|
+
readonly type: "uint256";
|
|
1033
|
+
}, {
|
|
1034
|
+
readonly name: "decayAmount";
|
|
1035
|
+
readonly type: "uint256";
|
|
1036
|
+
}];
|
|
1037
|
+
readonly name: "liquidityUserSupplyData";
|
|
1038
|
+
readonly type: "tuple";
|
|
1039
|
+
}, {
|
|
1040
|
+
readonly components: readonly [{
|
|
1041
|
+
readonly name: "modeWithInterest";
|
|
1042
|
+
readonly type: "bool";
|
|
1043
|
+
}, {
|
|
1044
|
+
readonly name: "borrow";
|
|
1045
|
+
readonly type: "uint256";
|
|
1046
|
+
}, {
|
|
1047
|
+
readonly name: "borrowLimit";
|
|
1048
|
+
readonly type: "uint256";
|
|
1049
|
+
}, {
|
|
1050
|
+
readonly name: "lastUpdateTimestamp";
|
|
1051
|
+
readonly type: "uint256";
|
|
1052
|
+
}, {
|
|
1053
|
+
readonly name: "expandPercent";
|
|
1054
|
+
readonly type: "uint256";
|
|
1055
|
+
}, {
|
|
1056
|
+
readonly name: "expandDuration";
|
|
1057
|
+
readonly type: "uint256";
|
|
1058
|
+
}, {
|
|
1059
|
+
readonly name: "baseBorrowLimit";
|
|
1060
|
+
readonly type: "uint256";
|
|
1061
|
+
}, {
|
|
1062
|
+
readonly name: "maxBorrowLimit";
|
|
1063
|
+
readonly type: "uint256";
|
|
1064
|
+
}, {
|
|
1065
|
+
readonly name: "borrowableUntilLimit";
|
|
1066
|
+
readonly type: "uint256";
|
|
1067
|
+
}, {
|
|
1068
|
+
readonly name: "borrowable";
|
|
1069
|
+
readonly type: "uint256";
|
|
1070
|
+
}, {
|
|
1071
|
+
readonly name: "borrowLimitUtilization";
|
|
1072
|
+
readonly type: "uint256";
|
|
1073
|
+
}];
|
|
1074
|
+
readonly name: "liquidityUserBorrowData";
|
|
1075
|
+
readonly type: "tuple";
|
|
1076
|
+
}];
|
|
1077
|
+
readonly name: "vaultsData_";
|
|
1078
|
+
readonly type: "tuple[]";
|
|
1079
|
+
}];
|
|
1080
|
+
readonly stateMutability: "view";
|
|
1081
|
+
readonly type: "function";
|
|
694
1082
|
}];
|
|
695
1083
|
//# sourceMappingURL=vaultResolver.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vaultResolver.d.ts","sourceRoot":"","sources":["../../src/fluid/vaultResolver.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"vaultResolver.d.ts","sourceRoot":"","sources":["../../src/fluid/vaultResolver.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA67CxB,CAAA"}
|