gitextract_icvkxvr6/ ├── .gitignore ├── LICENSE.md ├── README.md ├── Reinforced.Typings/ │ ├── AccessModifier.cs │ ├── Ast/ │ │ ├── Dependency/ │ │ │ ├── RtImport.cs │ │ │ └── RtReference.cs │ │ ├── DocTag.cs │ │ ├── IDecoratable.cs │ │ ├── IRtVisitor.cs │ │ ├── ITypeMember.cs │ │ ├── JsdocTagAttribute.cs │ │ ├── RtArgument.cs │ │ ├── RtClass.cs │ │ ├── RtCompilationUnit.cs │ │ ├── RtConstructor.cs │ │ ├── RtDecorator.cs │ │ ├── RtEnum.cs │ │ ├── RtEnumValue.cs │ │ ├── RtField.cs │ │ ├── RtFunction.cs │ │ ├── RtIdentifier.cs │ │ ├── RtInterface.cs │ │ ├── RtJsdocNode.cs │ │ ├── RtMember.cs │ │ ├── RtNamespace.cs │ │ ├── RtNode.cs │ │ ├── RtRaw.cs │ │ └── TypeNames/ │ │ ├── RtArrayType.cs │ │ ├── RtAsyncType.cs │ │ ├── RtDelegateType.cs │ │ ├── RtDictionaryType.cs │ │ ├── RtSimpleTypeName.cs │ │ ├── RtTuple.cs │ │ └── RtTypeName.cs │ ├── Attributes/ │ │ ├── IAutoexportSwitchAttribute.cs │ │ ├── TsAddTypeImportAttribute.cs │ │ ├── TsAddTypeReference.cs │ │ ├── TsAttributeBase.cs │ │ ├── TsBaseParamAttribute.cs │ │ ├── TsClassAttribute.cs │ │ ├── TsDeclarationAttributeBase.cs │ │ ├── TsDecoratorAttribute.cs │ │ ├── TsEnumAttribute.cs │ │ ├── TsFileAttribute.cs │ │ ├── TsFunctionAttribute.cs │ │ ├── TsGenericAttribute.cs │ │ ├── TsGlobalAttribute.cs │ │ ├── TsIgnoreAttribute.cs │ │ ├── TsImportAttribute.cs │ │ ├── TsInterfaceAttribute.cs │ │ ├── TsParameterAttribute.cs │ │ ├── TsPropertyAttribute.cs │ │ ├── TsReferenceAttribute.cs │ │ ├── TsThirdPartyAttribute.cs │ │ ├── TsTypedAttributeBase.cs │ │ ├── TsTypedMemberAttributeBase.cs │ │ └── TsValueAttribute.cs │ ├── DictionaryExtensions.cs │ ├── Exceptions/ │ │ ├── ErrorMessage.cs │ │ ├── ErrorMessages.cs │ │ ├── RtException.cs │ │ └── RtWarning.cs │ ├── ExportContext/ │ │ ├── ExportContext.Configurables.cs │ │ ├── ExportContext.Initialization.cs │ │ ├── ExportContext.Operations.cs │ │ ├── ExportContext.Readonly.cs │ │ ├── ExportContext.cs │ │ └── IWarningsCollector.cs │ ├── ExportedFile.cs │ ├── FilesOperations.cs │ ├── Fluent/ │ │ ├── ConfigurationBuilder.cs │ │ ├── ConfigurationBuilderExtensions.cs │ │ ├── GlobalConfigurationBuilder.cs │ │ ├── InferringExtensions.cs │ │ ├── LambdaHelpers.cs │ │ ├── MemberBuilders/ │ │ │ ├── MemberExportBuilder.EnumValue.cs │ │ │ ├── MemberExportBuilder.Field.cs │ │ │ ├── MemberExportBuilder.Method.cs │ │ │ ├── MemberExportBuilder.Parameter.cs │ │ │ ├── MemberExportBuilder.Property.cs │ │ │ └── MemberExportBuilder.cs │ │ ├── MemberExtensions/ │ │ │ ├── MemberExportExtensions.EnumValue.cs │ │ │ ├── MemberExportExtensions.Method.cs │ │ │ ├── MemberExportExtensions.Parameter.cs │ │ │ ├── MemberExportExtensions.Property.cs │ │ │ └── MemberExportExtensions.cs │ │ ├── Parameter.cs │ │ ├── TypeBuilders/ │ │ │ ├── TypeExportBuilder.Class.cs │ │ │ ├── TypeExportBuilder.ClassOrInterface.cs │ │ │ ├── TypeExportBuilder.Class`1.cs │ │ │ ├── TypeExportBuilder.Enum.cs │ │ │ ├── TypeExportBuilder.Interface.cs │ │ │ ├── TypeExportBuilder.Interface`1.cs │ │ │ ├── TypeExportBuilder.ThirdParty.cs │ │ │ ├── TypeExportBuilder.ThirdParty`1.cs │ │ │ └── TypeExportBuilder.cs │ │ ├── TypeExtensions/ │ │ │ ├── TypeExportExtensions.All.NamesAndNamespaces.cs │ │ │ ├── TypeExportExtensions.All.ReferencesAndImports.cs │ │ │ ├── TypeExportExtensions.All.Substitutions.cs │ │ │ ├── TypeExportExtensions.All.ThirdParty.cs │ │ │ ├── TypeExportExtensions.Class.cs │ │ │ ├── TypeExportExtensions.Enum.cs │ │ │ ├── TypeExportExtensions.Interface.cs │ │ │ └── TypeExportExtensions.cs │ │ └── WithExtensions/ │ │ ├── WithExtensions.Fields.cs │ │ ├── WithExtensions.Methods.cs │ │ └── WithExtensions.Properties.cs │ ├── GeneratorManager.cs │ ├── Generators/ │ │ ├── ClassAndInterfaceGeneratorBase.cs │ │ ├── ClassCodeGenerator.cs │ │ ├── ConstructorCodeGenerator.cs │ │ ├── ContextExtensions.cs │ │ ├── EnumGenerator.cs │ │ ├── FieldCodeGenerator.cs │ │ ├── ITsCodeGenerator.cs │ │ ├── InterfaceCodeGenerator.cs │ │ ├── MethodCodeGenerator.cs │ │ ├── NamespaceCodeGenerator.cs │ │ ├── ParameterCodeGenerator.cs │ │ ├── PropertyCodeGenerator.cs │ │ └── TsCodeGeneratorBase.cs │ ├── GlobalParameters.cs │ ├── IFilesOperations.cs │ ├── InlineTypeInferers.cs │ ├── Location.cs │ ├── ProjectBlueprint.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── ReferencesInspection/ │ │ ├── ImportComparer.cs │ │ ├── InspectedReferences.cs │ │ ├── ReferenceComparer.cs │ │ └── ReferenceProcessorBase.cs │ ├── Reinforced.Typings.Dev.csproj │ ├── Reinforced.Typings.NETCore.csproj │ ├── Reinforced.Typings.csproj │ ├── Reinforced_pub.snk │ ├── Sign.cs │ ├── TsExporter.cs │ ├── TypeBlueprint.cs │ ├── TypeExtensions.cs │ ├── TypeResolver.cs │ ├── Visitors/ │ │ ├── TextExportingVisitor.cs │ │ ├── TypeScript/ │ │ │ ├── TypeScriptExportVisitor.Dependencies.cs │ │ │ ├── TypeScriptExportVisitor.RtArgument.cs │ │ │ ├── TypeScriptExportVisitor.RtClass.cs │ │ │ ├── TypeScriptExportVisitor.RtConstructor.cs │ │ │ ├── TypeScriptExportVisitor.RtEnum.cs │ │ │ ├── TypeScriptExportVisitor.RtEnumValue.cs │ │ │ ├── TypeScriptExportVisitor.RtField.cs │ │ │ ├── TypeScriptExportVisitor.RtFunction.cs │ │ │ ├── TypeScriptExportVisitor.RtIdentifier.cs │ │ │ ├── TypeScriptExportVisitor.RtInterface.cs │ │ │ ├── TypeScriptExportVisitor.RtJsdocNode.cs │ │ │ ├── TypeScriptExportVisitor.RtNamespace.cs │ │ │ ├── TypeScriptExportVisitor.RtRaw.cs │ │ │ ├── TypeScriptExportVisitor.cs │ │ │ └── Types/ │ │ │ ├── TypeScriptExportVisitor.RtArrayType.cs │ │ │ ├── TypeScriptExportVisitor.RtAsyncType.cs │ │ │ ├── TypeScriptExportVisitor.RtDelegateType.cs │ │ │ ├── TypeScriptExportVisitor.RtDictionaryType.cs │ │ │ ├── TypeScriptExportVisitor.RtSimpleTypeName.cs │ │ │ └── TypeScriptExportVisitor.RtTuple.cs │ │ ├── TypedVisitorBase.cs │ │ ├── Typings/ │ │ │ ├── TypingsExportVisitor.RtClass.cs │ │ │ ├── TypingsExportVisitor.RtConstructor.cs │ │ │ ├── TypingsExportVisitor.RtEnum.cs │ │ │ ├── TypingsExportVisitor.RtField.cs │ │ │ ├── TypingsExportVisitor.RtFunction.cs │ │ │ ├── TypingsExportVisitor.RtModule.cs │ │ │ └── TypingsExportVisitor.cs │ │ └── VisitorBase.cs │ └── Xmldoc/ │ ├── DocumentationManager.cs │ └── Model/ │ ├── DocumentationMemberExtensions.cs │ ├── DocumentationMemberType.cs │ ├── Model.cs │ └── XmlIgnoreInner.cs ├── Reinforced.Typings.Cli/ │ ├── AssemblyManager.cs │ ├── Bootstrapper.cs │ ├── ConsoleHelpAttribute.cs │ ├── ErrorMessages.cs │ ├── ExporterConsoleParameters.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ └── launchSettings.json │ ├── Reinforced.Typings.Cli.Dev.csproj │ ├── Reinforced.Typings.Cli.NETCore.csproj │ ├── Reinforced.Typings.Cli.csproj │ ├── VisualStudioFriendlyErrorMessage.cs │ ├── VisualStudioFriendlyMessageType.cs │ └── app.config ├── Reinforced.Typings.Dev.sln ├── Reinforced.Typings.Integrate/ │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Reinforced.Typings.Integrate.Dev.csproj │ ├── Reinforced.Typings.Integrate.NETCore.csproj │ ├── Reinforced.Typings.Integrate.csproj │ ├── RemoveTypescriptStep.cs │ ├── RtCli.cs │ └── packages.config ├── Reinforced.Typings.NETCore.sln ├── Reinforced.Typings.Tests/ │ ├── BasicTypesResolvationTests.cs │ ├── ClassicMultiFileResolvationTests.cs │ ├── ConfigurationBuilderTestBase.cs │ ├── Core/ │ │ ├── MockFileOperations.cs │ │ └── RtExporterTestBase.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Reinforced.Typings.Tests.Dev.csproj │ ├── Reinforced.Typings.Tests.Dev.xml │ ├── Reinforced.Typings.Tests.NETCore.csproj │ ├── Reinforced.Typings.Tests.csproj │ ├── SpecificCases/ │ │ ├── SpecificTestCases.ADIXReadonlyDictionaryWorkaround.cs │ │ ├── SpecificTestCases.All.cs │ │ ├── SpecificTestCases.AutoAsync.cs │ │ ├── SpecificTestCases.AutoOptional.cs │ │ ├── SpecificTestCases.AutoOptionalWithCompilerNullable.cs │ │ ├── SpecificTestCases.ClassCodeGenerators.cs │ │ ├── SpecificTestCases.ConstantProperties.cs │ │ ├── SpecificTestCases.Constructor.cs │ │ ├── SpecificTestCases.CrozinSubstitutions.cs │ │ ├── SpecificTestCases.DDanteInheritanceBug.cs │ │ ├── SpecificTestCases.DGoncharovGenericsCase.cs │ │ ├── SpecificTestCases.DaggmanoAutoIBug.cs │ │ ├── SpecificTestCases.DecoratorsTest.cs │ │ ├── SpecificTestCases.DocumentationForNestedTypes.cs │ │ ├── SpecificTestCases.DtsNoDeclareEnumWithoutAmbientScope.cs │ │ ├── SpecificTestCases.EnumKeyedDictionary.cs │ │ ├── SpecificTestCases.EnumStringInitializerIgnoreManyValues.cs │ │ ├── SpecificTestCases.EnumStringInitializers.cs │ │ ├── SpecificTestCases.ExportEnums.cs │ │ ├── SpecificTestCases.ExportEnumsInDtsWithDeclareKeyword.cs │ │ ├── SpecificTestCases.ExportOrderTest1.cs │ │ ├── SpecificTestCases.ExportOrderTest2.cs │ │ ├── SpecificTestCases.FQNs.cs │ │ ├── SpecificTestCases.Fields.cs │ │ ├── SpecificTestCases.FunctionWithParamInitialiser.cs │ │ ├── SpecificTestCases.FunctionalNames.cs │ │ ├── SpecificTestCases.GenericGuidDictionary.cs │ │ ├── SpecificTestCases.GenericSubstitutions.cs │ │ ├── SpecificTestCases.GenericsExport.cs │ │ ├── SpecificTestCases.GenericsExport2.cs │ │ ├── SpecificTestCases.GenericsExport3.cs │ │ ├── SpecificTestCases.HierarchyFlattening.cs │ │ ├── SpecificTestCases.HierarchyFlattening2.cs │ │ ├── SpecificTestCases.HierarchyFlattening3.cs │ │ ├── SpecificTestCases.HierarchyFlattening4.cs │ │ ├── SpecificTestCases.InferTypeTest.cs │ │ ├── SpecificTestCases.InheritDoc.cs │ │ ├── SpecificTestCases.InlineFunctionImplementation.cs │ │ ├── SpecificTestCases.InvalidFlattenOrder.cs │ │ ├── SpecificTestCases.JonsaCustomIndentationTest.cs │ │ ├── SpecificTestCases.JonsaEnumWithouNamespaceTest.cs │ │ ├── SpecificTestCases.KpKozakIssueWithInheritance.cs │ │ ├── SpecificTestCases.LineAfterAnotherWay.cs │ │ ├── SpecificTestCases.LineAfterTest.cs │ │ ├── SpecificTestCases.NestedClassInheritance.cs │ │ ├── SpecificTestCases.NewForceNullable.cs │ │ ├── SpecificTestCases.NewLineTest.cs │ │ ├── SpecificTestCases.NvirthMultilineString.cs │ │ ├── SpecificTestCases.OverrideNamespaceWithModules.cs │ │ ├── SpecificTestCases.OverridenNamesNotCamelCased.cs │ │ ├── SpecificTestCases.PandaWoodCamelCase.cs │ │ ├── SpecificTestCases.PandaWoodForceNullableTest.cs │ │ ├── SpecificTestCases.Records.cs │ │ ├── SpecificTestCases.ReferencesPart1.cs │ │ ├── SpecificTestCases.ReferencesPart2.cs │ │ ├── SpecificTestCases.ReferencesPart3.cs │ │ ├── SpecificTestCases.ReferencesPart4.cs │ │ ├── SpecificTestCases.ReferencesPart5.cs │ │ ├── SpecificTestCases.ReferencesPart6ByDanielWest.cs │ │ ├── SpecificTestCases.ReferencesProcessor.cs │ │ ├── SpecificTestCases.RemarksDocs.cs │ │ ├── SpecificTestCases.RluitenConstEnums.cs │ │ ├── SpecificTestCases.ThirdParty.cs │ │ ├── SpecificTestCases.ThirdPartyWithBaseClass.cs │ │ ├── SpecificTestCases.TsFunctionWorks.cs │ │ ├── SpecificTestCases.TsFunctionWorksWithEnum.cs │ │ ├── SpecificTestCases.TsPropertyWorks.cs │ │ ├── SpecificTestCases.WeirdInheritanceCase.cs │ │ ├── SpecificTestCases._CopyMe_.cs │ │ ├── SpecifiicTestCases.UnresolvedToUnknown.cs │ │ └── TestCases.cs │ ├── SuppressedWarningsParseringTests.cs │ ├── Tokenizing/ │ │ ├── SimpleTokenizer.cs │ │ └── TokenizingComparer.cs │ ├── TokenizingComparerTests.cs │ ├── TypeNameEqualityComparer.cs │ └── packages.config ├── Reinforced.Typings.sln ├── Reinforced_pub.snk ├── Samples/ │ ├── Difficult/ │ │ └── Reinforced.Typings.Samples.Difficult.CodeGenerators/ │ │ ├── App_Start/ │ │ │ ├── BundleConfig.cs │ │ │ ├── FilterConfig.cs │ │ │ └── RouteConfig.cs │ │ ├── Content/ │ │ │ ├── Site.css │ │ │ └── prismjs/ │ │ │ ├── cshtml.css │ │ │ ├── cshtml.js │ │ │ ├── prism.css │ │ │ └── prism.js │ │ ├── Controllers/ │ │ │ ├── AngularController.cs │ │ │ ├── HomeController.cs │ │ │ └── JQueryController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Models/ │ │ │ └── SampleResponseModel.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Reinforced.Typings.Samples.Difficult.CodeGenerators.csproj │ │ ├── Reinforced.Typings.settings.xml │ │ ├── ReinforcedTypings/ │ │ │ ├── Angular/ │ │ │ │ ├── AngularActionCallGenerator.cs │ │ │ │ ├── AngularControllerGenerator.cs │ │ │ │ └── AngularMethodAttribute.cs │ │ │ ├── Configuration.cs │ │ │ └── jQuery/ │ │ │ ├── JQueryActionCallGenerator.cs │ │ │ └── JQueryMethodAttribute.cs │ │ ├── Scripts/ │ │ │ ├── ReinforcedTypings/ │ │ │ │ ├── AngularDemoController.js │ │ │ │ ├── AngularDemoController.ts │ │ │ │ ├── Generated/ │ │ │ │ │ ├── AngularController.js │ │ │ │ │ ├── AngularController.ts │ │ │ │ │ ├── JQueryController.js │ │ │ │ │ ├── JQueryController.ts │ │ │ │ │ ├── models.js │ │ │ │ │ └── models.ts │ │ │ │ ├── GeneratedTypings.js │ │ │ │ ├── IndexPage.js │ │ │ │ ├── IndexPage.ts │ │ │ │ ├── app.js │ │ │ │ ├── app.ts │ │ │ │ ├── query.js │ │ │ │ └── query.ts │ │ │ ├── _references.js │ │ │ ├── angular-animate.js │ │ │ ├── angular-aria.js │ │ │ ├── angular-cookies.js │ │ │ ├── angular-csp.css │ │ │ ├── angular-loader.js │ │ │ ├── angular-message-format.js │ │ │ ├── angular-messages.js │ │ │ ├── angular-mocks.js │ │ │ ├── angular-resource.js │ │ │ ├── angular-route.js │ │ │ ├── angular-sanitize.js │ │ │ ├── angular-scenario.js │ │ │ ├── angular-touch.js │ │ │ ├── angular.js │ │ │ ├── errors.json │ │ │ ├── i18n/ │ │ │ │ ├── angular-locale_aa-dj.js │ │ │ │ ├── angular-locale_aa-er.js │ │ │ │ ├── angular-locale_aa-et.js │ │ │ │ ├── angular-locale_aa.js │ │ │ │ ├── angular-locale_af-na.js │ │ │ │ ├── angular-locale_af-za.js │ │ │ │ ├── angular-locale_af.js │ │ │ │ ├── angular-locale_agq-cm.js │ │ │ │ ├── angular-locale_agq.js │ │ │ │ ├── angular-locale_ak-gh.js │ │ │ │ ├── angular-locale_ak.js │ │ │ │ ├── angular-locale_am-et.js │ │ │ │ ├── angular-locale_am.js │ │ │ │ ├── angular-locale_ar-001.js │ │ │ │ ├── angular-locale_ar-ae.js │ │ │ │ ├── angular-locale_ar-bh.js │ │ │ │ ├── angular-locale_ar-dj.js │ │ │ │ ├── angular-locale_ar-dz.js │ │ │ │ ├── angular-locale_ar-eg.js │ │ │ │ ├── angular-locale_ar-eh.js │ │ │ │ ├── angular-locale_ar-er.js │ │ │ │ ├── angular-locale_ar-il.js │ │ │ │ ├── angular-locale_ar-iq.js │ │ │ │ ├── angular-locale_ar-jo.js │ │ │ │ ├── angular-locale_ar-km.js │ │ │ │ ├── angular-locale_ar-kw.js │ │ │ │ ├── angular-locale_ar-lb.js │ │ │ │ ├── angular-locale_ar-ly.js │ │ │ │ ├── angular-locale_ar-ma.js │ │ │ │ ├── angular-locale_ar-mr.js │ │ │ │ ├── angular-locale_ar-om.js │ │ │ │ ├── angular-locale_ar-ps.js │ │ │ │ ├── angular-locale_ar-qa.js │ │ │ │ ├── angular-locale_ar-sa.js │ │ │ │ ├── angular-locale_ar-sd.js │ │ │ │ ├── angular-locale_ar-so.js │ │ │ │ ├── angular-locale_ar-ss.js │ │ │ │ ├── angular-locale_ar-sy.js │ │ │ │ ├── angular-locale_ar-td.js │ │ │ │ ├── angular-locale_ar-tn.js │ │ │ │ ├── angular-locale_ar-ye.js │ │ │ │ ├── angular-locale_ar.js │ │ │ │ ├── angular-locale_as-in.js │ │ │ │ ├── angular-locale_as.js │ │ │ │ ├── angular-locale_asa-tz.js │ │ │ │ ├── angular-locale_asa.js │ │ │ │ ├── angular-locale_ast-es.js │ │ │ │ ├── angular-locale_ast.js │ │ │ │ ├── angular-locale_az-cyrl-az.js │ │ │ │ ├── angular-locale_az-cyrl.js │ │ │ │ ├── angular-locale_az-latn-az.js │ │ │ │ ├── angular-locale_az-latn.js │ │ │ │ ├── angular-locale_az.js │ │ │ │ ├── angular-locale_bas-cm.js │ │ │ │ ├── angular-locale_bas.js │ │ │ │ ├── angular-locale_be-by.js │ │ │ │ ├── angular-locale_be.js │ │ │ │ ├── angular-locale_bem-zm.js │ │ │ │ ├── angular-locale_bem.js │ │ │ │ ├── angular-locale_bez-tz.js │ │ │ │ ├── angular-locale_bez.js │ │ │ │ ├── angular-locale_bg-bg.js │ │ │ │ ├── angular-locale_bg.js │ │ │ │ ├── angular-locale_bm-latn-ml.js │ │ │ │ ├── angular-locale_bm-latn.js │ │ │ │ ├── angular-locale_bm-ml.js │ │ │ │ ├── angular-locale_bm.js │ │ │ │ ├── angular-locale_bn-bd.js │ │ │ │ ├── angular-locale_bn-in.js │ │ │ │ ├── angular-locale_bn.js │ │ │ │ ├── angular-locale_bo-cn.js │ │ │ │ ├── angular-locale_bo-in.js │ │ │ │ ├── angular-locale_bo.js │ │ │ │ ├── angular-locale_br-fr.js │ │ │ │ ├── angular-locale_br.js │ │ │ │ ├── angular-locale_brx-in.js │ │ │ │ ├── angular-locale_brx.js │ │ │ │ ├── angular-locale_bs-cyrl-ba.js │ │ │ │ ├── angular-locale_bs-cyrl.js │ │ │ │ ├── angular-locale_bs-latn-ba.js │ │ │ │ ├── angular-locale_bs-latn.js │ │ │ │ ├── angular-locale_bs.js │ │ │ │ ├── angular-locale_byn-er.js │ │ │ │ ├── angular-locale_byn.js │ │ │ │ ├── angular-locale_ca-ad.js │ │ │ │ ├── angular-locale_ca-es-valencia.js │ │ │ │ ├── angular-locale_ca-es.js │ │ │ │ ├── angular-locale_ca-fr.js │ │ │ │ ├── angular-locale_ca-it.js │ │ │ │ ├── angular-locale_ca.js │ │ │ │ ├── angular-locale_cgg-ug.js │ │ │ │ ├── angular-locale_cgg.js │ │ │ │ ├── angular-locale_chr-us.js │ │ │ │ ├── angular-locale_chr.js │ │ │ │ ├── angular-locale_ckb-arab-iq.js │ │ │ │ ├── angular-locale_ckb-arab-ir.js │ │ │ │ ├── angular-locale_ckb-arab.js │ │ │ │ ├── angular-locale_ckb-iq.js │ │ │ │ ├── angular-locale_ckb-ir.js │ │ │ │ ├── angular-locale_ckb-latn-iq.js │ │ │ │ ├── angular-locale_ckb-latn.js │ │ │ │ ├── angular-locale_ckb.js │ │ │ │ ├── angular-locale_cs-cz.js │ │ │ │ ├── angular-locale_cs.js │ │ │ │ ├── angular-locale_cy-gb.js │ │ │ │ ├── angular-locale_cy.js │ │ │ │ ├── angular-locale_da-dk.js │ │ │ │ ├── angular-locale_da-gl.js │ │ │ │ ├── angular-locale_da.js │ │ │ │ ├── angular-locale_dav-ke.js │ │ │ │ ├── angular-locale_dav.js │ │ │ │ ├── angular-locale_de-at.js │ │ │ │ ├── angular-locale_de-be.js │ │ │ │ ├── angular-locale_de-ch.js │ │ │ │ ├── angular-locale_de-de.js │ │ │ │ ├── angular-locale_de-li.js │ │ │ │ ├── angular-locale_de-lu.js │ │ │ │ ├── angular-locale_de.js │ │ │ │ ├── angular-locale_dje-ne.js │ │ │ │ ├── angular-locale_dje.js │ │ │ │ ├── angular-locale_dsb-de.js │ │ │ │ ├── angular-locale_dsb.js │ │ │ │ ├── angular-locale_dua-cm.js │ │ │ │ ├── angular-locale_dua.js │ │ │ │ ├── angular-locale_dyo-sn.js │ │ │ │ ├── angular-locale_dyo.js │ │ │ │ ├── angular-locale_dz-bt.js │ │ │ │ ├── angular-locale_dz.js │ │ │ │ ├── angular-locale_ebu-ke.js │ │ │ │ ├── angular-locale_ebu.js │ │ │ │ ├── angular-locale_ee-gh.js │ │ │ │ ├── angular-locale_ee-tg.js │ │ │ │ ├── angular-locale_ee.js │ │ │ │ ├── angular-locale_el-cy.js │ │ │ │ ├── angular-locale_el-gr.js │ │ │ │ ├── angular-locale_el.js │ │ │ │ ├── angular-locale_en-001.js │ │ │ │ ├── angular-locale_en-150.js │ │ │ │ ├── angular-locale_en-ag.js │ │ │ │ ├── angular-locale_en-ai.js │ │ │ │ ├── angular-locale_en-as.js │ │ │ │ ├── angular-locale_en-au.js │ │ │ │ ├── angular-locale_en-bb.js │ │ │ │ ├── angular-locale_en-be.js │ │ │ │ ├── angular-locale_en-bm.js │ │ │ │ ├── angular-locale_en-bs.js │ │ │ │ ├── angular-locale_en-bw.js │ │ │ │ ├── angular-locale_en-bz.js │ │ │ │ ├── angular-locale_en-ca.js │ │ │ │ ├── angular-locale_en-cc.js │ │ │ │ ├── angular-locale_en-ck.js │ │ │ │ ├── angular-locale_en-cm.js │ │ │ │ ├── angular-locale_en-cx.js │ │ │ │ ├── angular-locale_en-dg.js │ │ │ │ ├── angular-locale_en-dm.js │ │ │ │ ├── angular-locale_en-er.js │ │ │ │ ├── angular-locale_en-fj.js │ │ │ │ ├── angular-locale_en-fk.js │ │ │ │ ├── angular-locale_en-fm.js │ │ │ │ ├── angular-locale_en-gb.js │ │ │ │ ├── angular-locale_en-gd.js │ │ │ │ ├── angular-locale_en-gg.js │ │ │ │ ├── angular-locale_en-gh.js │ │ │ │ ├── angular-locale_en-gi.js │ │ │ │ ├── angular-locale_en-gm.js │ │ │ │ ├── angular-locale_en-gu.js │ │ │ │ ├── angular-locale_en-gy.js │ │ │ │ ├── angular-locale_en-hk.js │ │ │ │ ├── angular-locale_en-ie.js │ │ │ │ ├── angular-locale_en-im.js │ │ │ │ ├── angular-locale_en-in.js │ │ │ │ ├── angular-locale_en-io.js │ │ │ │ ├── angular-locale_en-iso.js │ │ │ │ ├── angular-locale_en-je.js │ │ │ │ ├── angular-locale_en-jm.js │ │ │ │ ├── angular-locale_en-ke.js │ │ │ │ ├── angular-locale_en-ki.js │ │ │ │ ├── angular-locale_en-kn.js │ │ │ │ ├── angular-locale_en-ky.js │ │ │ │ ├── angular-locale_en-lc.js │ │ │ │ ├── angular-locale_en-lr.js │ │ │ │ ├── angular-locale_en-ls.js │ │ │ │ ├── angular-locale_en-mg.js │ │ │ │ ├── angular-locale_en-mh.js │ │ │ │ ├── angular-locale_en-mo.js │ │ │ │ ├── angular-locale_en-mp.js │ │ │ │ ├── angular-locale_en-ms.js │ │ │ │ ├── angular-locale_en-mt.js │ │ │ │ ├── angular-locale_en-mu.js │ │ │ │ ├── angular-locale_en-mw.js │ │ │ │ ├── angular-locale_en-my.js │ │ │ │ ├── angular-locale_en-na.js │ │ │ │ ├── angular-locale_en-nf.js │ │ │ │ ├── angular-locale_en-ng.js │ │ │ │ ├── angular-locale_en-nr.js │ │ │ │ ├── angular-locale_en-nu.js │ │ │ │ ├── angular-locale_en-nz.js │ │ │ │ ├── angular-locale_en-pg.js │ │ │ │ ├── angular-locale_en-ph.js │ │ │ │ ├── angular-locale_en-pk.js │ │ │ │ ├── angular-locale_en-pn.js │ │ │ │ ├── angular-locale_en-pr.js │ │ │ │ ├── angular-locale_en-pw.js │ │ │ │ ├── angular-locale_en-rw.js │ │ │ │ ├── angular-locale_en-sb.js │ │ │ │ ├── angular-locale_en-sc.js │ │ │ │ ├── angular-locale_en-sd.js │ │ │ │ ├── angular-locale_en-sg.js │ │ │ │ ├── angular-locale_en-sh.js │ │ │ │ ├── angular-locale_en-sl.js │ │ │ │ ├── angular-locale_en-ss.js │ │ │ │ ├── angular-locale_en-sx.js │ │ │ │ ├── angular-locale_en-sz.js │ │ │ │ ├── angular-locale_en-tc.js │ │ │ │ ├── angular-locale_en-tk.js │ │ │ │ ├── angular-locale_en-to.js │ │ │ │ ├── angular-locale_en-tt.js │ │ │ │ ├── angular-locale_en-tv.js │ │ │ │ ├── angular-locale_en-tz.js │ │ │ │ ├── angular-locale_en-ug.js │ │ │ │ ├── angular-locale_en-um.js │ │ │ │ ├── angular-locale_en-us.js │ │ │ │ ├── angular-locale_en-vc.js │ │ │ │ ├── angular-locale_en-vg.js │ │ │ │ ├── angular-locale_en-vi.js │ │ │ │ ├── angular-locale_en-vu.js │ │ │ │ ├── angular-locale_en-ws.js │ │ │ │ ├── angular-locale_en-za.js │ │ │ │ ├── angular-locale_en-zm.js │ │ │ │ ├── angular-locale_en-zw.js │ │ │ │ ├── angular-locale_en.js │ │ │ │ ├── angular-locale_eo-001.js │ │ │ │ ├── angular-locale_eo.js │ │ │ │ ├── angular-locale_es-419.js │ │ │ │ ├── angular-locale_es-ar.js │ │ │ │ ├── angular-locale_es-bo.js │ │ │ │ ├── angular-locale_es-cl.js │ │ │ │ ├── angular-locale_es-co.js │ │ │ │ ├── angular-locale_es-cr.js │ │ │ │ ├── angular-locale_es-cu.js │ │ │ │ ├── angular-locale_es-do.js │ │ │ │ ├── angular-locale_es-ea.js │ │ │ │ ├── angular-locale_es-ec.js │ │ │ │ ├── angular-locale_es-es.js │ │ │ │ ├── angular-locale_es-gq.js │ │ │ │ ├── angular-locale_es-gt.js │ │ │ │ ├── angular-locale_es-hn.js │ │ │ │ ├── angular-locale_es-ic.js │ │ │ │ ├── angular-locale_es-mx.js │ │ │ │ ├── angular-locale_es-ni.js │ │ │ │ ├── angular-locale_es-pa.js │ │ │ │ ├── angular-locale_es-pe.js │ │ │ │ ├── angular-locale_es-ph.js │ │ │ │ ├── angular-locale_es-pr.js │ │ │ │ ├── angular-locale_es-py.js │ │ │ │ ├── angular-locale_es-sv.js │ │ │ │ ├── angular-locale_es-us.js │ │ │ │ ├── angular-locale_es-uy.js │ │ │ │ ├── angular-locale_es-ve.js │ │ │ │ ├── angular-locale_es.js │ │ │ │ ├── angular-locale_et-ee.js │ │ │ │ ├── angular-locale_et.js │ │ │ │ ├── angular-locale_eu-es.js │ │ │ │ ├── angular-locale_eu.js │ │ │ │ ├── angular-locale_ewo-cm.js │ │ │ │ ├── angular-locale_ewo.js │ │ │ │ ├── angular-locale_fa-af.js │ │ │ │ ├── angular-locale_fa-ir.js │ │ │ │ ├── angular-locale_fa.js │ │ │ │ ├── angular-locale_ff-cm.js │ │ │ │ ├── angular-locale_ff-gn.js │ │ │ │ ├── angular-locale_ff-mr.js │ │ │ │ ├── angular-locale_ff-sn.js │ │ │ │ ├── angular-locale_ff.js │ │ │ │ ├── angular-locale_fi-fi.js │ │ │ │ ├── angular-locale_fi.js │ │ │ │ ├── angular-locale_fil-ph.js │ │ │ │ ├── angular-locale_fil.js │ │ │ │ ├── angular-locale_fo-fo.js │ │ │ │ ├── angular-locale_fo.js │ │ │ │ ├── angular-locale_fr-be.js │ │ │ │ ├── angular-locale_fr-bf.js │ │ │ │ ├── angular-locale_fr-bi.js │ │ │ │ ├── angular-locale_fr-bj.js │ │ │ │ ├── angular-locale_fr-bl.js │ │ │ │ ├── angular-locale_fr-ca.js │ │ │ │ ├── angular-locale_fr-cd.js │ │ │ │ ├── angular-locale_fr-cf.js │ │ │ │ ├── angular-locale_fr-cg.js │ │ │ │ ├── angular-locale_fr-ch.js │ │ │ │ ├── angular-locale_fr-ci.js │ │ │ │ ├── angular-locale_fr-cm.js │ │ │ │ ├── angular-locale_fr-dj.js │ │ │ │ ├── angular-locale_fr-dz.js │ │ │ │ ├── angular-locale_fr-fr.js │ │ │ │ ├── angular-locale_fr-ga.js │ │ │ │ ├── angular-locale_fr-gf.js │ │ │ │ ├── angular-locale_fr-gn.js │ │ │ │ ├── angular-locale_fr-gp.js │ │ │ │ ├── angular-locale_fr-gq.js │ │ │ │ ├── angular-locale_fr-ht.js │ │ │ │ ├── angular-locale_fr-km.js │ │ │ │ ├── angular-locale_fr-lu.js │ │ │ │ ├── angular-locale_fr-ma.js │ │ │ │ ├── angular-locale_fr-mc.js │ │ │ │ ├── angular-locale_fr-mf.js │ │ │ │ ├── angular-locale_fr-mg.js │ │ │ │ ├── angular-locale_fr-ml.js │ │ │ │ ├── angular-locale_fr-mq.js │ │ │ │ ├── angular-locale_fr-mr.js │ │ │ │ ├── angular-locale_fr-mu.js │ │ │ │ ├── angular-locale_fr-nc.js │ │ │ │ ├── angular-locale_fr-ne.js │ │ │ │ ├── angular-locale_fr-pf.js │ │ │ │ ├── angular-locale_fr-pm.js │ │ │ │ ├── angular-locale_fr-re.js │ │ │ │ ├── angular-locale_fr-rw.js │ │ │ │ ├── angular-locale_fr-sc.js │ │ │ │ ├── angular-locale_fr-sn.js │ │ │ │ ├── angular-locale_fr-sy.js │ │ │ │ ├── angular-locale_fr-td.js │ │ │ │ ├── angular-locale_fr-tg.js │ │ │ │ ├── angular-locale_fr-tn.js │ │ │ │ ├── angular-locale_fr-vu.js │ │ │ │ ├── angular-locale_fr-wf.js │ │ │ │ ├── angular-locale_fr-yt.js │ │ │ │ ├── angular-locale_fr.js │ │ │ │ ├── angular-locale_fur-it.js │ │ │ │ ├── angular-locale_fur.js │ │ │ │ ├── angular-locale_fy-nl.js │ │ │ │ ├── angular-locale_fy.js │ │ │ │ ├── angular-locale_ga-ie.js │ │ │ │ ├── angular-locale_ga.js │ │ │ │ ├── angular-locale_gd-gb.js │ │ │ │ ├── angular-locale_gd.js │ │ │ │ ├── angular-locale_gl-es.js │ │ │ │ ├── angular-locale_gl.js │ │ │ │ ├── angular-locale_gsw-ch.js │ │ │ │ ├── angular-locale_gsw-fr.js │ │ │ │ ├── angular-locale_gsw-li.js │ │ │ │ ├── angular-locale_gsw.js │ │ │ │ ├── angular-locale_gu-in.js │ │ │ │ ├── angular-locale_gu.js │ │ │ │ ├── angular-locale_guz-ke.js │ │ │ │ ├── angular-locale_guz.js │ │ │ │ ├── angular-locale_gv-im.js │ │ │ │ ├── angular-locale_gv.js │ │ │ │ ├── angular-locale_ha-latn-gh.js │ │ │ │ ├── angular-locale_ha-latn-ne.js │ │ │ │ ├── angular-locale_ha-latn-ng.js │ │ │ │ ├── angular-locale_ha-latn.js │ │ │ │ ├── angular-locale_ha.js │ │ │ │ ├── angular-locale_haw-us.js │ │ │ │ ├── angular-locale_haw.js │ │ │ │ ├── angular-locale_he-il.js │ │ │ │ ├── angular-locale_he.js │ │ │ │ ├── angular-locale_hi-in.js │ │ │ │ ├── angular-locale_hi.js │ │ │ │ ├── angular-locale_hr-ba.js │ │ │ │ ├── angular-locale_hr-hr.js │ │ │ │ ├── angular-locale_hr.js │ │ │ │ ├── angular-locale_hsb-de.js │ │ │ │ ├── angular-locale_hsb.js │ │ │ │ ├── angular-locale_hu-hu.js │ │ │ │ ├── angular-locale_hu.js │ │ │ │ ├── angular-locale_hy-am.js │ │ │ │ ├── angular-locale_hy.js │ │ │ │ ├── angular-locale_ia-fr.js │ │ │ │ ├── angular-locale_ia.js │ │ │ │ ├── angular-locale_id-id.js │ │ │ │ ├── angular-locale_id.js │ │ │ │ ├── angular-locale_ig-ng.js │ │ │ │ ├── angular-locale_ig.js │ │ │ │ ├── angular-locale_ii-cn.js │ │ │ │ ├── angular-locale_ii.js │ │ │ │ ├── angular-locale_in.js │ │ │ │ ├── angular-locale_is-is.js │ │ │ │ ├── angular-locale_is.js │ │ │ │ ├── angular-locale_it-ch.js │ │ │ │ ├── angular-locale_it-it.js │ │ │ │ ├── angular-locale_it-sm.js │ │ │ │ ├── angular-locale_it.js │ │ │ │ ├── angular-locale_iw.js │ │ │ │ ├── angular-locale_ja-jp.js │ │ │ │ ├── angular-locale_ja.js │ │ │ │ ├── angular-locale_jgo-cm.js │ │ │ │ ├── angular-locale_jgo.js │ │ │ │ ├── angular-locale_jmc-tz.js │ │ │ │ ├── angular-locale_jmc.js │ │ │ │ ├── angular-locale_ka-ge.js │ │ │ │ ├── angular-locale_ka.js │ │ │ │ ├── angular-locale_kab-dz.js │ │ │ │ ├── angular-locale_kab.js │ │ │ │ ├── angular-locale_kam-ke.js │ │ │ │ ├── angular-locale_kam.js │ │ │ │ ├── angular-locale_kde-tz.js │ │ │ │ ├── angular-locale_kde.js │ │ │ │ ├── angular-locale_kea-cv.js │ │ │ │ ├── angular-locale_kea.js │ │ │ │ ├── angular-locale_khq-ml.js │ │ │ │ ├── angular-locale_khq.js │ │ │ │ ├── angular-locale_ki-ke.js │ │ │ │ ├── angular-locale_ki.js │ │ │ │ ├── angular-locale_kk-cyrl-kz.js │ │ │ │ ├── angular-locale_kk-cyrl.js │ │ │ │ ├── angular-locale_kk.js │ │ │ │ ├── angular-locale_kkj-cm.js │ │ │ │ ├── angular-locale_kkj.js │ │ │ │ ├── angular-locale_kl-gl.js │ │ │ │ ├── angular-locale_kl.js │ │ │ │ ├── angular-locale_kln-ke.js │ │ │ │ ├── angular-locale_kln.js │ │ │ │ ├── angular-locale_km-kh.js │ │ │ │ ├── angular-locale_km.js │ │ │ │ ├── angular-locale_kn-in.js │ │ │ │ ├── angular-locale_kn.js │ │ │ │ ├── angular-locale_ko-kp.js │ │ │ │ ├── angular-locale_ko-kr.js │ │ │ │ ├── angular-locale_ko.js │ │ │ │ ├── angular-locale_kok-in.js │ │ │ │ ├── angular-locale_kok.js │ │ │ │ ├── angular-locale_ks-arab-in.js │ │ │ │ ├── angular-locale_ks-arab.js │ │ │ │ ├── angular-locale_ks.js │ │ │ │ ├── angular-locale_ksb-tz.js │ │ │ │ ├── angular-locale_ksb.js │ │ │ │ ├── angular-locale_ksf-cm.js │ │ │ │ ├── angular-locale_ksf.js │ │ │ │ ├── angular-locale_ksh-de.js │ │ │ │ ├── angular-locale_ksh.js │ │ │ │ ├── angular-locale_kw-gb.js │ │ │ │ ├── angular-locale_kw.js │ │ │ │ ├── angular-locale_ky-cyrl-kg.js │ │ │ │ ├── angular-locale_ky-cyrl.js │ │ │ │ ├── angular-locale_ky.js │ │ │ │ ├── angular-locale_lag-tz.js │ │ │ │ ├── angular-locale_lag.js │ │ │ │ ├── angular-locale_lb-lu.js │ │ │ │ ├── angular-locale_lb.js │ │ │ │ ├── angular-locale_lg-ug.js │ │ │ │ ├── angular-locale_lg.js │ │ │ │ ├── angular-locale_lkt-us.js │ │ │ │ ├── angular-locale_lkt.js │ │ │ │ ├── angular-locale_ln-ao.js │ │ │ │ ├── angular-locale_ln-cd.js │ │ │ │ ├── angular-locale_ln-cf.js │ │ │ │ ├── angular-locale_ln-cg.js │ │ │ │ ├── angular-locale_ln.js │ │ │ │ ├── angular-locale_lo-la.js │ │ │ │ ├── angular-locale_lo.js │ │ │ │ ├── angular-locale_lt-lt.js │ │ │ │ ├── angular-locale_lt.js │ │ │ │ ├── angular-locale_lu-cd.js │ │ │ │ ├── angular-locale_lu.js │ │ │ │ ├── angular-locale_luo-ke.js │ │ │ │ ├── angular-locale_luo.js │ │ │ │ ├── angular-locale_luy-ke.js │ │ │ │ ├── angular-locale_luy.js │ │ │ │ ├── angular-locale_lv-lv.js │ │ │ │ ├── angular-locale_lv.js │ │ │ │ ├── angular-locale_mas-ke.js │ │ │ │ ├── angular-locale_mas-tz.js │ │ │ │ ├── angular-locale_mas.js │ │ │ │ ├── angular-locale_mer-ke.js │ │ │ │ ├── angular-locale_mer.js │ │ │ │ ├── angular-locale_mfe-mu.js │ │ │ │ ├── angular-locale_mfe.js │ │ │ │ ├── angular-locale_mg-mg.js │ │ │ │ ├── angular-locale_mg.js │ │ │ │ ├── angular-locale_mgh-mz.js │ │ │ │ ├── angular-locale_mgh.js │ │ │ │ ├── angular-locale_mgo-cm.js │ │ │ │ ├── angular-locale_mgo.js │ │ │ │ ├── angular-locale_mk-mk.js │ │ │ │ ├── angular-locale_mk.js │ │ │ │ ├── angular-locale_ml-in.js │ │ │ │ ├── angular-locale_ml.js │ │ │ │ ├── angular-locale_mn-cyrl-mn.js │ │ │ │ ├── angular-locale_mn-cyrl.js │ │ │ │ ├── angular-locale_mn.js │ │ │ │ ├── angular-locale_mr-in.js │ │ │ │ ├── angular-locale_mr.js │ │ │ │ ├── angular-locale_ms-latn-bn.js │ │ │ │ ├── angular-locale_ms-latn-my.js │ │ │ │ ├── angular-locale_ms-latn-sg.js │ │ │ │ ├── angular-locale_ms-latn.js │ │ │ │ ├── angular-locale_ms.js │ │ │ │ ├── angular-locale_mt-mt.js │ │ │ │ ├── angular-locale_mt.js │ │ │ │ ├── angular-locale_mua-cm.js │ │ │ │ ├── angular-locale_mua.js │ │ │ │ ├── angular-locale_my-mm.js │ │ │ │ ├── angular-locale_my.js │ │ │ │ ├── angular-locale_naq-na.js │ │ │ │ ├── angular-locale_naq.js │ │ │ │ ├── angular-locale_nb-no.js │ │ │ │ ├── angular-locale_nb-sj.js │ │ │ │ ├── angular-locale_nb.js │ │ │ │ ├── angular-locale_nd-zw.js │ │ │ │ ├── angular-locale_nd.js │ │ │ │ ├── angular-locale_ne-in.js │ │ │ │ ├── angular-locale_ne-np.js │ │ │ │ ├── angular-locale_ne.js │ │ │ │ ├── angular-locale_nl-aw.js │ │ │ │ ├── angular-locale_nl-be.js │ │ │ │ ├── angular-locale_nl-bq.js │ │ │ │ ├── angular-locale_nl-cw.js │ │ │ │ ├── angular-locale_nl-nl.js │ │ │ │ ├── angular-locale_nl-sr.js │ │ │ │ ├── angular-locale_nl-sx.js │ │ │ │ ├── angular-locale_nl.js │ │ │ │ ├── angular-locale_nmg-cm.js │ │ │ │ ├── angular-locale_nmg.js │ │ │ │ ├── angular-locale_nn-no.js │ │ │ │ ├── angular-locale_nn.js │ │ │ │ ├── angular-locale_nnh-cm.js │ │ │ │ ├── angular-locale_nnh.js │ │ │ │ ├── angular-locale_no-no.js │ │ │ │ ├── angular-locale_no.js │ │ │ │ ├── angular-locale_nr-za.js │ │ │ │ ├── angular-locale_nr.js │ │ │ │ ├── angular-locale_nso-za.js │ │ │ │ ├── angular-locale_nso.js │ │ │ │ ├── angular-locale_nus-sd.js │ │ │ │ ├── angular-locale_nus.js │ │ │ │ ├── angular-locale_nyn-ug.js │ │ │ │ ├── angular-locale_nyn.js │ │ │ │ ├── angular-locale_om-et.js │ │ │ │ ├── angular-locale_om-ke.js │ │ │ │ ├── angular-locale_om.js │ │ │ │ ├── angular-locale_or-in.js │ │ │ │ ├── angular-locale_or.js │ │ │ │ ├── angular-locale_os-ge.js │ │ │ │ ├── angular-locale_os-ru.js │ │ │ │ ├── angular-locale_os.js │ │ │ │ ├── angular-locale_pa-arab-pk.js │ │ │ │ ├── angular-locale_pa-arab.js │ │ │ │ ├── angular-locale_pa-guru-in.js │ │ │ │ ├── angular-locale_pa-guru.js │ │ │ │ ├── angular-locale_pa.js │ │ │ │ ├── angular-locale_pl-pl.js │ │ │ │ ├── angular-locale_pl.js │ │ │ │ ├── angular-locale_ps-af.js │ │ │ │ ├── angular-locale_ps.js │ │ │ │ ├── angular-locale_pt-ao.js │ │ │ │ ├── angular-locale_pt-br.js │ │ │ │ ├── angular-locale_pt-cv.js │ │ │ │ ├── angular-locale_pt-gw.js │ │ │ │ ├── angular-locale_pt-mo.js │ │ │ │ ├── angular-locale_pt-mz.js │ │ │ │ ├── angular-locale_pt-pt.js │ │ │ │ ├── angular-locale_pt-st.js │ │ │ │ ├── angular-locale_pt-tl.js │ │ │ │ ├── angular-locale_pt.js │ │ │ │ ├── angular-locale_qu-bo.js │ │ │ │ ├── angular-locale_qu-ec.js │ │ │ │ ├── angular-locale_qu-pe.js │ │ │ │ ├── angular-locale_qu.js │ │ │ │ ├── angular-locale_rm-ch.js │ │ │ │ ├── angular-locale_rm.js │ │ │ │ ├── angular-locale_rn-bi.js │ │ │ │ ├── angular-locale_rn.js │ │ │ │ ├── angular-locale_ro-md.js │ │ │ │ ├── angular-locale_ro-ro.js │ │ │ │ ├── angular-locale_ro.js │ │ │ │ ├── angular-locale_rof-tz.js │ │ │ │ ├── angular-locale_rof.js │ │ │ │ ├── angular-locale_ru-by.js │ │ │ │ ├── angular-locale_ru-kg.js │ │ │ │ ├── angular-locale_ru-kz.js │ │ │ │ ├── angular-locale_ru-md.js │ │ │ │ ├── angular-locale_ru-ru.js │ │ │ │ ├── angular-locale_ru-ua.js │ │ │ │ ├── angular-locale_ru.js │ │ │ │ ├── angular-locale_rw-rw.js │ │ │ │ ├── angular-locale_rw.js │ │ │ │ ├── angular-locale_rwk-tz.js │ │ │ │ ├── angular-locale_rwk.js │ │ │ │ ├── angular-locale_sah-ru.js │ │ │ │ ├── angular-locale_sah.js │ │ │ │ ├── angular-locale_saq-ke.js │ │ │ │ ├── angular-locale_saq.js │ │ │ │ ├── angular-locale_sbp-tz.js │ │ │ │ ├── angular-locale_sbp.js │ │ │ │ ├── angular-locale_se-fi.js │ │ │ │ ├── angular-locale_se-no.js │ │ │ │ ├── angular-locale_se-se.js │ │ │ │ ├── angular-locale_se.js │ │ │ │ ├── angular-locale_seh-mz.js │ │ │ │ ├── angular-locale_seh.js │ │ │ │ ├── angular-locale_ses-ml.js │ │ │ │ ├── angular-locale_ses.js │ │ │ │ ├── angular-locale_sg-cf.js │ │ │ │ ├── angular-locale_sg.js │ │ │ │ ├── angular-locale_shi-latn-ma.js │ │ │ │ ├── angular-locale_shi-latn.js │ │ │ │ ├── angular-locale_shi-tfng-ma.js │ │ │ │ ├── angular-locale_shi-tfng.js │ │ │ │ ├── angular-locale_shi.js │ │ │ │ ├── angular-locale_si-lk.js │ │ │ │ ├── angular-locale_si.js │ │ │ │ ├── angular-locale_sk-sk.js │ │ │ │ ├── angular-locale_sk.js │ │ │ │ ├── angular-locale_sl-si.js │ │ │ │ ├── angular-locale_sl.js │ │ │ │ ├── angular-locale_smn-fi.js │ │ │ │ ├── angular-locale_smn.js │ │ │ │ ├── angular-locale_sn-zw.js │ │ │ │ ├── angular-locale_sn.js │ │ │ │ ├── angular-locale_so-dj.js │ │ │ │ ├── angular-locale_so-et.js │ │ │ │ ├── angular-locale_so-ke.js │ │ │ │ ├── angular-locale_so-so.js │ │ │ │ ├── angular-locale_so.js │ │ │ │ ├── angular-locale_sq-al.js │ │ │ │ ├── angular-locale_sq-mk.js │ │ │ │ ├── angular-locale_sq-xk.js │ │ │ │ ├── angular-locale_sq.js │ │ │ │ ├── angular-locale_sr-cyrl-ba.js │ │ │ │ ├── angular-locale_sr-cyrl-me.js │ │ │ │ ├── angular-locale_sr-cyrl-rs.js │ │ │ │ ├── angular-locale_sr-cyrl-xk.js │ │ │ │ ├── angular-locale_sr-cyrl.js │ │ │ │ ├── angular-locale_sr-latn-ba.js │ │ │ │ ├── angular-locale_sr-latn-me.js │ │ │ │ ├── angular-locale_sr-latn-rs.js │ │ │ │ ├── angular-locale_sr-latn-xk.js │ │ │ │ ├── angular-locale_sr-latn.js │ │ │ │ ├── angular-locale_sr.js │ │ │ │ ├── angular-locale_ss-sz.js │ │ │ │ ├── angular-locale_ss-za.js │ │ │ │ ├── angular-locale_ss.js │ │ │ │ ├── angular-locale_ssy-er.js │ │ │ │ ├── angular-locale_ssy.js │ │ │ │ ├── angular-locale_st-ls.js │ │ │ │ ├── angular-locale_st-za.js │ │ │ │ ├── angular-locale_st.js │ │ │ │ ├── angular-locale_sv-ax.js │ │ │ │ ├── angular-locale_sv-fi.js │ │ │ │ ├── angular-locale_sv-se.js │ │ │ │ ├── angular-locale_sv.js │ │ │ │ ├── angular-locale_sw-cd.js │ │ │ │ ├── angular-locale_sw-ke.js │ │ │ │ ├── angular-locale_sw-tz.js │ │ │ │ ├── angular-locale_sw-ug.js │ │ │ │ ├── angular-locale_sw.js │ │ │ │ ├── angular-locale_swc-cd.js │ │ │ │ ├── angular-locale_swc.js │ │ │ │ ├── angular-locale_ta-in.js │ │ │ │ ├── angular-locale_ta-lk.js │ │ │ │ ├── angular-locale_ta-my.js │ │ │ │ ├── angular-locale_ta-sg.js │ │ │ │ ├── angular-locale_ta.js │ │ │ │ ├── angular-locale_te-in.js │ │ │ │ ├── angular-locale_te.js │ │ │ │ ├── angular-locale_teo-ke.js │ │ │ │ ├── angular-locale_teo-ug.js │ │ │ │ ├── angular-locale_teo.js │ │ │ │ ├── angular-locale_tg-cyrl-tj.js │ │ │ │ ├── angular-locale_tg-cyrl.js │ │ │ │ ├── angular-locale_tg.js │ │ │ │ ├── angular-locale_th-th.js │ │ │ │ ├── angular-locale_th.js │ │ │ │ ├── angular-locale_ti-er.js │ │ │ │ ├── angular-locale_ti-et.js │ │ │ │ ├── angular-locale_ti.js │ │ │ │ ├── angular-locale_tig-er.js │ │ │ │ ├── angular-locale_tig.js │ │ │ │ ├── angular-locale_tl.js │ │ │ │ ├── angular-locale_tn-bw.js │ │ │ │ ├── angular-locale_tn-za.js │ │ │ │ ├── angular-locale_tn.js │ │ │ │ ├── angular-locale_to-to.js │ │ │ │ ├── angular-locale_to.js │ │ │ │ ├── angular-locale_tr-cy.js │ │ │ │ ├── angular-locale_tr-tr.js │ │ │ │ ├── angular-locale_tr.js │ │ │ │ ├── angular-locale_ts-za.js │ │ │ │ ├── angular-locale_ts.js │ │ │ │ ├── angular-locale_twq-ne.js │ │ │ │ ├── angular-locale_twq.js │ │ │ │ ├── angular-locale_tzm-latn-ma.js │ │ │ │ ├── angular-locale_tzm-latn.js │ │ │ │ ├── angular-locale_tzm.js │ │ │ │ ├── angular-locale_ug-arab-cn.js │ │ │ │ ├── angular-locale_ug-arab.js │ │ │ │ ├── angular-locale_ug.js │ │ │ │ ├── angular-locale_uk-ua.js │ │ │ │ ├── angular-locale_uk.js │ │ │ │ ├── angular-locale_ur-in.js │ │ │ │ ├── angular-locale_ur-pk.js │ │ │ │ ├── angular-locale_ur.js │ │ │ │ ├── angular-locale_uz-arab-af.js │ │ │ │ ├── angular-locale_uz-arab.js │ │ │ │ ├── angular-locale_uz-cyrl-uz.js │ │ │ │ ├── angular-locale_uz-cyrl.js │ │ │ │ ├── angular-locale_uz-latn-uz.js │ │ │ │ ├── angular-locale_uz-latn.js │ │ │ │ ├── angular-locale_uz.js │ │ │ │ ├── angular-locale_vai-latn-lr.js │ │ │ │ ├── angular-locale_vai-latn.js │ │ │ │ ├── angular-locale_vai-vaii-lr.js │ │ │ │ ├── angular-locale_vai-vaii.js │ │ │ │ ├── angular-locale_vai.js │ │ │ │ ├── angular-locale_ve-za.js │ │ │ │ ├── angular-locale_ve.js │ │ │ │ ├── angular-locale_vi-vn.js │ │ │ │ ├── angular-locale_vi.js │ │ │ │ ├── angular-locale_vo-001.js │ │ │ │ ├── angular-locale_vo.js │ │ │ │ ├── angular-locale_vun-tz.js │ │ │ │ ├── angular-locale_vun.js │ │ │ │ ├── angular-locale_wae-ch.js │ │ │ │ ├── angular-locale_wae.js │ │ │ │ ├── angular-locale_wal-et.js │ │ │ │ ├── angular-locale_wal.js │ │ │ │ ├── angular-locale_xh-za.js │ │ │ │ ├── angular-locale_xh.js │ │ │ │ ├── angular-locale_xog-ug.js │ │ │ │ ├── angular-locale_xog.js │ │ │ │ ├── angular-locale_yav-cm.js │ │ │ │ ├── angular-locale_yav.js │ │ │ │ ├── angular-locale_yi-001.js │ │ │ │ ├── angular-locale_yi.js │ │ │ │ ├── angular-locale_yo-bj.js │ │ │ │ ├── angular-locale_yo-ng.js │ │ │ │ ├── angular-locale_yo.js │ │ │ │ ├── angular-locale_zgh-ma.js │ │ │ │ ├── angular-locale_zgh.js │ │ │ │ ├── angular-locale_zh-cn.js │ │ │ │ ├── angular-locale_zh-hans-cn.js │ │ │ │ ├── angular-locale_zh-hans-hk.js │ │ │ │ ├── angular-locale_zh-hans-mo.js │ │ │ │ ├── angular-locale_zh-hans-sg.js │ │ │ │ ├── angular-locale_zh-hans.js │ │ │ │ ├── angular-locale_zh-hant-hk.js │ │ │ │ ├── angular-locale_zh-hant-mo.js │ │ │ │ ├── angular-locale_zh-hant-tw.js │ │ │ │ ├── angular-locale_zh-hant.js │ │ │ │ ├── angular-locale_zh-hk.js │ │ │ │ ├── angular-locale_zh-tw.js │ │ │ │ ├── angular-locale_zh.js │ │ │ │ ├── angular-locale_zu-za.js │ │ │ │ └── angular-locale_zu.js │ │ │ ├── jquery-1.10.2.intellisense.js │ │ │ ├── jquery-1.10.2.js │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ ├── modernizr-2.6.2.js │ │ │ ├── respond.js │ │ │ ├── typings/ │ │ │ │ ├── angularjs/ │ │ │ │ │ ├── angular-animate.d.ts │ │ │ │ │ ├── angular-component-router.d.ts │ │ │ │ │ ├── angular-cookies.d.ts │ │ │ │ │ ├── angular-mocks.d.ts │ │ │ │ │ ├── angular-resource.d.ts │ │ │ │ │ ├── angular-route.d.ts │ │ │ │ │ ├── angular-sanitize.d.ts │ │ │ │ │ └── angular.d.ts │ │ │ │ ├── es6-promise/ │ │ │ │ │ └── es6-promise.d.ts │ │ │ │ └── jquery/ │ │ │ │ └── jquery.d.ts │ │ │ └── version.json │ │ ├── Startup.cs │ │ ├── Views/ │ │ │ ├── Home/ │ │ │ │ ├── Angular.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── JQuery.cshtml │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ └── packages.config │ ├── Reinforced.Typings.Samples.sln │ └── Simple/ │ └── Reinforced.Typings.Samples.Simple.Quickstart/ │ ├── App_Start/ │ │ └── RouteConfig.cs │ ├── Controllers/ │ │ └── HomeController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Models/ │ │ └── OrderViewModel.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Reinforced.Typings.Samples.Simple.Quickstart.csproj │ ├── Reinforced.Typings.settings.xml │ ├── Scripts/ │ │ ├── MyApplication/ │ │ │ └── .gitignore │ │ ├── app/ │ │ │ ├── HomeIndex.js │ │ │ ├── HomeIndex.ts │ │ │ ├── Server.js │ │ │ └── Server.ts │ │ ├── jquery-2.1.4.intellisense.js │ │ ├── jquery-2.1.4.js │ │ └── typings/ │ │ └── jquery/ │ │ └── jquery.d.ts │ ├── Views/ │ │ ├── Home/ │ │ │ └── Index.cshtml │ │ ├── Shared/ │ │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config ├── TestFluentAssembly/ │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── TestFluentAssembly.Dev.csproj │ ├── TestFluentAssembly.NETCore.csproj │ ├── TestFluentAssembly.csproj │ └── TwoInterfaces.cs ├── cake/ │ ├── .config/ │ │ └── dotnet-tools.json │ ├── .gitignore │ └── build.cake └── stuff/ ├── Reinforced.Typings.Multi.targets ├── Reinforced.Typings.nuspec ├── Reinforced.Typings.settings.xml ├── Reinforced.Typings.targets ├── license.txt ├── readme.txt └── relnotes/ ├── 1.4.96.md ├── 1.4.97.md ├── 1.5.1.md ├── 1.5.2.md ├── 1.5.3.md ├── 1.5.4.md ├── 1.5.6.md ├── 1.5.7.md ├── 1.5.8.md ├── 1.5.9.md ├── 1.5.md ├── 1.6.0.md ├── 1.6.1.md ├── 1.6.2.md ├── 1.6.3.md ├── 1.6.4.md ├── 1.6.5.md ├── 1.6.6.md └── 1.6.7.md