diff --git a/.github/workflows/deploy-dev.yml b/.github/workflows/deploy-dev.yml index a4e9617..4fb0bce 100644 --- a/.github/workflows/deploy-dev.yml +++ b/.github/workflows/deploy-dev.yml @@ -153,11 +153,11 @@ jobs: CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} run: | - # Deploy to static preview worker + # Deploy to preview environment WORKER_NAME="abuseipdb-preview" DEPLOYMENT_OUTPUT=$(npx wrangler deploy \ - --name "${WORKER_NAME}" \ + --env preview \ --compatibility-date 2024-06-08 \ cloudflare-worker.js 2>&1) diff --git a/Layout/MainLayout.razor b/Layout/MainLayout.razor index c945227..751ebba 100644 --- a/Layout/MainLayout.razor +++ b/Layout/MainLayout.razor @@ -29,16 +29,16 @@ Build: @BuildInfo
- + Azure - + AWS - + GCP - + OCI diff --git a/Pages/Api.razor b/Pages/Api.razor new file mode 100644 index 0000000..13009f1 --- /dev/null +++ b/Pages/Api.razor @@ -0,0 +1,576 @@ +@page "/api" +@inject HttpClient Http +@inject Albatross.Services.AbuseIPDBService AbuseIPDBService +@inject NavigationManager NavigationManager +@inject IJSRuntime JSRuntime +@using System.Text.Json +@using System.Net +@using System.Diagnostics + +@if (isInteractiveMode) +{ + + + + + + + + + + + + +
+
+

🔍 Albatross API

+

Interactive IP Address Analysis & Reputation API

+
+
+ +
+
+
📘 API Overview
+
+ Comprehensive IP address analysis including cloud provider detection, + abuse reputation checking via AbuseIPDB, ASN information from Cloudflare Radar, and + AI-powered risk assessment. +
+
+ +
+
+ GET + /api +
+
+

Parameters

+ +
+
+ ipaddress + REQUIRED +
+
+ The IPv4 or IPv6 address to analyze. Must be a valid public routable IP address. +
+ +
Example: 8.8.8.8
+
+ +
+
+ cloudprovider + OPTIONAL +
+
+ Filter cloud provider matches. Options: none, all, azure, aws, gcp, oracle. +
+ +
+ +
+
+ maxageindays + OPTIONAL +
+
+ Maximum age in days for abuse reports. Default: 30 days. +
+ +
+ +
+
+ verbose + OPTIONAL +
+
+ Include detailed abuse reports in the response. Default: true. +
+ +
+ +
+
+ enableai + OPTIONAL +
+
+ Enable AI-powered risk analysis using Cloudflare Workers AI. Default: true. +
+ +
+ +
+
+ API Hostname + OPTIONAL +
+
+ Choose the hostname for the generated API URL. API hostnames bypass authentication. +
+ +
+ +
+ +
+ + @if (!string.IsNullOrEmpty(jsonOutput)) + { +
+
+

Response

+ +
+ @if (showResponse) + { +
+ + @(isSuccess ? "✓ 200 OK" : "✗ Error") + + + Execution time: @executionTime ms + +
+ @if (!string.IsNullOrEmpty(requestUrl)) + { +
+
📋 Request URL:
+
+ @requestUrl +
+
+ } +
+
@jsonOutput
+
+ } +
+ } +
+
+ +
+
+ + + + +} +else +{ + + + + + + + + + + +
@jsonOutput
+ + +} + +@code { + private string ipAddress = ""; + private string cloudProvider = ""; + private int maxAgeInDays = 30; + private string verbose = "true"; + private string enableAi = "true"; + private string apiHostname = "current"; + + private bool isInteractiveMode = false; + private bool isLoading = false; + private bool isSuccess = false; + private long executionTime = 0; + private string jsonOutput = string.Empty; + private string requestUrl = string.Empty; + private bool showResponse = true; + + protected override async Task OnInitializedAsync() + { + var uri = new Uri(NavigationManager.Uri); + var query = System.Web.HttpUtility.ParseQueryString(uri.Query); + + var queryIpAddress = query["ipaddress"]; + + if (string.IsNullOrEmpty(queryIpAddress)) + { + isInteractiveMode = true; + } + else + { + isInteractiveMode = false; + await ExecuteApiCallFromQuery(); + } + } + + private async Task ExecuteApiCall() + { + if (string.IsNullOrWhiteSpace(ipAddress)) + { + jsonOutput = BuildErrorResponse("Missing required parameter: ipaddress", "MISSING_PARAMETER", 400, "", new Stopwatch()); + isSuccess = false; + await InvokeAsync(StateHasChanged); + await JSRuntime.InvokeVoidAsync("highlightApiResponse"); + return; + } + + // Clear previous results + jsonOutput = string.Empty; + requestUrl = string.Empty; + + isLoading = true; + await InvokeAsync(StateHasChanged); + + var startTime = Stopwatch.StartNew(); + var requestId = Guid.NewGuid().ToString("N").Substring(0, 16); + + // Build the request URL + string baseUri; + if (apiHostname == "current") + { + baseUri = NavigationManager.BaseUri.TrimEnd('/'); + } + else + { + baseUri = $"https://{apiHostname}"; + } + + var queryParams = new List { $"ipaddress={Uri.EscapeDataString(ipAddress)}" }; + + if (!string.IsNullOrEmpty(cloudProvider)) + queryParams.Add($"cloudprovider={Uri.EscapeDataString(cloudProvider)}"); + + if (maxAgeInDays != 30) + queryParams.Add($"maxageindays={maxAgeInDays}"); + + if (verbose.ToLower() != "true") + queryParams.Add($"verbose={verbose.ToLower()}"); + + if (enableAi.ToLower() != "true") + queryParams.Add($"enableai={enableAi.ToLower()}"); + + requestUrl = $"{baseUri}/api?{string.Join("&", queryParams)}"; + + try + { + if (!IsValidIPAddress(ipAddress)) + { + jsonOutput = BuildErrorResponse("Invalid IP address. Please enter a valid public routable IPv4 or IPv6 address.", "INVALID_IP", 400, requestId, startTime); + isSuccess = false; + return; + } + + string actualIpAddress = ipAddress.Contains(';') ? ipAddress.Split(';', 2)[0].Trim() : ipAddress.Trim(); + bool verboseBool = verbose.ToLower() == "true"; + bool enableAiBool = enableAi.ToLower() == "true"; + string? cloudProviderValue = string.IsNullOrEmpty(cloudProvider) ? null : cloudProvider; + + Albatross.Services.AbuseIPDBApiResponse reputationResults; + + // If using a specific API hostname, make direct HTTP call + if (apiHostname != "current") + { + var response = await Http.GetAsync(requestUrl); + var jsonString = await response.Content.ReadAsStringAsync(); + reputationResults = JsonSerializer.Deserialize(jsonString, new JsonSerializerOptions { PropertyNameCaseInsensitive = true }) + ?? throw new Exception("Failed to deserialize API response"); + } + else + { + // Use the service which goes through the default worker + reputationResults = await AbuseIPDBService.CheckIPAsync(actualIpAddress, maxAgeInDays, verboseBool, enableAiBool, cloudProviderValue); + } + + jsonOutput = BuildSuccessResponse(actualIpAddress, reputationResults, requestId, startTime); + isSuccess = true; + showResponse = true; + } + catch (Exception ex) + { + jsonOutput = BuildErrorResponse($"Internal server error: {ex.Message}", "INTERNAL_ERROR", 500, requestId, startTime); + isSuccess = false; + showResponse = true; + } + finally + { + executionTime = startTime.ElapsedMilliseconds; + isLoading = false; + await InvokeAsync(StateHasChanged); + await Task.Delay(100); + await JSRuntime.InvokeVoidAsync("highlightApiResponse"); + } + } + + private async Task ExecuteApiCallFromQuery() + { + var startTime = Stopwatch.StartNew(); + var requestId = Guid.NewGuid().ToString("N").Substring(0, 16); + + try + { + var uri = new Uri(NavigationManager.Uri); + var query = System.Web.HttpUtility.ParseQueryString(uri.Query); + + var queryIpAddress = query["ipaddress"]; + var maxAgeInDaysStr = query["maxageindays"] ?? "30"; + var verboseStr = query["verbose"] ?? "true"; + var enableAiStr = query["enableai"] ?? "true"; + var cloudProviderValue = query["cloudprovider"]; + + if (string.IsNullOrEmpty(queryIpAddress)) + { + jsonOutput = BuildErrorResponse("Missing required parameter: ipaddress", "MISSING_PARAMETER", 400, requestId, startTime); + return; + } + + if (!int.TryParse(maxAgeInDaysStr, out int maxAge)) + { + maxAge = 30; + } + bool verboseBool = verboseStr.ToLower() == "true"; + bool enableAiBool = enableAiStr.ToLower() == "true"; + + if (!IsValidIPAddress(queryIpAddress)) + { + jsonOutput = BuildErrorResponse("Invalid IP address. Please enter a valid public routable IPv4 or IPv6 address.", "INVALID_IP", 400, requestId, startTime); + return; + } + + string actualIpAddress = queryIpAddress.Contains(';') ? queryIpAddress.Split(';', 2)[0].Trim() : queryIpAddress.Trim(); + + var reputationResults = await AbuseIPDBService.CheckIPAsync(actualIpAddress, maxAge, verboseBool, enableAiBool, cloudProviderValue); + + jsonOutput = BuildSuccessResponse(actualIpAddress, reputationResults, requestId, startTime); + } + catch (Exception ex) + { + jsonOutput = BuildErrorResponse($"Internal server error: {ex.Message}", "INTERNAL_ERROR", 500, requestId, startTime); + } + } + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + if (!string.IsNullOrEmpty(jsonOutput)) + { + if (isInteractiveMode) + { + await JSRuntime.InvokeVoidAsync("highlightApiResponse"); + } + else + { + await JSRuntime.InvokeVoidAsync("highlightJson"); + } + } + } + + private string BuildSuccessResponse(string ipAddressValue, Albatross.Services.AbuseIPDBApiResponse reputationData, string requestId, Stopwatch timer) + { + timer.Stop(); + + var response = new + { + success = true, + data = new + { + ipAddress = ipAddressValue, + cloudMatches = reputationData.CloudMatches, + reputation = reputationData.Data, + asnInfo = reputationData.AsnInfo, + aiReputation = reputationData.AIReputation + }, + metadata = new + { + requestId = requestId, + timestamp = DateTime.UtcNow.ToString("o"), + executionTimeMs = timer.ElapsedMilliseconds, + sources = new + { + cloudSearch = reputationData.CloudMatches != null ? "success" : "not-requested", + abuseipdb = reputationData.Data != null ? "success" : "error", + radar = reputationData.AsnInfo?.Success == true ? "success" : "error", + ai = reputationData.AIReputation?.Success == true ? "success" : (reputationData.AIReputation != null ? "error" : "disabled") + }, + workerInfo = reputationData.WorkerInfo + } + }; + + var options = new JsonSerializerOptions + { + WriteIndented = true, + PropertyNamingPolicy = JsonNamingPolicy.CamelCase, + DefaultIgnoreCondition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull + }; + + return JsonSerializer.Serialize(response, options); + } + + private string BuildErrorResponse(string errorMessage, string errorCode, int statusCode, string requestId, Stopwatch timer) + { + timer.Stop(); + + var response = new + { + success = false, + error = errorMessage, + code = errorCode, + status = statusCode, + metadata = new + { + requestId = requestId, + timestamp = DateTime.UtcNow.ToString("o"), + executionTimeMs = timer.ElapsedMilliseconds + } + }; + + var options = new JsonSerializerOptions + { + WriteIndented = true, + PropertyNamingPolicy = JsonNamingPolicy.CamelCase + }; + + return JsonSerializer.Serialize(response, options); + } + + private bool IsValidIPAddress(string input) + { + string actualIpAddress = input.Contains(';') ? input.Split(';', 2)[0].Trim() : input.Trim(); + if (!IPAddress.TryParse(actualIpAddress, out IPAddress? parsedIP)) + return false; + return IsPublicRoutableIP(parsedIP); + } + + private bool IsPublicRoutableIP(IPAddress ip) + { + if (ip.AddressFamily == System.Net.Sockets.AddressFamily.InterNetwork) + { + return IsPublicIPv4(ip); + } + else if (ip.AddressFamily == System.Net.Sockets.AddressFamily.InterNetworkV6) + { + return IsPublicIPv6(ip); + } + return false; + } + + private bool IsPublicIPv4(IPAddress ip) + { + byte[] bytes = ip.GetAddressBytes(); + if (bytes[0] == 0) return false; + if (bytes[0] == 10) return false; + if (bytes[0] == 100 && (bytes[1] & 0xC0) == 64) return false; + if (bytes[0] == 127) return false; + if (bytes[0] == 169 && bytes[1] == 254) return false; + if (bytes[0] == 172 && (bytes[1] & 0xF0) == 16) return false; + if (bytes[0] == 192 && bytes[1] == 0 && bytes[2] == 0) return false; + if (bytes[0] == 192 && bytes[1] == 0 && bytes[2] == 2) return false; + if (bytes[0] == 192 && bytes[1] == 88 && bytes[2] == 99) return false; + if (bytes[0] == 192 && bytes[1] == 168) return false; + if (bytes[0] == 198 && (bytes[1] & 0xFE) == 18) return false; + if (bytes[0] == 198 && bytes[1] == 51 && bytes[2] == 100) return false; + if (bytes[0] == 203 && bytes[1] == 0 && bytes[2] == 113) return false; + if ((bytes[0] & 0xF0) == 224) return false; + if ((bytes[0] & 0xF0) == 240) return false; + if (bytes[0] == 255 && bytes[1] == 255 && bytes[2] == 255 && bytes[3] == 255) return false; + return true; + } + + private bool IsPublicIPv6(IPAddress ip) + { + byte[] bytes = ip.GetAddressBytes(); + if (ip.Equals(IPAddress.IPv6Loopback)) return false; + if (ip.Equals(IPAddress.IPv6Any)) return false; + if (bytes[0] == 0 && bytes[1] == 0 && bytes[2] == 0 && bytes[3] == 0 && + bytes[4] == 0 && bytes[5] == 0 && bytes[6] == 0 && bytes[7] == 0 && + bytes[8] == 0 && bytes[9] == 0 && bytes[10] == 0xFF && bytes[11] == 0xFF) return false; + if (bytes[0] == 0xFE && (bytes[1] & 0xC0) == 0x80) return false; + if ((bytes[0] & 0xFE) == 0xFC) return false; + if (bytes[0] == 0xFF) return false; + if (bytes[0] == 0x20 && bytes[1] == 0x01 && bytes[2] == 0x0D && bytes[3] == 0xB8) return false; + return true; + } +} diff --git a/Pages/Api.razor.backup b/Pages/Api.razor.backup new file mode 100644 index 0000000..235dc74 --- /dev/null +++ b/Pages/Api.razor.backup @@ -0,0 +1,297 @@ +@page "/api" +@inject HttpClient Http +@inject Albatross.Services.AbuseIPDBService AbuseIPDBService +@inject NavigationManager NavigationManager +@inject IJSRuntime JSRuntime +@using System.Text.Json +@using System.Net +@using System.Diagnostics + + + + + + + + + + + + +
@jsonOutput
+ + + +@code { + private string jsonOutput = string.Empty; + + protected override async Task OnInitializedAsync() + { + var startTime = Stopwatch.StartNew(); + var requestId = Guid.NewGuid().ToString("N").Substring(0, 16); + + try + { + // Parse query parameters + var uri = new Uri(NavigationManager.Uri); + var query = System.Web.HttpUtility.ParseQueryString(uri.Query); + + var ipAddress = query["ipaddress"]; + var maxAgeInDaysStr = query["maxageindays"] ?? "30"; + var verboseStr = query["verbose"] ?? "true"; + var enableAiStr = query["enableai"] ?? "true"; + var cloudProvider = query["cloudprovider"]; // Optional: aws, azure, gcp, oracle, or all + + // Validate required parameter + if (string.IsNullOrEmpty(ipAddress)) + { + jsonOutput = BuildErrorResponse("Missing required parameter: ipaddress", "MISSING_PARAMETER", 400, requestId, startTime); + return; + } + + // Parse optional parameters + if (!int.TryParse(maxAgeInDaysStr, out int maxAgeInDays)) + { + maxAgeInDays = 30; + } + bool verbose = verboseStr.ToLower() == "true"; + bool enableAi = enableAiStr.ToLower() == "true"; + + // Validate IP address + if (!IsValidIPAddress(ipAddress)) + { + jsonOutput = BuildErrorResponse("Invalid IP address. Please enter a valid public routable IPv4 or IPv6 address (private/reserved ranges are not allowed).", "INVALID_IP", 400, requestId, startTime); + return; + } + + // Extract just the IP part (in case format is ip;maxdays) + string actualIpAddress = ipAddress.Contains(';') + ? ipAddress.Split(';', 2)[0].Trim() + : ipAddress.Trim(); + + IPAddress parsedIp = IPAddress.Parse(actualIpAddress); + + // Perform reputation check (worker handles cloud search) + var reputationResults = await AbuseIPDBService.CheckIPAsync(actualIpAddress, maxAgeInDays, verbose, enableAi, cloudProvider); + + // Build unified response + jsonOutput = BuildSuccessResponse(actualIpAddress, reputationResults, requestId, startTime); + } + catch (Exception ex) + { + jsonOutput = BuildErrorResponse($"Internal server error: {ex.Message}", "INTERNAL_ERROR", 500, requestId, startTime); + } + } + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + if (firstRender && !string.IsNullOrEmpty(jsonOutput)) + { + await JSRuntime.InvokeVoidAsync("highlightJson"); + } + } + + private string BuildSuccessResponse(string ipAddress, Albatross.Services.AbuseIPDBApiResponse reputationData, string requestId, Stopwatch timer) + { + timer.Stop(); + + var response = new + { + success = true, + data = new + { + ipAddress = ipAddress, + cloudMatches = reputationData.CloudMatches, + reputation = reputationData.Data, + asnInfo = reputationData.AsnInfo, + aiReputation = reputationData.AIReputation + }, + metadata = new + { + requestId = requestId, + timestamp = DateTime.UtcNow.ToString("o"), + executionTimeMs = timer.ElapsedMilliseconds, + sources = new + { + cloudSearch = reputationData.CloudMatches != null ? "success" : "not-requested", + abuseipdb = reputationData.Data != null ? "success" : "error", + radar = reputationData.AsnInfo?.Success == true ? "success" : "error", + ai = reputationData.AIReputation?.Success == true ? "success" : (reputationData.AIReputation != null ? "error" : "disabled") + }, + workerInfo = reputationData.WorkerInfo + } + }; + + var options = new JsonSerializerOptions + { + WriteIndented = true, + PropertyNamingPolicy = JsonNamingPolicy.CamelCase, + DefaultIgnoreCondition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull + }; + + return JsonSerializer.Serialize(response, options); + } + + private string BuildErrorResponse(string errorMessage, string errorCode, int statusCode, string requestId, Stopwatch timer) + { + timer.Stop(); + + var response = new + { + success = false, + error = errorMessage, + code = errorCode, + status = statusCode, + metadata = new + { + requestId = requestId, + timestamp = DateTime.UtcNow.ToString("o"), + executionTimeMs = timer.ElapsedMilliseconds + } + }; + + var options = new JsonSerializerOptions + { + WriteIndented = true, + PropertyNamingPolicy = JsonNamingPolicy.CamelCase + }; + + return JsonSerializer.Serialize(response, options); + } + + private bool IsValidIPAddress(string input) + { + string actualIpAddress = input.Contains(';') ? input.Split(';', 2)[0].Trim() : input.Trim(); + if (!IPAddress.TryParse(actualIpAddress, out IPAddress? parsedIP)) + return false; + return IsPublicRoutableIP(parsedIP); + } + + private bool IsPublicRoutableIP(IPAddress ip) + { + if (ip.AddressFamily == System.Net.Sockets.AddressFamily.InterNetwork) + { + return IsPublicIPv4(ip); + } + else if (ip.AddressFamily == System.Net.Sockets.AddressFamily.InterNetworkV6) + { + return IsPublicIPv6(ip); + } + return false; + } + + private bool IsPublicIPv4(IPAddress ip) + { + byte[] bytes = ip.GetAddressBytes(); + if (bytes[0] == 0) return false; + if (bytes[0] == 10) return false; + if (bytes[0] == 100 && (bytes[1] & 0xC0) == 64) return false; + if (bytes[0] == 127) return false; + if (bytes[0] == 169 && bytes[1] == 254) return false; + if (bytes[0] == 172 && (bytes[1] & 0xF0) == 16) return false; + if (bytes[0] == 192 && bytes[1] == 0 && bytes[2] == 0) return false; + if (bytes[0] == 192 && bytes[1] == 0 && bytes[2] == 2) return false; + if (bytes[0] == 192 && bytes[1] == 88 && bytes[2] == 99) return false; + if (bytes[0] == 192 && bytes[1] == 168) return false; + if (bytes[0] == 198 && (bytes[1] & 0xFE) == 18) return false; + if (bytes[0] == 198 && bytes[1] == 51 && bytes[2] == 100) return false; + if (bytes[0] == 203 && bytes[1] == 0 && bytes[2] == 113) return false; + if ((bytes[0] & 0xF0) == 224) return false; + if ((bytes[0] & 0xF0) == 240) return false; + if (bytes[0] == 255 && bytes[1] == 255 && bytes[2] == 255 && bytes[3] == 255) return false; + return true; + } + + private bool IsPublicIPv6(IPAddress ip) + { + byte[] bytes = ip.GetAddressBytes(); + if (ip.Equals(IPAddress.IPv6Loopback)) return false; + if (ip.Equals(IPAddress.IPv6Any)) return false; + if (bytes[0] == 0 && bytes[1] == 0 && bytes[2] == 0 && bytes[3] == 0 && + bytes[4] == 0 && bytes[5] == 0 && bytes[6] == 0 && bytes[7] == 0 && + bytes[8] == 0 && bytes[9] == 0 && bytes[10] == 0xFF && bytes[11] == 0xFF) return false; + if (bytes[0] == 0xFE && (bytes[1] & 0xC0) == 0x80) return false; + if ((bytes[0] & 0xFE) == 0xFC) return false; + if (bytes[0] == 0xFF) return false; + if (bytes[0] == 0x20 && bytes[1] == 0x01 && bytes[2] == 0x0D && bytes[3] == 0xB8) return false; + return true; + } + + private bool IsIpInRange(IPAddress ip, string cidrRange) + { + try + { + string[] parts = cidrRange.Split('/'); + if (parts.Length != 2) return false; + IPAddress networkAddress = IPAddress.Parse(parts[0]); + int prefixLength = int.Parse(parts[1]); + byte[] ipBytes = ip.GetAddressBytes(); + byte[] networkBytes = networkAddress.GetAddressBytes(); + if (ipBytes.Length != networkBytes.Length) return false; + int maxPrefixLength = ipBytes.Length * 8; + if (prefixLength < 0 || prefixLength > maxPrefixLength) return false; + int numBytes = prefixLength / 8; + int remainingBits = prefixLength % 8; + for (int i = 0; i < numBytes && i < ipBytes.Length; i++) + { + if (ipBytes[i] != networkBytes[i]) return false; + } + if (remainingBits > 0 && numBytes < ipBytes.Length) + { + int mask = (0xFF << (8 - remainingBits)) & 0xFF; + if ((ipBytes[numBytes] & mask) != (networkBytes[numBytes] & mask)) return false; + } + return true; + } + catch { return false; } + } +} diff --git a/Pages/Home.razor b/Pages/Home.razor index 486ac44..dc41952 100644 --- a/Pages/Home.razor +++ b/Pages/Home.razor @@ -107,7 +107,11 @@ \____/_/\____/\__,_/\__,_/ /___/_/ /____/\___/\__,_/_/ \___/_/ /_/
--> -CloudIPSearch
+@{ + var currentMonth = DateTime.Now.Month; + var logoPath = currentMonth == 12 ? "/images/ascii-text-art-christmas.png" : "/images/ascii-text-art.png"; +} +CloudIPSearch
ascii-text-art-albatross

@@ -519,10 +526,10 @@ // Load all manifest files in parallel for optimal performance var downloadTasks = new[] { - Http.GetStringAsync("ip-manifests/Azure.json"), - Http.GetStringAsync("ip-manifests/AWS.json"), - Http.GetStringAsync("ip-manifests/GCP.json"), - Http.GetStringAsync("ip-manifests/Oracle.json") + Http.GetStringAsync("ip-manifests/azure.json"), + Http.GetStringAsync("ip-manifests/aws.json"), + Http.GetStringAsync("ip-manifests/gcp.json"), + Http.GetStringAsync("ip-manifests/oracle.json") }; statusMessage = "Loading cloud IP manifests..."; diff --git a/Services/AbuseIPDBService.cs b/Services/AbuseIPDBService.cs index efab371..f37db47 100644 --- a/Services/AbuseIPDBService.cs +++ b/Services/AbuseIPDBService.cs @@ -26,6 +26,9 @@ public class AbuseIPDBApiResponse [JsonPropertyName("asnInfo")] public AsnInfo? AsnInfo { get; set; } + [JsonPropertyName("cloudMatches")] + public object? CloudMatches { get; set; } + [JsonPropertyName("abuseIPDBError")] public string? AbuseIPDBError { get; set; } @@ -431,8 +434,9 @@ private string GetTimestamp() /// Reports older than this many days won't be included (default 30). This is overridden if specified in ipAddress parameter /// Whether to include detailed report information /// Whether to enable AI reputation analysis (default true) + /// Optional cloud provider to search: aws, azure, gcp, oracle, or all /// Complete AbuseIPDB information for the specified IP address - public async Task CheckIPAsync(string ipAddress, int maxAgeInDays = 30, bool verbose = true, bool enableAI = true) + public async Task CheckIPAsync(string ipAddress, int maxAgeInDays = 30, bool verbose = true, bool enableAI = true, string? cloudProvider = null) { // Parse the input to extract IP address and optionally maxAgeInDays string actualIpAddress; @@ -466,10 +470,20 @@ public async Task CheckIPAsync(string ipAddress, int maxAg var enableAIParam = enableAI.ToString().ToLower(); var timestamp = GetTimestamp(); - // Include timestamp as a URI parameter - var requestUrl = - $"{_cloudflareWorkerUrl}?ipAddress={actualIpAddress}&maxAgeInDays={actualMaxAgeInDays}&verbose={verboseParam}&enableAI={enableAIParam}×tamp={timestamp}" - .ToLower(); + // Build request URL with optional cloudprovider parameter + var requestUrl = $"{_cloudflareWorkerUrl}?ipAddress={actualIpAddress}&maxAgeInDays={actualMaxAgeInDays}&verbose={verboseParam}&enableAI={enableAIParam}"; + + // Add cloudprovider parameter if specified (lowercase to match worker) + if (!string.IsNullOrEmpty(cloudProvider)) + { + requestUrl += $"&cloudprovider={cloudProvider.ToLower()}"; + } + + // Add timestamp + requestUrl += $"×tamp={timestamp}"; + + // Normalize to lowercase for HMAC + requestUrl = requestUrl.ToLower(); Console.WriteLine($"Requesting: {requestUrl}"); // Create request message to add custom headers diff --git a/cloudflare-worker.template.js b/cloudflare-worker.template.js index 1d3f8d5..bbf25b8 100644 --- a/cloudflare-worker.template.js +++ b/cloudflare-worker.template.js @@ -269,8 +269,19 @@ async function handleCombinedRequest(request, env) { referer: request.headers.get('Referer') }); + // Check if this is a request to the dedicated API hostname (bypass authentication for API clients) + const requestUrl = new URL(request.url); + const hostname = requestUrl.hostname.toLowerCase(); + const isApiHostname = hostname === 'albatross-api.devnomadic.com' || hostname === 'albatross-apipreview.devnomadic.com'; + + console.log('API hostname check:', { + hostname, + isApiHostname + }); + // Enforce browser-only access with proper Origin header validation // This ensures the worker can only be called from legitimate browser requests + // Skip this check for dedicated API hostnames (to support curl, Postman, etc.) const userAgent = request.headers.get('User-Agent') || ''; const referer = request.headers.get('Referer') || ''; @@ -287,7 +298,8 @@ async function handleCombinedRequest(request, env) { const hasValidOrigin = origin && isAllowedOrigin(origin); // Block requests that don't appear to be from a legitimate browser/SPA - if (!isBrowserRequest || !hasValidOrigin) { + // Skip this check for dedicated API hostnames + if (!isApiHostname && (!isBrowserRequest || !hasValidOrigin)) { console.log('Blocked non-browser request:', { origin, userAgent: userAgent.substring(0, 50), @@ -325,67 +337,96 @@ async function handleCombinedRequest(request, env) { console.log('Normalized URL for HMAC:', normalizedUrl); // Extract and validate timestamp before HMAC validation - const urlForTimestamp = new URL(normalizedUrl); - const timestamp = urlForTimestamp.searchParams.get('timestamp'); - - if (!timestamp) { - return new Response( - JSON.stringify({ - error: "Unauthorized: Missing timestamp parameter", - buildInfo: BUILD_INFO - }), - { - status: 401, - headers: { - 'Content-Type': 'application/json', - ...corsHeaders(origin) + // Skip timestamp and HMAC validation for dedicated API hostnames + if (!isApiHostname) { + const urlForTimestamp = new URL(normalizedUrl); + const timestamp = urlForTimestamp.searchParams.get('timestamp'); + + if (!timestamp) { + return new Response( + JSON.stringify({ + error: "Unauthorized: Missing timestamp parameter", + buildInfo: BUILD_INFO + }), + { + status: 401, + headers: { + 'Content-Type': 'application/json', + ...corsHeaders(origin) + } } - } - ); - } - - if (!isTimestampValid(timestamp)) { - return new Response( - JSON.stringify({ - error: "Unauthorized: Invalid or expired timestamp", - buildInfo: BUILD_INFO - }), - { - status: 401, - headers: { - 'Content-Type': 'application/json', - ...corsHeaders(origin) + ); + } + + if (!isTimestampValid(timestamp)) { + return new Response( + JSON.stringify({ + error: "Unauthorized: Invalid or expired timestamp", + buildInfo: BUILD_INFO + }), + { + status: 401, + headers: { + 'Content-Type': 'application/json', + ...corsHeaders(origin) + } } - } - ); - } - - // Validate the HMAC token - if (!workerToken || !(await validateHmacToken(workerToken, normalizedUrl))) { - return new Response( - JSON.stringify({ - error: "Unauthorized: Invalid authentication token", - buildInfo: BUILD_INFO - }), - { - status: 401, - headers: { - 'Content-Type': 'application/json', - ...corsHeaders(origin) + ); + } + + // Validate the HMAC token + if (!workerToken || !(await validateHmacToken(workerToken, normalizedUrl))) { + return new Response( + JSON.stringify({ + error: "Unauthorized: Invalid authentication token", + buildInfo: BUILD_INFO + }), + { + status: 401, + headers: { + 'Content-Type': 'application/json', + ...corsHeaders(origin) + } } - } - ); + ); + } + + // Check if the origin is allowed (if an Origin header is present) + if (origin && !isAllowedOrigin(origin)) { + return new Response( + JSON.stringify({ + error: "Unauthorized: Origin not allowed", + buildInfo: BUILD_INFO + }), + { + status: 403, + headers: { + 'Content-Type': 'application/json', + ...corsHeaders(origin) + } + } + ); + } } - // Check if the origin is allowed (if an Origin header is present) - if (origin && !isAllowedOrigin(origin)) { + // Get URL parameters (use normalized lowercase URL for parsing) + const url = new URL(isApiHostname ? request.url.toLowerCase() : normalizedUrl); + const ipAddress = url.searchParams.get('ipaddress'); // lowercase parameter name + const maxAgeInDays = url.searchParams.get('maxageindays') || 30; // lowercase parameter name + const verbose = url.searchParams.get('verbose') === 'true'; + const enableAI = url.searchParams.get('enableai') === 'true'; // AI toggle parameter + const cloudProvider = url.searchParams.get('cloudprovider') || null; // Cloud provider search: aws, azure, gcp, oracle, all, or none + + // Validate cloudProvider against allowed values if provided + const allowedCloudProviders = ['none', 'all', 'azure', 'aws', 'gcp', 'oracle']; + if (cloudProvider && !allowedCloudProviders.includes(cloudProvider.toLowerCase())) { return new Response( - JSON.stringify({ - error: "Unauthorized: Origin not allowed", + JSON.stringify({ + error: "Invalid parameter: cloudprovider must be one of 'none', 'all', 'azure', 'aws', 'gcp', or 'oracle'", buildInfo: BUILD_INFO }), { - status: 403, + status: 400, headers: { 'Content-Type': 'application/json', ...corsHeaders(origin) @@ -393,16 +434,9 @@ async function handleCombinedRequest(request, env) { } ); } - - // Get URL parameters (use normalized lowercase URL for parsing) - const url = new URL(normalizedUrl); - const ipAddress = url.searchParams.get('ipaddress'); // lowercase parameter name - const maxAgeInDays = url.searchParams.get('maxageindays') || 30; // lowercase parameter name - const verbose = url.searchParams.get('verbose') === 'true'; - const enableAI = url.searchParams.get('enableai') === 'true'; // AI toggle parameter // Debug: Log the parsed parameters - console.log('Parsed parameters:', { ipAddress, maxAgeInDays, verbose, enableAI }); + console.log('Parsed parameters:', { ipAddress, maxAgeInDays, verbose, enableAI, cloudProvider }); // Validate required parameters if (!ipAddress) { @@ -422,8 +456,8 @@ async function handleCombinedRequest(request, env) { } try { - // Fetch both APIs in parallel for better performance - const [abuseIPDBResponse, radarResponse] = await Promise.allSettled([ + // Build array of API calls to execute in parallel + const apiCalls = [ // AbuseIPDB API request fetch(`${ABUSEIPDB_API_URL}?ipAddress=${encodeURIComponent(ipAddress)}&maxAgeInDays=${maxAgeInDays}&verbose=${verbose}`, { method: 'GET', @@ -451,7 +485,22 @@ async function handleCombinedRequest(request, env) { cacheEverything: true } }) - ]); + ]; + + // Add cloud manifest search if requested + let cloudManifestPromise = null; + if (cloudProvider) { + cloudManifestPromise = searchCloudManifests(ipAddress, cloudProvider, env); + } + + // Fetch both APIs in parallel for better performance + const [abuseIPDBResponse, radarResponse] = await Promise.allSettled(apiCalls); + + // Wait for cloud manifest search if it was initiated + let cloudMatches = null; + if (cloudManifestPromise) { + cloudMatches = await cloudManifestPromise; + } // Process AbuseIPDB response let abuseIPDBData = null; @@ -528,6 +577,9 @@ async function handleCombinedRequest(request, env) { error: radarError }, + // Add cloud manifest search results (if requested) + ...(cloudMatches && { cloudMatches }), + // Metadata and errors abuseIPDBError: abuseIPDBError, workerInfo: { @@ -537,7 +589,8 @@ async function handleCombinedRequest(request, env) { sources: { abuseipdb: abuseIPDBError ? 'error' : 'success', radar: radarError ? 'error' : 'success', - ai: enableAI ? (aiReputation.success ? 'success' : 'error') : 'disabled' + ai: enableAI ? (aiReputation.success ? 'success' : 'error') : 'disabled', + cloudManifests: cloudMatches ? (cloudMatches && cloudMatches.error ? 'error' : 'success') : 'not-requested' } } }; @@ -595,6 +648,250 @@ async function handleCombinedRequest(request, env) { } } +/** + * Search cloud provider IP manifests for matches + */ +async function searchCloudManifests(ipAddress, provider, env) { + try { + const results = { + azure: [], + aws: [], + gcp: [], + oracle: [] + }; + + // Determine which providers to search + const validProviders = ['azure', 'aws', 'gcp', 'oracle']; + const normalizedProvider = (provider || '').toString().toLowerCase(); + + let providersToSearch; + if (!normalizedProvider || normalizedProvider === 'all') { + // Default to all known providers if "all" or no provider specified + providersToSearch = validProviders; + } else if (validProviders.includes(normalizedProvider)) { + providersToSearch = [normalizedProvider]; + } else { + const errorMessage = `Invalid provider: ${provider}. Valid providers are: ${validProviders.join(', ')} or 'all'.`; + console.error(errorMessage); + return { + azure: [], + aws: [], + gcp: [], + oracle: [], + summary: { + totalMatches: 0, + providers: 0, + matchedProviders: [] + }, + error: errorMessage + }; + } + + // Determine the base URL based on environment + // Preview worker uses preview Pages deployment, production uses production site + const isPreview = env.ENVIRONMENT === 'preview' || (typeof ENVIRONMENT !== 'undefined' && ENVIRONMENT === 'preview'); + const baseUrl = isPreview + ? 'https://bug-fix-worker-ai-bindings.albatross-5kt.pages.dev' + : 'https://albatross.devnomadic.com'; + + // Search each provider's manifest + for (const providerName of providersToSearch) { + try { + // Fetch manifest from origin (wwwroot/ip-manifests/) + // Use lowercase filenames (azure.json, aws.json, etc.) + const fileName = providerName.toLowerCase(); + const manifestUrl = `${baseUrl}/ip-manifests/${fileName}.json`; + console.log(`Fetching manifest: ${manifestUrl}`); + + const response = await fetch(manifestUrl, { + cf: { + cacheTtl: 3600, // Cache for 1 hour + cacheEverything: true + } + }); + + if (!response.ok) { + console.error(`Failed to fetch ${providerName} manifest:`, response.status, response.statusText); + continue; + } + + const manifestData = await response.json(); + console.log(`Successfully loaded ${providerName} manifest, searching for ${ipAddress}`); + + // Search based on provider format + if (providerName === 'azure') { + results.azure = searchAzureManifest(ipAddress, manifestData); + console.log(`Azure search complete: ${results.azure.length} matches`); + } else if (providerName === 'aws') { + results.aws = searchAwsManifest(ipAddress, manifestData); + console.log(`AWS search complete: ${results.aws.length} matches`); + } else if (providerName === 'gcp') { + results.gcp = searchGcpManifest(ipAddress, manifestData); + console.log(`GCP search complete: ${results.gcp.length} matches`); + } else if (providerName === 'oracle') { + results.oracle = searchOracleManifest(ipAddress, manifestData); + console.log(`Oracle search complete: ${results.oracle.length} matches`); + } + } catch (error) { + console.error(`Error searching ${providerName} manifest:`, error); + } + } + + // Build summary + const allMatches = [...results.azure, ...results.aws, ...results.gcp, ...results.oracle]; + const matchedProviders = []; + if (results.azure.length > 0) matchedProviders.push('Azure'); + if (results.aws.length > 0) matchedProviders.push('AWS'); + if (results.gcp.length > 0) matchedProviders.push('GCP'); + if (results.oracle.length > 0) matchedProviders.push('Oracle'); + + return { + ...results, + summary: { + totalMatches: allMatches.length, + providers: matchedProviders.length, + matchedProviders: matchedProviders + } + }; + } catch (error) { + console.error('Error searching cloud manifests:', error); + return { + azure: [], + aws: [], + gcp: [], + oracle: [], + summary: { + totalMatches: 0, + providers: 0, + matchedProviders: [] + }, + error: error.message + }; + } +} + +/** + * Search Azure manifest + */ +function searchAzureManifest(ipAddress, manifestData) { + const matches = []; + + if (!manifestData.values) { + console.error('Azure manifest has no values array'); + return matches; + } + + console.log(`Searching Azure manifest for ${ipAddress}, found ${manifestData.values.length} value entries`); + let checkedPrefixes = 0; + + for (const value of manifestData.values) { + if (!value.properties || !value.properties.addressPrefixes) continue; + + for (const cidr of value.properties.addressPrefixes) { + checkedPrefixes++; + if (isIpInRange(ipAddress, cidr)) { + console.log(`✓ Azure match found: ${ipAddress} in ${cidr}`); + matches.push({ + provider: 'Azure', + region: value.properties.region || 'Unknown', + service: value.properties.systemService || value.name || 'Unknown', + cidrRange: cidr, + platform: value.properties.platform || 'Azure' + }); + } + } + } + + console.log(`Azure search complete: checked ${checkedPrefixes} prefixes, found ${matches.length} matches`); + return matches; +} + +/** + * Search AWS manifest + */ +function searchAwsManifest(ipAddress, manifestData) { + const matches = []; + + if (manifestData.prefixes) { + for (const prefix of manifestData.prefixes) { + if (isIpInRange(ipAddress, prefix.ip_prefix)) { + matches.push({ + provider: 'AWS', + region: prefix.region || 'Unknown', + service: prefix.service || 'Unknown', + cidrRange: prefix.ip_prefix, + networkBorderGroup: prefix.network_border_group + }); + } + } + } + + if (manifestData.ipv6_prefixes) { + for (const prefix of manifestData.ipv6_prefixes) { + if (isIpInRange(ipAddress, prefix.ipv6_prefix)) { + matches.push({ + provider: 'AWS', + region: prefix.region || 'Unknown', + service: prefix.service || 'Unknown', + cidrRange: prefix.ipv6_prefix, + networkBorderGroup: prefix.network_border_group + }); + } + } + } + + return matches; +} + +/** + * Search GCP manifest + */ +function searchGcpManifest(ipAddress, manifestData) { + const matches = []; + + if (!manifestData.prefixes) return matches; + + for (const prefix of manifestData.prefixes) { + const cidr = prefix.ipv4Prefix || prefix.ipv6Prefix; + if (cidr && isIpInRange(ipAddress, cidr)) { + matches.push({ + provider: 'GCP', + region: prefix.scope || 'Unknown', + service: prefix.service || 'Unknown', + cidrRange: cidr + }); + } + } + + return matches; +} + +/** + * Search Oracle manifest + */ +function searchOracleManifest(ipAddress, manifestData) { + const matches = []; + + if (!manifestData.regions) return matches; + + for (const region of manifestData.regions) { + if (!region.cidrs) continue; + + for (const cidr of region.cidrs) { + if (isIpInRange(ipAddress, cidr.cidr)) { + matches.push({ + provider: 'Oracle', + region: region.region || 'Unknown', + service: cidr.tags ? cidr.tags.join(', ') : 'Unknown', + cidrRange: cidr.cidr + }); + } + } + } + + return matches; +} + /** * Validates HMAC token using the same algorithm as the C# client */ @@ -693,6 +990,172 @@ function isTimestampValid(timestamp) { } } +/** + * Check if an IP address is within a CIDR range + * Supports both IPv4 and IPv6 + */ +function isIpInRange(ip, cidrRange) { + try { + // Parse CIDR notation (e.g., "192.168.1.0/24" or "2001:db8::/32") + const parts = cidrRange.split('/'); + if (parts.length !== 2) { + console.error('Invalid CIDR format:', cidrRange); + return false; + } + + const rangeIp = parts[0]; + const prefix = parseInt(parts[1], 10); + + if (isNaN(prefix)) { + console.error('Invalid prefix length:', parts[1], 'in', cidrRange); + return false; + } + + // Detect IP version + const isIPv6 = ip.includes(':'); + const isRangeIPv6 = rangeIp.includes(':'); + + // Validate prefix length based on IP version + if (isRangeIPv6) { + // IPv6: prefix must be 0-128 + if (prefix < 0 || prefix > 128) { + console.error('Invalid IPv6 prefix length:', prefix, '(must be 0-128) in', cidrRange); + return false; + } + } else { + // IPv4: prefix must be 0-32 + if (prefix < 0 || prefix > 32) { + console.error('Invalid IPv4 prefix length:', prefix, '(must be 0-32) in', cidrRange); + return false; + } + } + + // IP versions must match + if (isIPv6 !== isRangeIPv6) { + return false; + } + + if (isIPv6) { + // IPv6 handling + return isIPv6InRange(ip, rangeIp, prefix); + } else { + // IPv4 handling + return isIPv4InRange(ip, rangeIp, prefix); + } + } catch (error) { + console.error('Error checking IP range:', error, { ip, cidrRange }); + return false; + } +} + +/** + * Check if IPv4 address is in CIDR range + */ +function isIPv4InRange(ip, rangeIp, prefixLength) { + // Convert IP addresses to 32-bit integers + const ipNum = ipv4ToNumber(ip); + const rangeNum = ipv4ToNumber(rangeIp); + + // Create subnet mask + const mask = (0xFFFFFFFF << (32 - prefixLength)) >>> 0; + + // Compare network portions + return (ipNum & mask) === (rangeNum & mask); +} + +/** + * Convert IPv4 address to 32-bit number + */ +function ipv4ToNumber(ip) { + const parts = ip.split('.'); + + // IPv4 must have exactly 4 octets + if (parts.length !== 4) { + throw new Error(`Invalid IPv4 address (expected 4 octets): "${ip}"`); + } + + const nums = parts.map((part) => Number(part)); + + // Each octet must be an integer between 0 and 255 + for (let i = 0; i < nums.length; i++) { + const value = nums[i]; + if (!Number.isFinite(value) || !Number.isInteger(value) || value < 0 || value > 255) { + throw new Error(`Invalid IPv4 octet "${parts[i]}" in address "${ip}"`); + } + } + + return ((nums[0] << 24) | (nums[1] << 16) | (nums[2] << 8) | nums[3]) >>> 0; +} + +/** + * Check if IPv6 address is in CIDR range + */ +function isIPv6InRange(ip, rangeIp, prefixLength) { + // Expand both IPs to full notation + const ipExpanded = expandIPv6(ip); + const rangeExpanded = expandIPv6(rangeIp); + + // Convert to bit arrays + const ipBits = ipv6ToBits(ipExpanded); + const rangeBits = ipv6ToBits(rangeExpanded); + + // Compare first prefixLength bits + for (let i = 0; i < prefixLength; i++) { + if (ipBits[i] !== rangeBits[i]) { + return false; + } + } + + return true; +} + +/** + * Expand IPv6 address to full notation + */ +function expandIPv6(ip) { + // Handle :: compression + if (ip.includes('::')) { + // Validate that there is at most one '::' occurrence + const doubleColonMatches = ip.match(/::/g); + if (doubleColonMatches && doubleColonMatches.length > 1) { + // Invalid IPv6 with multiple '::' - return original to avoid runtime errors + return ip; + } + + const sides = ip.split('::'); + const leftParts = sides[0] ? sides[0].split(':') : []; + const rightParts = sides[1] ? sides[1].split(':') : []; + const missingParts = 8 - leftParts.length - rightParts.length; + + // If missingParts is negative, the address is malformed; avoid creating + // an array with negative length and just return the original string. + if (missingParts < 0) { + return ip; + } + const middleParts = new Array(missingParts).fill('0000'); + const allParts = [...leftParts, ...middleParts, ...rightParts]; + return allParts.map(p => p.padStart(4, '0')).join(':'); + } + + // Just pad existing parts + return ip.split(':').map(p => p.padStart(4, '0')).join(':'); +} + +/** + * Convert IPv6 address to bit array + */ +function ipv6ToBits(ip) { + const parts = ip.split(':'); + let bits = ''; + + for (const part of parts) { + const num = parseInt(part, 16); + bits += num.toString(2).padStart(16, '0'); + } + + return bits; +} + /** * Convert ArrayBuffer to base64 string */ diff --git a/manifest-backup/AWS.json b/manifest-backup/aws.json similarity index 100% rename from manifest-backup/AWS.json rename to manifest-backup/aws.json diff --git a/manifest-backup/Azure.json b/manifest-backup/azure.json similarity index 100% rename from manifest-backup/Azure.json rename to manifest-backup/azure.json diff --git a/manifest-backup/GCP.json b/manifest-backup/gcp.json similarity index 100% rename from manifest-backup/GCP.json rename to manifest-backup/gcp.json diff --git a/manifest-backup/Oracle.json b/manifest-backup/oracle.json similarity index 100% rename from manifest-backup/Oracle.json rename to manifest-backup/oracle.json diff --git a/update-manifests.sh b/update-manifests.sh index 96c5929..269ba3d 100755 --- a/update-manifests.sh +++ b/update-manifests.sh @@ -12,36 +12,36 @@ cp ./wwwroot/ip-manifests/*.json ./manifest-backup/ 2>/dev/null || true # Fetch AWS IP ranges echo "📡 Downloading AWS IP ranges..." -curl -sSL "https://ip-ranges.amazonaws.com/ip-ranges.json" -o ./wwwroot/ip-manifests/AWS.json +curl -sSL "https://ip-ranges.amazonaws.com/ip-ranges.json" -o ./wwwroot/ip-manifests/aws.json if [ $? -eq 0 ]; then echo "✅ AWS manifest updated successfully" # Show some basic info about the file - echo " Size: $(wc -c < ./wwwroot/ip-manifests/AWS.json) bytes" - echo " Sync Token: $(grep -o '"syncToken":"[^"]*"' ./wwwroot/ip-manifests/AWS.json | cut -d'"' -f4)" + echo " Size: $(wc -c < ./wwwroot/ip-manifests/aws.json) bytes" + echo " Sync Token: $(grep -o '"syncToken":"[^"]*"' ./wwwroot/ip-manifests/aws.json | cut -d'"' -f4)" else echo "❌ Failed to download AWS manifest" fi # Fetch GCP IP ranges echo "📡 Downloading GCP IP ranges..." -curl -sSL "https://www.gstatic.com/ipranges/cloud.json" -o ./wwwroot/ip-manifests/GCP.json +curl -sSL "https://www.gstatic.com/ipranges/cloud.json" -o ./wwwroot/ip-manifests/gcp.json if [ $? -eq 0 ]; then echo "✅ GCP manifest updated successfully" # Show some basic info about the file - echo " Size: $(wc -c < ./wwwroot/ip-manifests/GCP.json) bytes" - echo " Creation Time: $(grep -o '"creationTime":"[^"]*"' ./wwwroot/ip-manifests/GCP.json | cut -d'"' -f4)" + echo " Size: $(wc -c < ./wwwroot/ip-manifests/gcp.json) bytes" + echo " Creation Time: $(grep -o '"creationTime":"[^"]*"' ./wwwroot/ip-manifests/gcp.json | cut -d'"' -f4)" else echo "❌ Failed to download GCP manifest" fi # Fetch Oracle IP ranges echo "📡 Downloading Oracle IP ranges..." -curl -sSL "https://docs.oracle.com/en-us/iaas/tools/public_ip_ranges.json" -o ./wwwroot/ip-manifests/Oracle.json +curl -sSL "https://docs.oracle.com/en-us/iaas/tools/public_ip_ranges.json" -o ./wwwroot/ip-manifests/oracle.json if [ $? -eq 0 ]; then echo "✅ Oracle manifest updated successfully" # Show some basic info about the file - echo " Size: $(wc -c < ./wwwroot/ip-manifests/Oracle.json) bytes" - echo " Last Updated: $(grep -o '"last_updated_timestamp":"[^"]*"' ./wwwroot/ip-manifests/Oracle.json | cut -d'"' -f4)" + echo " Size: $(wc -c < ./wwwroot/ip-manifests/oracle.json) bytes" + echo " Last Updated: $(grep -o '"last_updated_timestamp":"[^"]*"' ./wwwroot/ip-manifests/oracle.json | cut -d'"' -f4)" else echo "❌ Failed to download Oracle manifest" fi @@ -54,13 +54,13 @@ curl -sSL "https://www.microsoft.com/en-us/download/confirmation.aspx?id=56519" AZURE_URL=$(grep -o 'https://download.microsoft.com/download/[^"]*ServiceTags[^"]*\.json' /tmp/azure_page.html | head -1) if [ -n "$AZURE_URL" ]; then - curl -sSL "$AZURE_URL" -o ./wwwroot/ip-manifests/Azure.json - if [ $? -eq 0 ] && [ -s ./wwwroot/ip-manifests/Azure.json ]; then + curl -sSL "$AZURE_URL" -o ./wwwroot/ip-manifests/azure.json + if [ $? -eq 0 ] && [ -s ./wwwroot/ip-manifests/azure.json ]; then # Verify it's actually JSON and not an error page - if grep -q '"changeNumber"' ./wwwroot/ip-manifests/Azure.json; then + if grep -q '"changeNumber"' ./wwwroot/ip-manifests/azure.json; then echo "✅ Azure manifest updated successfully" - echo " Size: $(wc -c < ./wwwroot/ip-manifests/Azure.json) bytes" - echo " Change Number: $(grep -o '"changeNumber":[^,]*' ./wwwroot/ip-manifests/Azure.json | head -1 | cut -d':' -f2)" + echo " Size: $(wc -c < ./wwwroot/ip-manifests/azure.json) bytes" + echo " Change Number: $(grep -o '"changeNumber":[^,]*' ./wwwroot/ip-manifests/azure.json | head -1 | cut -d':' -f2)" SUCCESS=true else echo "❌ Downloaded Azure file is not valid JSON" diff --git a/wrangler.toml b/wrangler.toml index 6c9bd23..9b7996c 100644 --- a/wrangler.toml +++ b/wrangler.toml @@ -14,7 +14,30 @@ binding = "AI" # Production environment (default) [env.production] name = "abuseipdb" -routes = [] +workers_dev = true +routes = [ + { pattern = "albatross-api.devnomadic.com/*", zone_name = "devnomadic.com" } +] + +[env.production.vars] +ENVIRONMENT = "production" + +[env.production.ai] +binding = "AI" + +# Preview environment +[env.preview] +name = "abuseipdb-preview" +workers_dev = true +routes = [ + { pattern = "albatross-apipreview.devnomadic.com/*", zone_name = "devnomadic.com" } +] + +[env.preview.vars] +ENVIRONMENT = "preview" + +[env.preview.ai] +binding = "AI" # Environment variables (these will be set via GitHub Actions secrets) # [vars] diff --git a/wwwroot/css/api-json.css b/wwwroot/css/api-json.css new file mode 100644 index 0000000..2a8c53c --- /dev/null +++ b/wwwroot/css/api-json.css @@ -0,0 +1,38 @@ +body { + margin: 0; + padding: 20px; + background-color: #1e1e1e; + font-family: 'Consolas', 'Monaco', 'Courier New', monospace; +} + +pre { + margin: 0; + padding: 20px; + background-color: #1e1e1e; + color: #d4d4d4; + font-size: 14px; + line-height: 1.5; + overflow-x: auto; + border: none; +} + +.hljs { + background: #1e1e1e; + color: #dcdcdc; +} + +.hljs-attr { + color: #9cdcfe; +} + +.hljs-string { + color: #ce9178; +} + +.hljs-number { + color: #b5cea8; +} + +.hljs-literal { + color: #569cd6; +} diff --git a/wwwroot/css/api-swagger.css b/wwwroot/css/api-swagger.css new file mode 100644 index 0000000..aa82ceb --- /dev/null +++ b/wwwroot/css/api-swagger.css @@ -0,0 +1,270 @@ +body { + margin: 0; + padding: 0; + background: linear-gradient(135deg, #1e1e1e 0%, #2d2d30 100%); + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + color: #d4d4d4; + min-height: 100vh; +} + +.api-header { + background: + url('/icon-192.png') no-repeat calc(100% - 50px) center, + radial-gradient(ellipse at right bottom, #e91e63 0%, #9c27b0 40%, #2196f3 100%); + background-size: 120px auto, cover; + background-blend-mode: soft-light; + padding: 2rem 0; + margin-bottom: 2rem; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); +} + +/* Hide icon on mobile/tablet screens */ +@media (max-width: 991px) { + .api-header { + background: radial-gradient(ellipse at right bottom, #e91e63 0%, #9c27b0 40%, #2196f3 100%); + } +} + +.api-title { + font-size: 2.5rem; + font-weight: 700; + color: white; + margin: 0; + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); +} + +.api-description { + font-size: 1.1rem; + color: rgba(255, 255, 255, 0.9); + margin-top: 0.5rem; +} + +.api-container { + max-width: 1200px; + margin: 0 auto; + padding: 0 1rem 2rem; +} + +.endpoint-section { + background-color: #252526; + border-radius: 8px; + margin-bottom: 2rem; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); + overflow: hidden; +} + +.endpoint-header { + background-color: #2d2d30; + padding: 1rem 1.5rem; + border-bottom: 2px solid #667eea; +} + +.endpoint-method { + display: inline-block; + background-color: #61affe; + color: white; + padding: 0.25rem 0.75rem; + border-radius: 4px; + font-weight: 600; + font-size: 0.875rem; + margin-right: 1rem; +} + +.endpoint-path { + font-family: 'Consolas', 'Monaco', 'Courier New', monospace; + font-size: 1.25rem; + color: #d4d4d4; +} + +.endpoint-body { + padding: 1.5rem; +} + +.section-title { + font-size: 1.25rem; + font-weight: 600; + color: #667eea; + margin-bottom: 1rem; + border-bottom: 1px solid #3e3e42; + padding-bottom: 0.5rem; +} + +.parameter-group { + background-color: #1e1e1e; + border: 1px solid #3e3e42; + border-radius: 6px; + padding: 1rem; + margin-bottom: 1rem; +} + +.parameter-header { + display: flex; + align-items: center; + margin-bottom: 0.5rem; +} + +.parameter-name { + font-family: 'Consolas', 'Monaco', 'Courier New', monospace; + font-weight: 600; + color: #9cdcfe; + margin-right: 0.5rem; +} + +.parameter-required { + background-color: #f48771; + color: white; + padding: 0.125rem 0.5rem; + border-radius: 3px; + font-size: 0.75rem; + font-weight: 600; +} + +.parameter-optional { + background-color: #4ec9b0; + color: white; + padding: 0.125rem 0.5rem; + border-radius: 3px; + font-size: 0.75rem; + font-weight: 600; +} + +.parameter-description { + color: #a0a0a0; + font-size: 0.9rem; + margin-bottom: 0.75rem; +} + +.form-control, .form-select { + background-color: #2d2d30; + border: 1px solid #3e3e42; + color: #d4d4d4; + font-family: 'Consolas', 'Monaco', 'Courier New', monospace; +} + +.form-control:focus, .form-select:focus { + background-color: #2d2d30; + border-color: #667eea; + color: #d4d4d4; + box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25); +} + +.form-control::placeholder { + color: #6a6a6a; +} + +.try-button { + background: linear-gradient(135deg, #e91e63 0%, #9c27b0 50%, #2196f3 100%); + color: white; + border: none; + padding: 0.75rem 2rem; + font-size: 1rem; + font-weight: 600; + border-radius: 6px; + cursor: pointer; + transition: transform 0.2s, box-shadow 0.2s; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); +} + +.try-button:hover:not(:disabled) { + transform: translateY(-2px); + box-shadow: 0 6px 12px rgba(102, 126, 234, 0.4); +} + +.try-button:disabled { + opacity: 0.6; + cursor: not-allowed; +} + +.spinner-border-custom { + width: 1rem; + height: 1rem; + border-width: 0.15rem; + margin-right: 0.5rem; +} + +.response-section { + margin-top: 2rem; +} + +.response-header { + background-color: #2d2d30; + padding: 0.75rem 1rem; + border-radius: 6px 6px 0 0; + display: flex; + justify-content: space-between; + align-items: center; + border: 1px solid #3e3e42; + border-bottom: none; +} + +.status-success { + color: #4ec9b0; +} + +.status-error { + color: #f48771; +} + +.response-body { + background-color: #1e1e1e; + border: 1px solid #3e3e42; + border-radius: 0 0 6px 6px; + overflow: hidden; +} + +.response-code { + margin: 0; + padding: 1.5rem; + overflow-x: auto; + font-family: 'Consolas', 'Monaco', 'Courier New', monospace; + font-size: 0.875rem; + line-height: 1.5; +} + +.hljs { + background: #1e1e1e; + color: #dcdcdc; +} +.hljs-attr { + color: #9cdcfe; +} +.hljs-string { + color: #ce9178; +} +.hljs-number { + color: #b5cea8; +} +.hljs-literal { + color: #569cd6; +} + +.info-box { + background-color: #264f78; + border-left: 4px solid #61affe; + padding: 1rem; + border-radius: 4px; + margin-bottom: 1.5rem; +} + +.info-box-title { + font-weight: 600; + color: #61affe; + margin-bottom: 0.5rem; +} + +.example-box { + background-color: #2d2d30; + border: 1px solid #3e3e42; + border-radius: 4px; + padding: 0.75rem; + font-family: 'Consolas', 'Monaco', 'Courier New', monospace; + font-size: 0.85rem; + margin-top: 0.5rem; + color: #ce9178; +} + +@media (max-width: 768px) { + .api-title { + font-size: 1.75rem; + } +} diff --git a/wwwroot/images/ascii-text-art-christmas.png b/wwwroot/images/ascii-text-art-christmas.png new file mode 100644 index 0000000..3c97f75 Binary files /dev/null and b/wwwroot/images/ascii-text-art-christmas.png differ diff --git a/wwwroot/ip-manifests/AWS.json b/wwwroot/ip-manifests/aws.json similarity index 96% rename from wwwroot/ip-manifests/AWS.json rename to wwwroot/ip-manifests/aws.json index 6984947..4038033 100644 --- a/wwwroot/ip-manifests/AWS.json +++ b/wwwroot/ip-manifests/aws.json @@ -1,6 +1,6 @@ { - "syncToken": "1760404120", - "createDate": "2025-10-14-01-08-40", + "syncToken": "1766626705", + "createDate": "2025-12-25-01-38-25", "prefixes": [ { "ip_prefix": "3.4.12.4/32", @@ -38,6 +38,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "15.248.168.0/21", + "region": "sa-west-1", + "service": "AMAZON", + "network_border_group": "sa-west-1" + }, { "ip_prefix": "23.254.120.0/21", "region": "sa-west-1", @@ -92,6 +98,18 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, + { + "ip_prefix": "69.107.10.200/29", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, + { + "ip_prefix": "99.83.109.0/24", + "region": "eu-south-1", + "service": "AMAZON", + "network_border_group": "eu-south-1" + }, { "ip_prefix": "99.87.32.0/22", "region": "eu-west-1", @@ -146,6 +164,12 @@ "service": "AMAZON", "network_border_group": "eu-west-1" }, + { + "ip_prefix": "23.228.222.0/24", + "region": "GLOBAL", + "service": "AMAZON", + "network_border_group": "GLOBAL" + }, { "ip_prefix": "35.111.254.0/24", "region": "us-west-2", @@ -476,6 +500,12 @@ "service": "AMAZON", "network_border_group": "us-east-1-bos-1" }, + { + "ip_prefix": "99.83.106.0/24", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "3.4.15.168/29", "region": "eu-west-1", @@ -866,6 +896,12 @@ "service": "AMAZON", "network_border_group": "ap-northeast-1" }, + { + "ip_prefix": "43.226.27.0/24", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ip_prefix": "52.46.220.0/22", "region": "eu-north-1", @@ -920,6 +956,12 @@ "service": "AMAZON", "network_border_group": "af-south-1" }, + { + "ip_prefix": "104.255.57.173/32", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "150.222.135.0/24", "region": "ap-east-1", @@ -1034,12 +1076,6 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, - { - "ip_prefix": "35.96.52.0/24", - "region": "eu-central-1", - "service": "AMAZON", - "network_border_group": "eu-central-1" - }, { "ip_prefix": "40.167.0.0/16", "region": "us-west-1", @@ -1136,6 +1172,12 @@ "service": "AMAZON", "network_border_group": "us-east-2" }, + { + "ip_prefix": "15.248.139.1/32", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "15.251.0.9/32", "region": "ap-southeast-2", @@ -1262,6 +1304,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ip_prefix": "69.107.10.80/29", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "99.150.56.0/21", "region": "us-west-2", @@ -1310,6 +1358,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "3.5.92.0/23", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "5.60.0.0/20", "region": "ap-east-2", @@ -1352,12 +1406,6 @@ "service": "AMAZON", "network_border_group": "eu-south-1" }, - { - "ip_prefix": "23.228.193.0/24", - "region": "us-east-1", - "service": "AMAZON", - "network_border_group": "us-east-1" - }, { "ip_prefix": "35.50.238.0/24", "region": "ap-northeast-2", @@ -1412,6 +1460,12 @@ "service": "AMAZON", "network_border_group": "us-west-1" }, + { + "ip_prefix": "216.198.238.0/23", + "region": "eu-west-2", + "service": "AMAZON", + "network_border_group": "eu-west-2" + }, { "ip_prefix": "3.4.12.41/32", "region": "us-west-2", @@ -1808,6 +1862,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "23.228.220.0/24", + "region": "GLOBAL", + "service": "AMAZON", + "network_border_group": "GLOBAL" + }, { "ip_prefix": "52.47.0.0/16", "region": "eu-west-3", @@ -2126,12 +2186,6 @@ "service": "AMAZON", "network_border_group": "ap-northeast-3" }, - { - "ip_prefix": "35.96.48.0/24", - "region": "eu-central-1", - "service": "AMAZON", - "network_border_group": "eu-central-1" - }, { "ip_prefix": "52.93.53.2/32", "region": "us-west-1", @@ -2348,6 +2402,12 @@ "service": "AMAZON", "network_border_group": "ap-northeast-1" }, + { + "ip_prefix": "35.111.252.0/24", + "region": "us-gov-west-1", + "service": "AMAZON", + "network_border_group": "us-gov-west-1" + }, { "ip_prefix": "52.93.45.128/25", "region": "ca-central-1", @@ -2444,6 +2504,12 @@ "service": "AMAZON", "network_border_group": "eu-west-2" }, + { + "ip_prefix": "216.198.237.0/24", + "region": "sa-east-1", + "service": "AMAZON", + "network_border_group": "sa-east-1" + }, { "ip_prefix": "3.2.92.0/24", "region": "ap-southeast-4", @@ -2624,12 +2690,6 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, - { - "ip_prefix": "35.96.30.0/23", - "region": "us-west-1", - "service": "AMAZON", - "network_border_group": "us-west-1" - }, { "ip_prefix": "46.51.192.0/20", "region": "eu-west-1", @@ -2666,6 +2726,12 @@ "service": "AMAZON", "network_border_group": "us-gov-west-1" }, + { + "ip_prefix": "69.107.10.168/29", + "region": "eu-west-1", + "service": "AMAZON", + "network_border_group": "eu-west-1" + }, { "ip_prefix": "99.77.149.0/24", "region": "sa-east-1", @@ -3098,6 +3164,12 @@ "service": "AMAZON", "network_border_group": "us-gov-east-1" }, + { + "ip_prefix": "104.255.57.172/32", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "150.222.25.37/32", "region": "us-east-1", @@ -3230,6 +3302,12 @@ "service": "AMAZON", "network_border_group": "us-east-2" }, + { + "ip_prefix": "35.96.60.0/23", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ip_prefix": "52.93.24.0/21", "region": "us-east-1", @@ -3548,6 +3626,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-1" }, + { + "ip_prefix": "1.178.94.0/24", + "region": "eu-west-2", + "service": "AMAZON", + "network_border_group": "eu-west-2" + }, { "ip_prefix": "15.230.15.58/31", "region": "eu-central-1", @@ -3638,6 +3722,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ip_prefix": "104.255.57.164/32", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "108.166.244.4/32", "region": "us-east-2", @@ -3668,6 +3758,12 @@ "service": "AMAZON", "network_border_group": "sa-east-1" }, + { + "ip_prefix": "15.129.8.0/21", + "region": "eu-west-2", + "service": "AMAZON", + "network_border_group": "eu-west-2" + }, { "ip_prefix": "15.190.128.0/20", "region": "ap-southeast-6", @@ -3686,6 +3782,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "35.50.139.0/24", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "40.239.0.0/16", "region": "ap-southeast-2", @@ -3830,6 +3932,18 @@ "service": "AMAZON", "network_border_group": "ap-northeast-1" }, + { + "ip_prefix": "69.107.10.224/29", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, + { + "ip_prefix": "69.107.11.24/29", + "region": "eu-west-3", + "service": "AMAZON", + "network_border_group": "eu-west-3" + }, { "ip_prefix": "75.101.128.0/17", "region": "us-east-1", @@ -4088,6 +4202,12 @@ "service": "AMAZON", "network_border_group": "ap-south-1" }, + { + "ip_prefix": "3.5.88.0/22", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "3.5.208.0/22", "region": "ap-south-1", @@ -4118,6 +4238,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ip_prefix": "23.228.219.0/24", + "region": "us-west-1", + "service": "AMAZON", + "network_border_group": "us-west-1" + }, { "ip_prefix": "35.55.30.0/24", "region": "us-east-1", @@ -4178,6 +4304,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "69.107.10.152/29", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "99.77.251.0/24", "region": "us-west-1", @@ -4694,6 +4826,12 @@ "service": "AMAZON", "network_border_group": "ap-northeast-1" }, + { + "ip_prefix": "122.200.61.0/24", + "region": "ap-southeast-2", + "service": "AMAZON", + "network_border_group": "ap-southeast-2" + }, { "ip_prefix": "150.222.44.32/27", "region": "eu-west-1", @@ -4778,6 +4916,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-1" }, + { + "ip_prefix": "104.255.57.166/32", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "108.166.244.35/32", "region": "us-east-2", @@ -4862,6 +5006,12 @@ "service": "AMAZON", "network_border_group": "ap-south-2" }, + { + "ip_prefix": "52.219.23.0/24", + "region": "us-west-1", + "service": "AMAZON", + "network_border_group": "us-west-1" + }, { "ip_prefix": "54.222.100.0/22", "region": "cn-north-1", @@ -5000,6 +5150,12 @@ "service": "AMAZON", "network_border_group": "ap-northeast-1" }, + { + "ip_prefix": "150.247.40.0/24", + "region": "me-south-1", + "service": "AMAZON", + "network_border_group": "me-south-1" + }, { "ip_prefix": "3.4.12.52/32", "region": "eu-central-1", @@ -5024,6 +5180,12 @@ "service": "AMAZON", "network_border_group": "eu-north-1" }, + { + "ip_prefix": "35.50.137.0/24", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "43.221.0.0/16", "region": "ap-southeast-2", @@ -5054,6 +5216,12 @@ "service": "AMAZON", "network_border_group": "eu-west-3" }, + { + "ip_prefix": "69.107.10.136/29", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ip_prefix": "99.77.155.0/24", "region": "eu-west-1", @@ -5108,6 +5276,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "35.111.136.0/22", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "51.20.0.0/16", "region": "eu-north-1", @@ -5162,6 +5336,18 @@ "service": "AMAZON", "network_border_group": "sa-east-1" }, + { + "ip_prefix": "69.107.10.120/29", + "region": "ap-southeast-1", + "service": "AMAZON", + "network_border_group": "ap-southeast-1" + }, + { + "ip_prefix": "69.107.10.144/29", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "69.230.192.0/18", "region": "cn-northwest-1", @@ -5198,6 +5384,12 @@ "service": "AMAZON", "network_border_group": "us-gov-west-1" }, + { + "ip_prefix": "216.198.235.0/24", + "region": "ca-central-1", + "service": "AMAZON", + "network_border_group": "ca-central-1" + }, { "ip_prefix": "3.5.128.0/22", "region": "us-east-2", @@ -5270,12 +5462,24 @@ "service": "AMAZON", "network_border_group": "ap-northeast-3" }, + { + "ip_prefix": "99.83.105.0/24", + "region": "eu-west-1", + "service": "AMAZON", + "network_border_group": "eu-west-1" + }, { "ip_prefix": "150.222.234.78/31", "region": "us-west-1", "service": "AMAZON", "network_border_group": "us-west-1" }, + { + "ip_prefix": "1.178.93.0/24", + "region": "eu-north-1", + "service": "AMAZON", + "network_border_group": "eu-north-1" + }, { "ip_prefix": "3.104.0.0/14", "region": "ap-southeast-2", @@ -5450,6 +5654,12 @@ "service": "AMAZON", "network_border_group": "us-gov-east-1" }, + { + "ip_prefix": "32.200.0.0/13", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "35.50.236.0/24", "region": "ap-southeast-1", @@ -5624,6 +5834,12 @@ "service": "AMAZON", "network_border_group": "eu-west-1" }, + { + "ip_prefix": "69.107.11.0/29", + "region": "eu-north-1", + "service": "AMAZON", + "network_border_group": "eu-north-1" + }, { "ip_prefix": "150.222.152.36/32", "region": "eu-central-1", @@ -5924,6 +6140,12 @@ "service": "AMAZON", "network_border_group": "ca-central-1" }, + { + "ip_prefix": "104.255.57.165/32", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "150.222.52.0/27", "region": "il-central-1", @@ -5936,6 +6158,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-5" }, + { + "ip_prefix": "216.198.228.0/23", + "region": "eu-west-3", + "service": "AMAZON", + "network_border_group": "eu-west-3" + }, { "ip_prefix": "3.4.9.0/24", "region": "us-east-1", @@ -5954,6 +6182,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-1" }, + { + "ip_prefix": "16.12.120.0/22", + "region": "sa-west-1", + "service": "AMAZON", + "network_border_group": "sa-west-1" + }, { "ip_prefix": "18.97.64.0/20", "region": "ap-southeast-5", @@ -6422,6 +6656,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ip_prefix": "51.74.16.0/24", + "region": "eusc-de-east-1", + "service": "AMAZON", + "network_border_group": "eusc-de-east-1" + }, { "ip_prefix": "52.93.127.219/32", "region": "us-east-1", @@ -6680,6 +6920,12 @@ "service": "AMAZON", "network_border_group": "sa-east-1" }, + { + "ip_prefix": "15.248.139.2/32", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "40.173.0.0/16", "region": "me-central-1", @@ -6740,6 +6986,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "69.107.10.176/29", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "150.222.54.0/27", "region": "eusc-de-east-1", @@ -6752,6 +7004,12 @@ "service": "AMAZON", "network_border_group": "us-west-1" }, + { + "ip_prefix": "150.247.42.0/24", + "region": "eu-north-1", + "service": "AMAZON", + "network_border_group": "eu-north-1" + }, { "ip_prefix": "155.146.128.0/20", "region": "us-west-2", @@ -6908,12 +7166,24 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, + { + "ip_prefix": "32.192.0.0/13", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "35.55.26.0/24", "region": "sa-east-1", "service": "AMAZON", "network_border_group": "sa-east-1" }, + { + "ip_prefix": "40.168.226.0/24", + "region": "GLOBAL", + "service": "AMAZON", + "network_border_group": "GLOBAL" + }, { "ip_prefix": "52.93.125.43/32", "region": "us-west-1", @@ -6992,6 +7262,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-1" }, + { + "ip_prefix": "35.97.129.0/24", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ip_prefix": "35.160.0.0/13", "region": "us-west-2", @@ -7052,6 +7328,12 @@ "service": "AMAZON", "network_border_group": "af-south-1" }, + { + "ip_prefix": "3.5.120.0/22", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "13.32.0.0/15", "region": "GLOBAL", @@ -7172,12 +7454,6 @@ "service": "AMAZON", "network_border_group": "ap-south-2" }, - { - "ip_prefix": "32.192.0.0/12", - "region": "us-east-1", - "service": "AMAZON", - "network_border_group": "us-east-1" - }, { "ip_prefix": "52.57.0.0/16", "region": "eu-central-1", @@ -7202,6 +7478,12 @@ "service": "AMAZON", "network_border_group": "eu-west-2" }, + { + "ip_prefix": "69.107.10.248/29", + "region": "eu-west-2", + "service": "AMAZON", + "network_border_group": "eu-west-2" + }, { "ip_prefix": "99.151.80.0/21", "region": "eu-central-2", @@ -7478,6 +7760,12 @@ "service": "AMAZON", "network_border_group": "eu-west-1" }, + { + "ip_prefix": "216.198.194.0/24", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "3.44.0.0/18", "region": "ap-southeast-1", @@ -7688,6 +7976,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-2" }, + { + "ip_prefix": "35.111.128.0/22", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "45.113.128.0/22", "region": "GLOBAL", @@ -7767,10 +8061,10 @@ "network_border_group": "us-west-1" }, { - "ip_prefix": "184.32.0.0/12", - "region": "us-west-2", + "ip_prefix": "216.198.208.0/22", + "region": "eu-central-1", "service": "AMAZON", - "network_border_group": "us-west-2" + "network_border_group": "eu-central-1" }, { "ip_prefix": "3.2.49.0/24", @@ -7898,6 +8192,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-2-per-1" }, + { + "ip_prefix": "104.255.57.170/32", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "111.13.171.192/26", "region": "GLOBAL", @@ -7952,12 +8252,6 @@ "service": "AMAZON", "network_border_group": "eusc-de-east-1" }, - { - "ip_prefix": "52.82.176.0/22", - "region": "cn-northwest-1", - "service": "AMAZON", - "network_border_group": "cn-northwest-1" - }, { "ip_prefix": "52.144.194.192/26", "region": "us-west-1", @@ -8348,6 +8642,12 @@ "service": "AMAZON", "network_border_group": "eu-west-1" }, + { + "ip_prefix": "69.107.10.240/29", + "region": "eu-west-2", + "service": "AMAZON", + "network_border_group": "eu-west-2" + }, { "ip_prefix": "108.175.52.0/22", "region": "us-gov-east-1", @@ -8582,6 +8882,12 @@ "service": "AMAZON", "network_border_group": "sa-east-1" }, + { + "ip_prefix": "99.83.108.0/24", + "region": "eu-south-1", + "service": "AMAZON", + "network_border_group": "eu-south-1" + }, { "ip_prefix": "103.246.150.0/23", "region": "ap-northeast-1", @@ -8792,6 +9098,12 @@ "service": "AMAZON", "network_border_group": "ca-west-1" }, + { + "ip_prefix": "15.193.32.0/24", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ip_prefix": "15.220.152.0/21", "region": "eu-central-1", @@ -9086,6 +9398,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ip_prefix": "99.83.107.0/24", + "region": "eu-south-1", + "service": "AMAZON", + "network_border_group": "eu-south-1" + }, { "ip_prefix": "150.222.44.64/27", "region": "eu-west-1", @@ -9332,6 +9650,12 @@ "service": "AMAZON", "network_border_group": "ca-central-1" }, + { + "ip_prefix": "216.198.244.0/22", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "3.4.10.0/24", "region": "us-east-1", @@ -9350,6 +9674,12 @@ "service": "AMAZON", "network_border_group": "GLOBAL" }, + { + "ip_prefix": "15.129.0.0/22", + "region": "ap-southeast-2", + "service": "AMAZON", + "network_border_group": "ap-southeast-2" + }, { "ip_prefix": "15.193.168.0/22", "region": "ap-south-2", @@ -9710,6 +10040,12 @@ "service": "AMAZON", "network_border_group": "me-central-1" }, + { + "ip_prefix": "35.34.96.0/24", + "region": "eu-west-2", + "service": "AMAZON", + "network_border_group": "eu-west-2" + }, { "ip_prefix": "35.50.134.0/24", "region": "us-west-2", @@ -9812,6 +10148,12 @@ "service": "AMAZON", "network_border_group": "ap-south-1" }, + { + "ip_prefix": "216.198.234.0/24", + "region": "ap-southeast-2", + "service": "AMAZON", + "network_border_group": "ap-southeast-2" + }, { "ip_prefix": "3.5.240.0/22", "region": "ap-northeast-3", @@ -9920,6 +10262,12 @@ "service": "AMAZON", "network_border_group": "ap-northeast-2" }, + { + "ip_prefix": "216.198.232.0/24", + "region": "af-south-1", + "service": "AMAZON", + "network_border_group": "af-south-1" + }, { "ip_prefix": "3.4.12.15/32", "region": "ap-southeast-2", @@ -10148,6 +10496,12 @@ "service": "AMAZON", "network_border_group": "af-south-1" }, + { + "ip_prefix": "69.107.10.208/29", + "region": "eu-south-1", + "service": "AMAZON", + "network_border_group": "eu-south-1" + }, { "ip_prefix": "104.255.56.19/32", "region": "us-east-1", @@ -10202,6 +10556,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-2" }, + { + "ip_prefix": "3.45.64.0/18", + "region": "us-gov-west-1", + "service": "AMAZON", + "network_border_group": "us-gov-west-1" + }, { "ip_prefix": "5.60.96.0/19", "region": "eu-central-1", @@ -10382,12 +10742,6 @@ "service": "AMAZON", "network_border_group": "GLOBAL" }, - { - "ip_prefix": "54.222.32.0/22", - "region": "cn-north-1", - "service": "AMAZON", - "network_border_group": "cn-north-1" - }, { "ip_prefix": "64.252.123.0/24", "region": "us-west-1", @@ -10436,6 +10790,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ip_prefix": "216.198.215.0/24", + "region": "ap-northeast-2", + "service": "AMAZON", + "network_border_group": "ap-northeast-2" + }, { "ip_prefix": "15.230.39.32/31", "region": "us-east-2", @@ -10454,12 +10814,24 @@ "service": "AMAZON", "network_border_group": "ap-southeast-4" }, + { + "ip_prefix": "23.228.221.0/24", + "region": "GLOBAL", + "service": "AMAZON", + "network_border_group": "GLOBAL" + }, { "ip_prefix": "34.224.0.0/12", "region": "us-east-1", "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "35.50.141.0/24", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "52.75.0.0/16", "region": "us-west-2", @@ -10676,12 +11048,6 @@ "service": "AMAZON", "network_border_group": "ap-southeast-7" }, - { - "ip_prefix": "51.0.140.0/23", - "region": "eusc-de-east-1", - "service": "AMAZON", - "network_border_group": "eusc-de-east-1" - }, { "ip_prefix": "52.93.50.0/24", "region": "us-east-1", @@ -10946,6 +11312,12 @@ "service": "AMAZON", "network_border_group": "eu-west-1" }, + { + "ip_prefix": "150.247.46.0/24", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ip_prefix": "176.32.112.0/21", "region": "us-west-1", @@ -11420,6 +11792,12 @@ "service": "AMAZON", "network_border_group": "us-east-1-chi-2" }, + { + "ip_prefix": "216.244.38.0/23", + "region": "eu-west-2", + "service": "AMAZON", + "network_border_group": "eu-west-2" + }, { "ip_prefix": "3.2.54.0/24", "region": "us-west-1", @@ -11528,6 +11906,12 @@ "service": "AMAZON", "network_border_group": "us-east-1-wl1-clt-wlz-1" }, + { + "ip_prefix": "15.177.107.0/24", + "region": "sa-west-1", + "service": "AMAZON", + "network_border_group": "sa-west-1" + }, { "ip_prefix": "15.230.15.152/31", "region": "eu-central-1", @@ -11714,6 +12098,12 @@ "service": "AMAZON", "network_border_group": "ap-northeast-1" }, + { + "ip_prefix": "216.198.236.0/24", + "region": "me-south-1", + "service": "AMAZON", + "network_border_group": "me-south-1" + }, { "ip_prefix": "216.244.12.0/23", "region": "us-east-2", @@ -12470,6 +12860,12 @@ "service": "AMAZON", "network_border_group": "ap-northeast-2" }, + { + "ip_prefix": "35.96.48.0/21", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "46.51.216.0/21", "region": "ap-southeast-1", @@ -12602,6 +12998,12 @@ "service": "AMAZON", "network_border_group": "us-east-2" }, + { + "ip_prefix": "35.97.128.0/24", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "43.249.44.0/24", "region": "ap-southeast-2", @@ -12812,6 +13214,18 @@ "service": "AMAZON", "network_border_group": "eu-west-2" }, + { + "ip_prefix": "150.222.55.128/27", + "region": "sa-west-1", + "service": "AMAZON", + "network_border_group": "sa-west-1" + }, + { + "ip_prefix": "150.247.43.0/24", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "3.2.68.0/24", "region": "us-west-2", @@ -12944,12 +13358,6 @@ "service": "AMAZON", "network_border_group": "eu-west-1" }, - { - "ip_prefix": "51.74.0.0/16", - "region": "eusc-de-east-1", - "service": "AMAZON", - "network_border_group": "eusc-de-east-1" - }, { "ip_prefix": "52.93.178.165/32", "region": "us-west-1", @@ -12986,6 +13394,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-5" }, + { + "ip_prefix": "149.128.64.0/18", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ip_prefix": "150.222.108.0/24", "region": "ap-southeast-1", @@ -13004,6 +13418,12 @@ "service": "AMAZON", "network_border_group": "GLOBAL" }, + { + "ip_prefix": "216.198.224.0/22", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "13.232.0.0/14", "region": "ap-south-1", @@ -13034,6 +13454,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ip_prefix": "40.168.224.0/24", + "region": "GLOBAL", + "service": "AMAZON", + "network_border_group": "GLOBAL" + }, { "ip_prefix": "51.0.252.0/24", "region": "eusc-de-east-1", @@ -13070,6 +13496,12 @@ "service": "AMAZON", "network_border_group": "ap-northeast-1" }, + { + "ip_prefix": "69.107.10.192/29", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "108.166.244.41/32", "region": "us-east-2", @@ -13082,6 +13514,18 @@ "service": "AMAZON", "network_border_group": "us-east-2" }, + { + "ip_prefix": "184.36.0.0/14", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, + { + "ip_prefix": "216.198.216.0/21", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "3.5.132.0/23", "region": "us-east-2", @@ -13124,12 +13568,6 @@ "service": "AMAZON", "network_border_group": "ap-northeast-1-tpe-1" }, - { - "ip_prefix": "35.96.50.0/24", - "region": "eu-central-1", - "service": "AMAZON", - "network_border_group": "eu-central-1" - }, { "ip_prefix": "52.93.53.0/32", "region": "us-west-1", @@ -13286,6 +13724,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "69.107.10.112/29", + "region": "ap-southeast-1", + "service": "AMAZON", + "network_border_group": "ap-southeast-1" + }, { "ip_prefix": "150.222.152.98/32", "region": "eu-central-1", @@ -13448,18 +13892,6 @@ "service": "AMAZON", "network_border_group": "eu-west-3" }, - { - "ip_prefix": "43.226.24.0/23", - "region": "us-west-2", - "service": "AMAZON", - "network_border_group": "us-west-2" - }, - { - "ip_prefix": "51.0.142.0/23", - "region": "eusc-de-east-1", - "service": "AMAZON", - "network_border_group": "eusc-de-east-1" - }, { "ip_prefix": "52.93.86.165/32", "region": "us-east-1", @@ -13670,6 +14102,12 @@ "service": "AMAZON", "network_border_group": "GLOBAL" }, + { + "ip_prefix": "1.178.90.0/24", + "region": "eu-west-3", + "service": "AMAZON", + "network_border_group": "eu-west-3" + }, { "ip_prefix": "3.4.15.128/29", "region": "eu-west-2", @@ -13910,12 +14348,6 @@ "service": "AMAZON", "network_border_group": "ap-southeast-3" }, - { - "ip_prefix": "23.228.192.0/24", - "region": "ca-west-1", - "service": "AMAZON", - "network_border_group": "ca-west-1" - }, { "ip_prefix": "35.96.32.0/24", "region": "us-east-1", @@ -14056,9 +14488,9 @@ }, { "ip_prefix": "52.95.52.0/22", - "region": "us-east-1", + "region": "us-west-2", "service": "AMAZON", - "network_border_group": "us-east-1" + "network_border_group": "us-west-2" }, { "ip_prefix": "52.95.177.0/24", @@ -14078,6 +14510,12 @@ "service": "AMAZON", "network_border_group": "me-south-1" }, + { + "ip_prefix": "69.107.10.104/29", + "region": "me-south-1", + "service": "AMAZON", + "network_border_group": "me-south-1" + }, { "ip_prefix": "99.77.184.0/24", "region": "us-gov-west-1", @@ -14150,12 +14588,6 @@ "service": "AMAZON", "network_border_group": "ap-southeast-1" }, - { - "ip_prefix": "35.96.49.0/24", - "region": "eu-central-1", - "service": "AMAZON", - "network_border_group": "eu-central-1" - }, { "ip_prefix": "52.93.84.162/32", "region": "us-east-1", @@ -14606,6 +15038,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-2" }, + { + "ip_prefix": "69.107.10.160/29", + "region": "eu-west-1", + "service": "AMAZON", + "network_border_group": "eu-west-1" + }, { "ip_prefix": "104.255.59.132/32", "region": "ap-southeast-4", @@ -14636,6 +15074,18 @@ "service": "AMAZON", "network_border_group": "eu-west-1" }, + { + "ip_prefix": "216.198.250.0/23", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, + { + "ip_prefix": "3.2.99.0/24", + "region": "us-gov-west-1", + "service": "AMAZON", + "network_border_group": "us-gov-west-1" + }, { "ip_prefix": "15.221.24.0/21", "region": "us-east-1", @@ -14906,6 +15356,12 @@ "service": "AMAZON", "network_border_group": "us-east-1-chi-2" }, + { + "ip_prefix": "24.110.16.0/20", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "35.55.23.0/24", "region": "eu-west-3", @@ -15128,12 +15584,6 @@ "service": "AMAZON", "network_border_group": "eusc-de-east-1" }, - { - "ip_prefix": "51.226.0.0/15", - "region": "eusc-de-east-1", - "service": "AMAZON", - "network_border_group": "eusc-de-east-1" - }, { "ip_prefix": "52.93.82.0/24", "region": "ap-southeast-1", @@ -15632,6 +16082,12 @@ "service": "AMAZON", "network_border_group": "eu-west-3" }, + { + "ip_prefix": "16.15.24.0/22", + "region": "sa-west-1", + "service": "AMAZON", + "network_border_group": "sa-west-1" + }, { "ip_prefix": "18.154.0.0/15", "region": "GLOBAL", @@ -15734,6 +16190,12 @@ "service": "AMAZON", "network_border_group": "us-west-1" }, + { + "ip_prefix": "216.198.252.0/22", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "3.2.79.0/24", "region": "eu-west-1", @@ -15968,6 +16430,12 @@ "service": "AMAZON", "network_border_group": "us-west-2-hnl-1" }, + { + "ip_prefix": "104.255.56.3/32", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "104.255.59.242/32", "region": "ap-southeast-6", @@ -16046,6 +16514,12 @@ "service": "AMAZON", "network_border_group": "eu-south-1" }, + { + "ip_prefix": "69.107.11.8/29", + "region": "eu-north-1", + "service": "AMAZON", + "network_border_group": "eu-north-1" + }, { "ip_prefix": "76.223.170.128/28", "region": "sa-west-1", @@ -16256,6 +16730,12 @@ "service": "AMAZON", "network_border_group": "us-west-1" }, + { + "ip_prefix": "1.178.91.0/24", + "region": "ap-northeast-2", + "service": "AMAZON", + "network_border_group": "ap-northeast-2" + }, { "ip_prefix": "15.177.64.0/23", "region": "us-east-1", @@ -16394,6 +16874,12 @@ "service": "AMAZON", "network_border_group": "ap-northeast-1" }, + { + "ip_prefix": "15.129.24.0/22", + "region": "ap-northeast-1", + "service": "AMAZON", + "network_border_group": "ap-northeast-1" + }, { "ip_prefix": "15.135.0.0/16", "region": "ap-southeast-2", @@ -16466,6 +16952,12 @@ "service": "AMAZON", "network_border_group": "us-gov-east-1" }, + { + "ip_prefix": "216.198.200.0/21", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "3.3.16.0/21", "region": "us-east-1", @@ -16688,6 +17180,12 @@ "service": "AMAZON", "network_border_group": "ap-northeast-3" }, + { + "ip_prefix": "104.255.58.43/32", + "region": "eu-south-2", + "service": "AMAZON", + "network_border_group": "eu-south-2" + }, { "ip_prefix": "104.255.59.127/32", "region": "ap-south-2", @@ -16760,6 +17258,12 @@ "service": "AMAZON", "network_border_group": "ap-northeast-1" }, + { + "ip_prefix": "54.222.89.0/24", + "region": "cn-north-1", + "service": "AMAZON", + "network_border_group": "cn-north-1" + }, { "ip_prefix": "108.166.244.1/32", "region": "us-east-2", @@ -16784,6 +17288,12 @@ "service": "AMAZON", "network_border_group": "us-west-1" }, + { + "ip_prefix": "216.198.230.0/24", + "region": "eu-west-1", + "service": "AMAZON", + "network_border_group": "eu-west-1" + }, { "ip_prefix": "15.206.0.0/15", "region": "ap-south-1", @@ -16820,6 +17330,12 @@ "service": "AMAZON", "network_border_group": "eu-north-1" }, + { + "ip_prefix": "35.96.58.0/23", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "50.18.0.0/16", "region": "us-west-1", @@ -17000,6 +17516,12 @@ "service": "AMAZON", "network_border_group": "eu-west-1" }, + { + "ip_prefix": "216.198.212.0/23", + "region": "eu-south-1", + "service": "AMAZON", + "network_border_group": "eu-south-1" + }, { "ip_prefix": "3.4.12.12/32", "region": "ap-northeast-2", @@ -17348,6 +17870,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "150.247.44.0/24", + "region": "eu-west-1", + "service": "AMAZON", + "network_border_group": "eu-west-1" + }, { "ip_prefix": "173.83.200.0/22", "region": "us-east-1", @@ -18182,6 +18710,12 @@ "service": "AMAZON", "network_border_group": "us-west-1" }, + { + "ip_prefix": "3.5.74.0/23", + "region": "eu-west-1", + "service": "AMAZON", + "network_border_group": "eu-west-1" + }, { "ip_prefix": "15.193.4.0/24", "region": "eu-central-1", @@ -18554,18 +19088,6 @@ "service": "AMAZON", "network_border_group": "us-gov-east-1" }, - { - "ip_prefix": "35.96.51.0/24", - "region": "eu-central-1", - "service": "AMAZON", - "network_border_group": "eu-central-1" - }, - { - "ip_prefix": "51.0.136.0/23", - "region": "eusc-de-east-1", - "service": "AMAZON", - "network_border_group": "eusc-de-east-1" - }, { "ip_prefix": "52.93.55.166/31", "region": "us-west-1", @@ -18752,6 +19274,12 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, + { + "ip_prefix": "104.255.56.28/32", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "150.222.117.0/24", "region": "eu-north-1", @@ -18890,12 +19418,6 @@ "service": "AMAZON", "network_border_group": "ap-northeast-1" }, - { - "ip_prefix": "52.46.180.0/22", - "region": "us-west-2", - "service": "AMAZON", - "network_border_group": "us-west-2" - }, { "ip_prefix": "52.93.98.0/24", "region": "ap-south-1", @@ -18944,6 +19466,18 @@ "service": "AMAZON", "network_border_group": "sa-east-1" }, + { + "ip_prefix": "216.198.231.0/24", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, + { + "ip_prefix": "216.244.11.0/24", + "region": "eu-north-1", + "service": "AMAZON", + "network_border_group": "eu-north-1" + }, { "ip_prefix": "3.136.0.0/13", "region": "us-east-2", @@ -19178,6 +19712,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "104.255.58.0/32", + "region": "eu-south-2", + "service": "AMAZON", + "network_border_group": "eu-south-2" + }, { "ip_prefix": "150.222.54.128/27", "region": "ap-east-2", @@ -19466,6 +20006,12 @@ "service": "AMAZON", "network_border_group": "sa-east-1" }, + { + "ip_prefix": "69.107.10.216/29", + "region": "eu-south-1", + "service": "AMAZON", + "network_border_group": "eu-south-1" + }, { "ip_prefix": "99.82.176.0/21", "region": "GLOBAL", @@ -20048,6 +20594,12 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, + { + "ip_prefix": "216.198.248.0/23", + "region": "eu-west-3", + "service": "AMAZON", + "network_border_group": "eu-west-3" + }, { "ip_prefix": "3.98.0.0/15", "region": "ca-central-1", @@ -20132,6 +20684,12 @@ "service": "AMAZON", "network_border_group": "eu-west-2" }, + { + "ip_prefix": "216.198.233.0/24", + "region": "ap-southeast-1", + "service": "AMAZON", + "network_border_group": "ap-southeast-1" + }, { "ip_prefix": "3.4.2.0/24", "region": "us-east-1", @@ -20234,6 +20792,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-7" }, + { + "ip_prefix": "150.247.47.0/24", + "region": "eu-west-2", + "service": "AMAZON", + "network_border_group": "eu-west-2" + }, { "ip_prefix": "176.32.125.128/25", "region": "us-east-1", @@ -20246,6 +20810,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "3.2.100.0/24", + "region": "us-gov-east-1", + "service": "AMAZON", + "network_border_group": "us-gov-east-1" + }, { "ip_prefix": "3.4.12.28/32", "region": "ap-northeast-1", @@ -20522,6 +21092,12 @@ "service": "AMAZON", "network_border_group": "us-west-1" }, + { + "ip_prefix": "69.107.10.128/29", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ip_prefix": "99.77.151.0/24", "region": "us-east-1", @@ -20534,6 +21110,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-2" }, + { + "ip_prefix": "104.255.57.174/32", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "104.255.59.91/32", "region": "ap-south-1", @@ -20558,6 +21140,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-1" }, + { + "ip_prefix": "150.222.55.96/27", + "region": "sa-west-1", + "service": "AMAZON", + "network_border_group": "sa-west-1" + }, { "ip_prefix": "150.222.164.210/32", "region": "eu-west-1", @@ -21002,12 +21590,6 @@ "service": "AMAZON", "network_border_group": "eu-south-1" }, - { - "ip_prefix": "51.0.138.0/23", - "region": "eusc-de-east-1", - "service": "AMAZON", - "network_border_group": "eusc-de-east-1" - }, { "ip_prefix": "52.93.84.166/32", "region": "us-east-1", @@ -21386,12 +21968,6 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, - { - "ip_prefix": "52.82.180.0/22", - "region": "cn-northwest-1", - "service": "AMAZON", - "network_border_group": "cn-northwest-1" - }, { "ip_prefix": "52.93.44.0/24", "region": "sa-east-1", @@ -21554,12 +22130,24 @@ "service": "AMAZON", "network_border_group": "eu-west-1" }, + { + "ip_prefix": "104.255.57.167/32", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "150.222.70.0/24", "region": "sa-east-1", "service": "AMAZON", "network_border_group": "sa-east-1" }, + { + "ip_prefix": "184.32.0.0/14", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ip_prefix": "15.190.160.0/20", "region": "sa-west-1", @@ -21692,6 +22280,12 @@ "service": "AMAZON", "network_border_group": "us-east-2" }, + { + "ip_prefix": "35.111.253.0/24", + "region": "us-gov-east-1", + "service": "AMAZON", + "network_border_group": "us-gov-east-1" + }, { "ip_prefix": "40.164.0.0/16", "region": "us-west-1", @@ -21776,6 +22370,12 @@ "service": "AMAZON", "network_border_group": "us-west-1" }, + { + "ip_prefix": "16.15.32.0/20", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ip_prefix": "18.68.0.0/16", "region": "GLOBAL", @@ -22166,6 +22766,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ip_prefix": "35.111.160.0/24", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "35.154.0.0/16", "region": "ap-south-1", @@ -22580,6 +23186,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "104.255.58.44/32", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "104.255.59.87/32", "region": "ap-southeast-2", @@ -22604,6 +23216,12 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, + { + "ip_prefix": "1.178.92.0/24", + "region": "ca-central-1", + "service": "AMAZON", + "network_border_group": "ca-central-1" + }, { "ip_prefix": "3.4.15.88/29", "region": "sa-east-1", @@ -22784,6 +23402,18 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ip_prefix": "35.96.56.0/24", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, + { + "ip_prefix": "43.193.65.0/24", + "region": "cn-northwest-1", + "service": "AMAZON", + "network_border_group": "cn-northwest-1" + }, { "ip_prefix": "52.46.192.0/20", "region": "eu-north-1", @@ -22838,12 +23468,24 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ip_prefix": "104.255.57.169/32", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "161.193.0.0/18", "region": "us-east-1", "service": "AMAZON", "network_border_group": "us-east-1-mia-2" }, + { + "ip_prefix": "184.40.0.0/13", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ip_prefix": "198.41.101.0/24", "region": "us-east-1", @@ -22988,6 +23630,12 @@ "service": "AMAZON", "network_border_group": "eu-south-1" }, + { + "ip_prefix": "69.107.10.96/29", + "region": "me-south-1", + "service": "AMAZON", + "network_border_group": "me-south-1" + }, { "ip_prefix": "142.4.178.0/24", "region": "us-east-1", @@ -23168,6 +23816,12 @@ "service": "AMAZON", "network_border_group": "eu-central-2" }, + { + "ip_prefix": "23.228.223.0/24", + "region": "GLOBAL", + "service": "AMAZON", + "network_border_group": "GLOBAL" + }, { "ip_prefix": "52.93.6.0/23", "region": "eu-west-1", @@ -23210,6 +23864,12 @@ "service": "AMAZON", "network_border_group": "ap-northeast-1" }, + { + "ip_prefix": "69.107.11.40/29", + "region": "eu-west-2", + "service": "AMAZON", + "network_border_group": "eu-west-2" + }, { "ip_prefix": "99.77.157.0/24", "region": "eu-west-3", @@ -23564,6 +24224,12 @@ "service": "AMAZON", "network_border_group": "us-west-2-wl1-sfo-wlz-1" }, + { + "ip_prefix": "216.198.240.0/22", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "13.230.0.0/15", "region": "ap-northeast-1", @@ -23696,6 +24362,12 @@ "service": "AMAZON", "network_border_group": "eu-west-1" }, + { + "ip_prefix": "69.107.10.184/29", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "96.0.160.0/20", "region": "us-west-2", @@ -23888,6 +24560,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "69.107.10.88/29", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "96.0.96.0/22", "region": "us-east-1", @@ -24434,6 +25112,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-2" }, + { + "ip_prefix": "3.5.126.0/23", + "region": "eu-south-2", + "service": "AMAZON", + "network_border_group": "eu-south-2" + }, { "ip_prefix": "3.44.192.0/18", "region": "sa-east-1", @@ -24518,6 +25202,12 @@ "service": "AMAZON", "network_border_group": "ap-south-1" }, + { + "ip_prefix": "52.219.21.0/24", + "region": "ap-northeast-1", + "service": "AMAZON", + "network_border_group": "ap-northeast-1" + }, { "ip_prefix": "136.18.33.0/24", "region": "us-east-1", @@ -24596,12 +25286,6 @@ "service": "AMAZON", "network_border_group": "eu-west-1" }, - { - "ip_prefix": "54.222.36.0/22", - "region": "cn-north-1", - "service": "AMAZON", - "network_border_group": "cn-north-1" - }, { "ip_prefix": "108.166.244.30/32", "region": "us-east-2", @@ -24626,6 +25310,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "216.198.214.0/24", + "region": "us-west-1", + "service": "AMAZON", + "network_border_group": "us-west-1" + }, { "ip_prefix": "15.251.0.24/32", "region": "sa-east-1", @@ -24824,6 +25514,12 @@ "service": "AMAZON", "network_border_group": "me-central-1" }, + { + "ip_prefix": "104.255.57.175/32", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "108.166.244.61/32", "region": "us-east-2", @@ -24872,12 +25568,6 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, - { - "ip_prefix": "43.226.26.0/24", - "region": "us-west-2", - "service": "AMAZON", - "network_border_group": "us-west-2" - }, { "ip_prefix": "52.93.127.117/32", "region": "ap-southeast-1", @@ -25148,6 +25838,12 @@ "service": "AMAZON", "network_border_group": "eu-north-1" }, + { + "ip_prefix": "31.220.247.0/24", + "region": "GLOBAL", + "service": "AMAZON", + "network_border_group": "GLOBAL" + }, { "ip_prefix": "35.96.64.0/20", "region": "eu-west-3", @@ -25298,6 +25994,18 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, + { + "ip_prefix": "104.255.57.171/32", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, + { + "ip_prefix": "104.255.58.63/32", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "108.166.244.46/32", "region": "us-east-2", @@ -25370,12 +26078,6 @@ "service": "AMAZON", "network_border_group": "eu-west-3" }, - { - "ip_prefix": "52.46.184.0/22", - "region": "eu-central-1", - "service": "AMAZON", - "network_border_group": "eu-central-1" - }, { "ip_prefix": "52.67.0.0/16", "region": "sa-east-1", @@ -25418,6 +26120,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "69.107.10.232/29", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "104.255.56.25/32", "region": "us-east-1", @@ -25838,6 +26546,12 @@ "service": "AMAZON", "network_border_group": "sa-east-1" }, + { + "ip_prefix": "15.129.16.0/21", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "15.177.96.0/24", "region": "ap-southeast-4", @@ -25982,6 +26696,12 @@ "service": "AMAZON", "network_border_group": "GLOBAL" }, + { + "ip_prefix": "51.74.0.0/20", + "region": "eusc-de-east-1", + "service": "AMAZON", + "network_border_group": "eusc-de-east-1" + }, { "ip_prefix": "52.46.164.0/23", "region": "us-east-1", @@ -26096,6 +26816,12 @@ "service": "AMAZON", "network_border_group": "ap-east-2" }, + { + "ip_prefix": "37.203.157.0/24", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "51.0.104.0/21", "region": "GLOBAL", @@ -26180,6 +26906,12 @@ "service": "AMAZON", "network_border_group": "us-west-1" }, + { + "ip_prefix": "150.247.45.0/24", + "region": "eu-south-1", + "service": "AMAZON", + "network_border_group": "eu-south-1" + }, { "ip_prefix": "168.192.0.0/15", "region": "us-west-1", @@ -26294,6 +27026,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "104.255.56.27/32", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "150.222.234.106/31", "region": "us-west-1", @@ -26306,6 +27044,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "216.198.196.0/22", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "3.2.98.0/24", "region": "ap-southeast-3", @@ -26318,6 +27062,12 @@ "service": "AMAZON", "network_border_group": "sa-east-1" }, + { + "ip_prefix": "15.129.4.0/22", + "region": "us-west-1", + "service": "AMAZON", + "network_border_group": "us-west-1" + }, { "ip_prefix": "15.177.85.0/24", "region": "ap-east-1", @@ -26594,6 +27344,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-3" }, + { + "ip_prefix": "35.111.132.0/22", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "52.76.0.0/17", "region": "ap-southeast-1", @@ -26774,6 +27530,12 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, + { + "ip_prefix": "150.247.41.0/24", + "region": "ap-south-1", + "service": "AMAZON", + "network_border_group": "ap-south-1" + }, { "ip_prefix": "175.41.192.0/18", "region": "ap-northeast-1", @@ -27428,6 +28190,12 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, + { + "ip_prefix": "104.255.56.0/32", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "108.166.244.34/32", "region": "us-east-2", @@ -27974,6 +28742,12 @@ "service": "AMAZON", "network_border_group": "ap-northeast-3" }, + { + "ip_prefix": "104.255.57.168/32", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "108.138.0.0/15", "region": "GLOBAL", @@ -28244,12 +29018,6 @@ "service": "AMAZON", "network_border_group": "ap-south-1" }, - { - "ip_prefix": "65.176.0.0/14", - "region": "eusc-de-east-1", - "service": "AMAZON", - "network_border_group": "eusc-de-east-1" - }, { "ip_prefix": "69.107.7.32/29", "region": "us-east-1", @@ -28382,6 +29150,12 @@ "service": "AMAZON", "network_border_group": "sa-east-1" }, + { + "ip_prefix": "150.222.55.160/27", + "region": "sa-west-1", + "service": "AMAZON", + "network_border_group": "sa-west-1" + }, { "ip_prefix": "150.222.97.0/24", "region": "us-west-1", @@ -28604,6 +29378,12 @@ "service": "AMAZON", "network_border_group": "eu-west-1" }, + { + "ip_prefix": "69.107.11.16/29", + "region": "eu-west-3", + "service": "AMAZON", + "network_border_group": "eu-west-3" + }, { "ip_prefix": "70.232.112.0/21", "region": "eu-central-2", @@ -28664,6 +29444,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-1" }, + { + "ip_prefix": "1.178.174.0/24", + "region": "eu-north-1", + "service": "AMAZON", + "network_border_group": "eu-north-1" + }, { "ip_prefix": "3.4.12.44/32", "region": "eu-west-2", @@ -28742,6 +29528,12 @@ "service": "AMAZON", "network_border_group": "eu-south-1" }, + { + "ip_prefix": "99.10.0.0/18", + "region": "eu-north-1", + "service": "AMAZON", + "network_border_group": "eu-north-1" + }, { "ip_prefix": "99.78.216.0/22", "region": "us-east-2", @@ -28850,6 +29642,12 @@ "service": "AMAZON", "network_border_group": "eu-south-1" }, + { + "ip_prefix": "69.107.11.32/29", + "region": "eu-west-2", + "service": "AMAZON", + "network_border_group": "eu-west-2" + }, { "ip_prefix": "99.77.150.0/24", "region": "ca-central-1", @@ -29024,6 +29822,12 @@ "service": "AMAZON", "network_border_group": "eu-west-2" }, + { + "ip_prefix": "23.228.228.0/22", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "35.55.127.0/24", "region": "us-west-2", @@ -29390,6 +30194,12 @@ "service": "AMAZON", "network_border_group": "us-gov-west-1" }, + { + "ip_prefix": "56.137.224.0/23", + "region": "us-gov-west-1", + "service": "AMAZON", + "network_border_group": "us-gov-west-1" + }, { "ip_prefix": "56.137.38.0/23", "region": "us-gov-west-1", @@ -29810,6 +30620,12 @@ "service": "AMAZON", "network_border_group": "ap-south-1" }, + { + "ip_prefix": "13.204.220.0/23", + "region": "ap-south-1", + "service": "AMAZON", + "network_border_group": "ap-south-1" + }, { "ip_prefix": "13.234.221.192/26", "region": "ap-south-1", @@ -30338,6 +31154,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-6" }, + { + "ip_prefix": "3.103.82.0/24", + "region": "ap-southeast-6", + "service": "AMAZON", + "network_border_group": "ap-southeast-6" + }, { "ip_prefix": "43.208.52.0/24", "region": "ap-southeast-7", @@ -30386,6 +31208,18 @@ "service": "AMAZON", "network_border_group": "ap-southeast-7" }, + { + "ip_prefix": "43.210.10.0/23", + "region": "ap-southeast-7", + "service": "AMAZON", + "network_border_group": "ap-southeast-7" + }, + { + "ip_prefix": "43.210.12.0/23", + "region": "ap-southeast-7", + "service": "AMAZON", + "network_border_group": "ap-southeast-7" + }, { "ip_prefix": "15.156.212.0/22", "region": "ca-central-1", @@ -30506,6 +31340,12 @@ "service": "AMAZON", "network_border_group": "ca-west-1" }, + { + "ip_prefix": "56.112.70.0/23", + "region": "ca-west-1", + "service": "AMAZON", + "network_border_group": "ca-west-1" + }, { "ip_prefix": "18.153.115.128/26", "region": "eu-central-1", @@ -30620,6 +31460,12 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, + { + "ip_prefix": "63.181.18.128/25", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "16.62.140.0/25", "region": "eu-central-2", @@ -30824,6 +31670,12 @@ "service": "AMAZON", "network_border_group": "eu-south-1" }, + { + "ip_prefix": "51.118.98.0/23", + "region": "eu-south-1", + "service": "AMAZON", + "network_border_group": "eu-south-1" + }, { "ip_prefix": "18.100.160.0/24", "region": "eu-south-2", @@ -30890,6 +31742,12 @@ "service": "AMAZON", "network_border_group": "eu-west-1" }, + { + "ip_prefix": "108.130.186.0/23", + "region": "eu-west-1", + "service": "AMAZON", + "network_border_group": "eu-west-1" + }, { "ip_prefix": "3.248.244.0/26", "region": "eu-west-1", @@ -31472,6 +32330,24 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "100.48.54.0/23", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, + { + "ip_prefix": "100.49.198.0/23", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, + { + "ip_prefix": "100.52.164.0/23", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ip_prefix": "13.217.78.0/23", "region": "us-east-1", @@ -31838,6 +32714,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ip_prefix": "16.58.2.0/23", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "3.12.23.128/26", "region": "us-east-2", @@ -31928,6 +32810,12 @@ "service": "AMAZON", "network_border_group": "us-east-2" }, + { + "ip_prefix": "3.151.45.0/24", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ip_prefix": "3.17.136.0/23", "region": "us-east-2", @@ -31988,6 +32876,12 @@ "service": "AMAZON", "network_border_group": "us-west-1" }, + { + "ip_prefix": "16.147.182.0/23", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ip_prefix": "18.246.100.0/22", "region": "us-west-2", @@ -32588,6 +33482,12 @@ "service": "S3", "network_border_group": "us-gov-west-1" }, + { + "ip_prefix": "3.5.92.0/23", + "region": "us-east-2", + "service": "S3", + "network_border_group": "us-east-2" + }, { "ip_prefix": "52.219.192.0/23", "region": "us-west-1", @@ -32732,6 +33632,12 @@ "service": "S3", "network_border_group": "ap-southeast-2" }, + { + "ip_prefix": "3.5.88.0/22", + "region": "us-east-2", + "service": "S3", + "network_border_group": "us-east-2" + }, { "ip_prefix": "3.5.208.0/22", "region": "ap-south-1", @@ -32756,6 +33662,12 @@ "service": "S3", "network_border_group": "eu-west-2" }, + { + "ip_prefix": "52.219.23.0/24", + "region": "us-west-1", + "service": "S3", + "network_border_group": "us-west-1" + }, { "ip_prefix": "54.222.100.0/22", "region": "cn-north-1", @@ -32828,6 +33740,12 @@ "service": "S3", "network_border_group": "ap-southeast-5" }, + { + "ip_prefix": "16.12.120.0/22", + "region": "sa-west-1", + "service": "S3", + "network_border_group": "sa-west-1" + }, { "ip_prefix": "52.95.169.0/24", "region": "eu-north-1", @@ -32888,6 +33806,12 @@ "service": "S3", "network_border_group": "GLOBAL" }, + { + "ip_prefix": "3.5.120.0/22", + "region": "eu-central-1", + "service": "S3", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "76.223.104.0/24", "region": "GLOBAL", @@ -33326,6 +34250,12 @@ "service": "S3", "network_border_group": "GLOBAL" }, + { + "ip_prefix": "16.15.24.0/22", + "region": "sa-west-1", + "service": "S3", + "network_border_group": "sa-west-1" + }, { "ip_prefix": "52.219.160.0/23", "region": "ap-south-1", @@ -33452,6 +34382,12 @@ "service": "S3", "network_border_group": "us-west-1" }, + { + "ip_prefix": "3.5.74.0/23", + "region": "eu-west-1", + "service": "S3", + "network_border_group": "eu-west-1" + }, { "ip_prefix": "3.5.212.0/23", "region": "ap-south-1", @@ -33632,6 +34568,12 @@ "service": "S3", "network_border_group": "mx-central-1" }, + { + "ip_prefix": "16.15.32.0/20", + "region": "us-west-2", + "service": "S3", + "network_border_group": "us-west-2" + }, { "ip_prefix": "52.219.169.0/24", "region": "eu-central-1", @@ -33782,12 +34724,24 @@ "service": "S3", "network_border_group": "ca-central-1" }, + { + "ip_prefix": "3.5.126.0/23", + "region": "eu-south-2", + "service": "S3", + "network_border_group": "eu-south-2" + }, { "ip_prefix": "52.95.145.0/24", "region": "ca-central-1", "service": "S3", "network_border_group": "ca-central-1" }, + { + "ip_prefix": "52.219.21.0/24", + "region": "ap-northeast-1", + "service": "S3", + "network_border_group": "ap-northeast-1" + }, { "ip_prefix": "16.182.0.0/16", "region": "us-east-1", @@ -34076,6 +35030,12 @@ "service": "S3", "network_border_group": "ap-northeast-1" }, + { + "ip_prefix": "1.178.91.0/24", + "region": "ap-northeast-2", + "service": "S3", + "network_border_group": "ap-northeast-2" + }, { "ip_prefix": "3.36.167.64/28", "region": "ap-northeast-2", @@ -34256,6 +35216,12 @@ "service": "S3", "network_border_group": "ap-southeast-7" }, + { + "ip_prefix": "1.178.92.0/24", + "region": "ca-central-1", + "service": "S3", + "network_border_group": "ca-central-1" + }, { "ip_prefix": "3.98.24.0/28", "region": "ca-central-1", @@ -34310,6 +35276,12 @@ "service": "S3", "network_border_group": "eu-central-2" }, + { + "ip_prefix": "1.178.93.0/24", + "region": "eu-north-1", + "service": "S3", + "network_border_group": "eu-north-1" + }, { "ip_prefix": "13.51.71.176/28", "region": "eu-north-1", @@ -34364,6 +35336,12 @@ "service": "S3", "network_border_group": "eu-west-1" }, + { + "ip_prefix": "1.178.94.0/24", + "region": "eu-west-2", + "service": "S3", + "network_border_group": "eu-west-2" + }, { "ip_prefix": "18.168.37.160/28", "region": "eu-west-2", @@ -34376,6 +35354,12 @@ "service": "S3", "network_border_group": "eu-west-2" }, + { + "ip_prefix": "1.178.90.0/24", + "region": "eu-west-3", + "service": "S3", + "network_border_group": "eu-west-3" + }, { "ip_prefix": "13.36.84.48/28", "region": "eu-west-3", @@ -34664,6 +35648,12 @@ "service": "IVS_REALTIME", "network_border_group": "us-west-2" }, + { + "ip_prefix": "35.50.139.0/24", + "region": "us-east-1", + "service": "IVS_REALTIME", + "network_border_group": "us-east-1" + }, { "ip_prefix": "35.55.30.0/24", "region": "us-east-1", @@ -34694,6 +35684,12 @@ "service": "IVS_REALTIME", "network_border_group": "ap-south-1" }, + { + "ip_prefix": "35.50.137.0/24", + "region": "us-east-1", + "service": "IVS_REALTIME", + "network_border_group": "us-east-1" + }, { "ip_prefix": "35.50.236.0/24", "region": "ap-southeast-1", @@ -34772,6 +35768,12 @@ "service": "IVS_REALTIME", "network_border_group": "sa-east-1" }, + { + "ip_prefix": "35.50.141.0/24", + "region": "us-east-1", + "service": "IVS_REALTIME", + "network_border_group": "us-east-1" + }, { "ip_prefix": "185.42.204.0/22", "region": "GLOBAL", @@ -35834,6 +36836,12 @@ "service": "EC2", "network_border_group": "ap-northeast-1" }, + { + "ip_prefix": "43.226.27.0/24", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, { "ip_prefix": "52.95.226.0/24", "region": "ap-east-1", @@ -35882,12 +36890,6 @@ "service": "EC2", "network_border_group": "eu-central-1" }, - { - "ip_prefix": "35.96.52.0/24", - "region": "eu-central-1", - "service": "EC2", - "network_border_group": "eu-central-1" - }, { "ip_prefix": "54.247.0.0/16", "region": "eu-west-1", @@ -35960,6 +36962,12 @@ "service": "EC2", "network_border_group": "us-gov-west-1" }, + { + "ip_prefix": "3.5.92.0/23", + "region": "us-east-2", + "service": "EC2", + "network_border_group": "us-east-2" + }, { "ip_prefix": "5.60.0.0/20", "region": "ap-east-2", @@ -35978,12 +36986,6 @@ "service": "EC2", "network_border_group": "us-east-1-mci-1" }, - { - "ip_prefix": "23.228.193.0/24", - "region": "us-east-1", - "service": "EC2", - "network_border_group": "us-east-1" - }, { "ip_prefix": "35.50.238.0/24", "region": "ap-northeast-2", @@ -35996,6 +36998,12 @@ "service": "EC2", "network_border_group": "us-west-1" }, + { + "ip_prefix": "216.198.238.0/23", + "region": "eu-west-2", + "service": "EC2", + "network_border_group": "eu-west-2" + }, { "ip_prefix": "13.204.0.0/14", "region": "ap-south-1", @@ -36248,12 +37256,6 @@ "service": "EC2", "network_border_group": "ap-northeast-3" }, - { - "ip_prefix": "35.96.48.0/24", - "region": "eu-central-1", - "service": "EC2", - "network_border_group": "eu-central-1" - }, { "ip_prefix": "99.77.159.0/24", "region": "eu-south-1", @@ -36332,6 +37334,12 @@ "service": "EC2", "network_border_group": "ap-northeast-1" }, + { + "ip_prefix": "35.111.252.0/24", + "region": "us-gov-west-1", + "service": "EC2", + "network_border_group": "us-gov-west-1" + }, { "ip_prefix": "54.229.0.0/16", "region": "eu-west-1", @@ -36368,6 +37376,12 @@ "service": "EC2", "network_border_group": "eu-west-2" }, + { + "ip_prefix": "216.198.237.0/24", + "region": "sa-east-1", + "service": "EC2", + "network_border_group": "sa-east-1" + }, { "ip_prefix": "3.2.92.0/24", "region": "ap-southeast-4", @@ -36404,12 +37418,6 @@ "service": "EC2", "network_border_group": "us-west-1" }, - { - "ip_prefix": "35.96.30.0/23", - "region": "us-west-1", - "service": "EC2", - "network_border_group": "us-west-1" - }, { "ip_prefix": "46.51.192.0/20", "region": "eu-west-1", @@ -36596,6 +37604,12 @@ "service": "EC2", "network_border_group": "us-east-2" }, + { + "ip_prefix": "35.96.60.0/23", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, { "ip_prefix": "54.200.0.0/15", "region": "us-west-2", @@ -36674,6 +37688,12 @@ "service": "EC2", "network_border_group": "eu-central-1" }, + { + "ip_prefix": "1.178.94.0/24", + "region": "eu-west-2", + "service": "EC2", + "network_border_group": "eu-west-2" + }, { "ip_prefix": "35.50.133.0/24", "region": "us-west-2", @@ -36704,6 +37724,18 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ip_prefix": "15.129.8.0/21", + "region": "eu-west-2", + "service": "EC2", + "network_border_group": "eu-west-2" + }, + { + "ip_prefix": "35.50.139.0/24", + "region": "us-east-1", + "service": "EC2", + "network_border_group": "us-east-1" + }, { "ip_prefix": "99.77.148.0/24", "region": "af-south-1", @@ -36836,6 +37868,12 @@ "service": "EC2", "network_border_group": "eu-west-1" }, + { + "ip_prefix": "3.5.88.0/22", + "region": "us-east-2", + "service": "EC2", + "network_border_group": "us-east-2" + }, { "ip_prefix": "3.5.208.0/22", "region": "ap-south-1", @@ -36854,6 +37892,12 @@ "service": "EC2", "network_border_group": "ap-southeast-6" }, + { + "ip_prefix": "23.228.219.0/24", + "region": "us-west-1", + "service": "EC2", + "network_border_group": "us-west-1" + }, { "ip_prefix": "35.55.30.0/24", "region": "us-east-1", @@ -37112,6 +38156,12 @@ "service": "EC2", "network_border_group": "eu-west-1" }, + { + "ip_prefix": "122.200.61.0/24", + "region": "ap-southeast-2", + "service": "EC2", + "network_border_group": "ap-southeast-2" + }, { "ip_prefix": "15.228.0.0/15", "region": "sa-east-1", @@ -37226,6 +38276,12 @@ "service": "EC2", "network_border_group": "us-east-2" }, + { + "ip_prefix": "35.50.137.0/24", + "region": "us-east-1", + "service": "EC2", + "network_border_group": "us-east-1" + }, { "ip_prefix": "99.77.155.0/24", "region": "eu-west-1", @@ -37238,6 +38294,12 @@ "service": "EC2", "network_border_group": "ap-southeast-2" }, + { + "ip_prefix": "35.111.136.0/22", + "region": "us-east-2", + "service": "EC2", + "network_border_group": "us-east-2" + }, { "ip_prefix": "51.20.0.0/16", "region": "eu-north-1", @@ -37268,6 +38330,12 @@ "service": "EC2", "network_border_group": "us-gov-west-1" }, + { + "ip_prefix": "216.198.235.0/24", + "region": "ca-central-1", + "service": "EC2", + "network_border_group": "ca-central-1" + }, { "ip_prefix": "3.5.128.0/22", "region": "us-east-2", @@ -37292,6 +38360,12 @@ "service": "EC2", "network_border_group": "us-east-1" }, + { + "ip_prefix": "1.178.93.0/24", + "region": "eu-north-1", + "service": "EC2", + "network_border_group": "eu-north-1" + }, { "ip_prefix": "3.104.0.0/14", "region": "ap-southeast-2", @@ -37418,6 +38492,12 @@ "service": "EC2", "network_border_group": "us-gov-west-1" }, + { + "ip_prefix": "13.193.0.0/16", + "region": "ap-northeast-1", + "service": "EC2", + "network_border_group": "ap-northeast-1" + }, { "ip_prefix": "35.182.0.0/15", "region": "ca-central-1", @@ -37520,6 +38600,12 @@ "service": "EC2", "network_border_group": "ca-central-1" }, + { + "ip_prefix": "216.198.228.0/23", + "region": "eu-west-3", + "service": "EC2", + "network_border_group": "eu-west-3" + }, { "ip_prefix": "3.4.9.0/24", "region": "us-east-1", @@ -37682,6 +38768,12 @@ "service": "EC2", "network_border_group": "us-east-1" }, + { + "ip_prefix": "51.74.16.0/24", + "region": "eusc-de-east-1", + "service": "EC2", + "network_border_group": "eusc-de-east-1" + }, { "ip_prefix": "99.77.152.0/24", "region": "us-west-2", @@ -37850,6 +38942,12 @@ "service": "EC2", "network_border_group": "sa-east-1" }, + { + "ip_prefix": "40.168.226.0/24", + "region": "GLOBAL", + "service": "EC2", + "network_border_group": "GLOBAL" + }, { "ip_prefix": "35.160.0.0/13", "region": "us-west-2", @@ -37868,6 +38966,12 @@ "service": "EC2", "network_border_group": "eu-north-1" }, + { + "ip_prefix": "3.5.120.0/22", + "region": "eu-central-1", + "service": "EC2", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "13.112.0.0/14", "region": "ap-northeast-1", @@ -37994,6 +39098,12 @@ "service": "EC2", "network_border_group": "eu-west-1" }, + { + "ip_prefix": "216.198.194.0/24", + "region": "us-east-2", + "service": "EC2", + "network_border_group": "us-east-2" + }, { "ip_prefix": "3.44.0.0/18", "region": "ap-southeast-1", @@ -38072,6 +39182,12 @@ "service": "EC2", "network_border_group": "ap-southeast-2" }, + { + "ip_prefix": "35.111.128.0/22", + "region": "us-east-2", + "service": "EC2", + "network_border_group": "us-east-2" + }, { "ip_prefix": "52.44.0.0/15", "region": "us-east-1", @@ -38096,6 +39212,12 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ip_prefix": "216.198.208.0/22", + "region": "eu-central-1", + "service": "EC2", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "3.2.94.0/24", "region": "mx-central-1", @@ -38180,12 +39302,6 @@ "service": "EC2", "network_border_group": "eusc-de-east-1" }, - { - "ip_prefix": "52.82.176.0/22", - "region": "cn-northwest-1", - "service": "EC2", - "network_border_group": "cn-northwest-1" - }, { "ip_prefix": "54.183.0.0/16", "region": "us-west-1", @@ -38438,6 +39554,12 @@ "service": "EC2", "network_border_group": "me-central-1" }, + { + "ip_prefix": "15.193.32.0/24", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, { "ip_prefix": "15.220.152.0/21", "region": "eu-central-1", @@ -38456,6 +39578,12 @@ "service": "EC2", "network_border_group": "eu-north-1" }, + { + "ip_prefix": "51.72.0.0/15", + "region": "eusc-de-east-1", + "service": "EC2", + "network_border_group": "eusc-de-east-1" + }, { "ip_prefix": "51.112.0.0/16", "region": "me-central-1", @@ -38594,6 +39722,12 @@ "service": "EC2", "network_border_group": "us-west-2-las-1b" }, + { + "ip_prefix": "16.148.0.0/16", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, { "ip_prefix": "35.50.231.0/24", "region": "ap-south-1", @@ -38654,6 +39788,12 @@ "service": "EC2", "network_border_group": "ca-central-1" }, + { + "ip_prefix": "216.198.244.0/22", + "region": "eu-central-1", + "service": "EC2", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "3.4.10.0/24", "region": "us-east-1", @@ -38666,6 +39806,12 @@ "service": "EC2", "network_border_group": "ap-east-1" }, + { + "ip_prefix": "15.129.0.0/22", + "region": "ap-southeast-2", + "service": "EC2", + "network_border_group": "ap-southeast-2" + }, { "ip_prefix": "15.193.168.0/22", "region": "ap-south-2", @@ -38822,6 +39968,12 @@ "service": "EC2", "network_border_group": "ap-south-1" }, + { + "ip_prefix": "216.198.234.0/24", + "region": "ap-southeast-2", + "service": "EC2", + "network_border_group": "ap-southeast-2" + }, { "ip_prefix": "3.5.240.0/22", "region": "ap-northeast-3", @@ -38870,6 +40022,12 @@ "service": "EC2", "network_border_group": "ap-northeast-2" }, + { + "ip_prefix": "216.198.232.0/24", + "region": "af-south-1", + "service": "EC2", + "network_border_group": "af-south-1" + }, { "ip_prefix": "5.179.96.0/20", "region": "us-east-1", @@ -38942,6 +40100,12 @@ "service": "EC2", "network_border_group": "GLOBAL" }, + { + "ip_prefix": "3.45.64.0/18", + "region": "us-gov-west-1", + "service": "EC2", + "network_border_group": "us-gov-west-1" + }, { "ip_prefix": "5.60.96.0/19", "region": "eu-central-1", @@ -39002,12 +40166,6 @@ "service": "EC2", "network_border_group": "us-east-1" }, - { - "ip_prefix": "54.222.32.0/22", - "region": "cn-north-1", - "service": "EC2", - "network_border_group": "cn-north-1" - }, { "ip_prefix": "64.252.123.0/24", "region": "us-west-1", @@ -39038,12 +40196,30 @@ "service": "EC2", "network_border_group": "sa-east-1" }, + { + "ip_prefix": "216.198.215.0/24", + "region": "ap-northeast-2", + "service": "EC2", + "network_border_group": "ap-northeast-2" + }, + { + "ip_prefix": "16.140.0.0/16", + "region": "ap-southeast-4", + "service": "EC2", + "network_border_group": "ap-southeast-4" + }, { "ip_prefix": "34.224.0.0/12", "region": "us-east-1", "service": "EC2", "network_border_group": "us-east-1" }, + { + "ip_prefix": "35.50.141.0/24", + "region": "us-east-1", + "service": "EC2", + "network_border_group": "us-east-1" + }, { "ip_prefix": "52.75.0.0/16", "region": "us-west-2", @@ -39128,12 +40304,6 @@ "service": "EC2", "network_border_group": "ap-southeast-7" }, - { - "ip_prefix": "51.0.140.0/23", - "region": "eusc-de-east-1", - "service": "EC2", - "network_border_group": "eusc-de-east-1" - }, { "ip_prefix": "52.94.248.224/28", "region": "us-gov-west-1", @@ -39380,6 +40550,12 @@ "service": "EC2", "network_border_group": "us-east-1-chi-2" }, + { + "ip_prefix": "216.244.38.0/23", + "region": "eu-west-2", + "service": "EC2", + "network_border_group": "eu-west-2" + }, { "ip_prefix": "35.96.253.0/24", "region": "us-east-1", @@ -39410,6 +40586,12 @@ "service": "EC2", "network_border_group": "us-east-1-wl1-clt-wlz-1" }, + { + "ip_prefix": "15.177.107.0/24", + "region": "sa-west-1", + "service": "EC2", + "network_border_group": "sa-west-1" + }, { "ip_prefix": "35.96.6.0/24", "region": "us-west-2", @@ -39470,6 +40652,12 @@ "service": "EC2", "network_border_group": "ap-northeast-1" }, + { + "ip_prefix": "216.198.236.0/24", + "region": "me-south-1", + "service": "EC2", + "network_border_group": "me-south-1" + }, { "ip_prefix": "216.244.12.0/23", "region": "us-east-2", @@ -39506,6 +40694,12 @@ "service": "EC2", "network_border_group": "ap-southeast-5" }, + { + "ip_prefix": "54.55.0.0/16", + "region": "ap-east-2", + "service": "EC2", + "network_border_group": "ap-east-2" + }, { "ip_prefix": "3.2.3.0/24", "region": "us-east-1", @@ -39692,6 +40886,12 @@ "service": "EC2", "network_border_group": "ap-south-1" }, + { + "ip_prefix": "35.96.48.0/21", + "region": "eu-central-1", + "service": "EC2", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "46.51.216.0/21", "region": "ap-southeast-1", @@ -39884,6 +41084,18 @@ "service": "EC2", "network_border_group": "ap-southeast-2" }, + { + "ip_prefix": "149.128.64.0/18", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, + { + "ip_prefix": "216.198.224.0/22", + "region": "us-east-1", + "service": "EC2", + "network_border_group": "us-east-1" + }, { "ip_prefix": "13.232.0.0/14", "region": "ap-south-1", @@ -39902,6 +41114,12 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ip_prefix": "40.168.224.0/24", + "region": "GLOBAL", + "service": "EC2", + "network_border_group": "GLOBAL" + }, { "ip_prefix": "51.0.252.0/24", "region": "eusc-de-east-1", @@ -39914,6 +41132,18 @@ "service": "EC2", "network_border_group": "ap-northeast-1" }, + { + "ip_prefix": "184.36.0.0/14", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, + { + "ip_prefix": "216.198.216.0/21", + "region": "us-east-2", + "service": "EC2", + "network_border_group": "us-east-2" + }, { "ip_prefix": "3.5.132.0/23", "region": "us-east-2", @@ -39944,12 +41174,6 @@ "service": "EC2", "network_border_group": "ap-northeast-1-tpe-1" }, - { - "ip_prefix": "35.96.50.0/24", - "region": "eu-central-1", - "service": "EC2", - "network_border_group": "eu-central-1" - }, { "ip_prefix": "75.2.128.0/18", "region": "us-east-1", @@ -40028,18 +41252,6 @@ "service": "EC2", "network_border_group": "eu-west-3" }, - { - "ip_prefix": "43.226.24.0/23", - "region": "us-west-2", - "service": "EC2", - "network_border_group": "us-west-2" - }, - { - "ip_prefix": "51.0.142.0/23", - "region": "eusc-de-east-1", - "service": "EC2", - "network_border_group": "eusc-de-east-1" - }, { "ip_prefix": "54.80.0.0/13", "region": "us-east-1", @@ -40094,6 +41306,12 @@ "service": "EC2", "network_border_group": "us-east-1-wl1-chi-wlz-1" }, + { + "ip_prefix": "1.178.90.0/24", + "region": "eu-west-3", + "service": "EC2", + "network_border_group": "eu-west-3" + }, { "ip_prefix": "13.244.0.0/15", "region": "af-south-1", @@ -40190,12 +41408,6 @@ "service": "EC2", "network_border_group": "us-east-1" }, - { - "ip_prefix": "23.228.192.0/24", - "region": "ca-west-1", - "service": "EC2", - "network_border_group": "ca-west-1" - }, { "ip_prefix": "35.96.32.0/24", "region": "us-east-1", @@ -40268,12 +41480,6 @@ "service": "EC2", "network_border_group": "ap-southeast-1" }, - { - "ip_prefix": "35.96.49.0/24", - "region": "eu-central-1", - "service": "EC2", - "network_border_group": "eu-central-1" - }, { "ip_prefix": "110.238.2.0/23", "region": "us-east-2", @@ -40388,6 +41594,18 @@ "service": "EC2", "network_border_group": "eu-west-1" }, + { + "ip_prefix": "216.198.250.0/23", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, + { + "ip_prefix": "3.2.99.0/24", + "region": "us-gov-west-1", + "service": "EC2", + "network_border_group": "us-gov-west-1" + }, { "ip_prefix": "18.220.0.0/14", "region": "us-east-2", @@ -40478,6 +41696,12 @@ "service": "EC2", "network_border_group": "us-east-1-chi-2" }, + { + "ip_prefix": "24.110.16.0/20", + "region": "us-east-1", + "service": "EC2", + "network_border_group": "us-east-1" + }, { "ip_prefix": "35.55.23.0/24", "region": "eu-west-3", @@ -40724,6 +41948,12 @@ "service": "EC2", "network_border_group": "eu-west-3" }, + { + "ip_prefix": "16.15.24.0/22", + "region": "sa-west-1", + "service": "EC2", + "network_border_group": "sa-west-1" + }, { "ip_prefix": "64.252.84.0/24", "region": "eu-west-2", @@ -40754,6 +41984,12 @@ "service": "EC2", "network_border_group": "us-west-1" }, + { + "ip_prefix": "216.198.252.0/22", + "region": "us-east-1", + "service": "EC2", + "network_border_group": "us-east-1" + }, { "ip_prefix": "3.2.79.0/24", "region": "eu-west-1", @@ -40922,6 +42158,12 @@ "service": "EC2", "network_border_group": "eu-south-2" }, + { + "ip_prefix": "1.178.91.0/24", + "region": "ap-northeast-2", + "service": "EC2", + "network_border_group": "ap-northeast-2" + }, { "ip_prefix": "15.177.64.0/23", "region": "us-east-1", @@ -40970,6 +42212,18 @@ "service": "EC2", "network_border_group": "us-west-2-lax-1" }, + { + "ip_prefix": "15.129.24.0/22", + "region": "ap-northeast-1", + "service": "EC2", + "network_border_group": "ap-northeast-1" + }, + { + "ip_prefix": "15.135.0.0/16", + "region": "ap-southeast-2", + "service": "EC2", + "network_border_group": "ap-southeast-2" + }, { "ip_prefix": "18.136.0.0/16", "region": "ap-southeast-1", @@ -40988,6 +42242,12 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ip_prefix": "216.198.200.0/21", + "region": "eu-central-1", + "service": "EC2", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "13.212.0.0/15", "region": "ap-southeast-1", @@ -41054,6 +42314,12 @@ "service": "EC2", "network_border_group": "us-west-2-las-1b" }, + { + "ip_prefix": "16.25.0.0/16", + "region": "me-south-1", + "service": "EC2", + "network_border_group": "me-south-1" + }, { "ip_prefix": "99.77.140.0/24", "region": "ap-northeast-3", @@ -41078,6 +42344,18 @@ "service": "EC2", "network_border_group": "eu-north-1" }, + { + "ip_prefix": "54.222.89.0/24", + "region": "cn-north-1", + "service": "EC2", + "network_border_group": "cn-north-1" + }, + { + "ip_prefix": "216.198.230.0/24", + "region": "eu-west-1", + "service": "EC2", + "network_border_group": "eu-west-1" + }, { "ip_prefix": "15.206.0.0/15", "region": "ap-south-1", @@ -41090,6 +42368,12 @@ "service": "EC2", "network_border_group": "eu-north-1" }, + { + "ip_prefix": "35.96.58.0/23", + "region": "eu-central-1", + "service": "EC2", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "50.18.0.0/16", "region": "us-west-1", @@ -41168,6 +42452,12 @@ "service": "EC2", "network_border_group": "eu-west-1" }, + { + "ip_prefix": "216.198.212.0/23", + "region": "eu-south-1", + "service": "EC2", + "network_border_group": "eu-south-1" + }, { "ip_prefix": "3.5.146.0/23", "region": "ap-southeast-1", @@ -41336,6 +42626,12 @@ "service": "EC2", "network_border_group": "ap-northeast-1" }, + { + "ip_prefix": "35.42.0.0/16", + "region": "eu-south-2", + "service": "EC2", + "network_border_group": "eu-south-2" + }, { "ip_prefix": "46.137.128.0/18", "region": "eu-west-1", @@ -41570,6 +42866,12 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ip_prefix": "3.5.74.0/23", + "region": "eu-west-1", + "service": "EC2", + "network_border_group": "eu-west-1" + }, { "ip_prefix": "15.193.4.0/24", "region": "eu-central-1", @@ -41715,16 +43017,10 @@ "network_border_group": "us-east-1-dfw-1" }, { - "ip_prefix": "35.96.51.0/24", - "region": "eu-central-1", - "service": "EC2", - "network_border_group": "eu-central-1" - }, - { - "ip_prefix": "51.0.136.0/23", - "region": "eusc-de-east-1", + "ip_prefix": "15.224.0.0/16", + "region": "eu-west-3", "service": "EC2", - "network_border_group": "eusc-de-east-1" + "network_border_group": "eu-west-3" }, { "ip_prefix": "15.253.0.0/16", @@ -41799,11 +43095,17 @@ "network_border_group": "eu-west-2-wl2-man-wlz-1" }, { - "ip_prefix": "52.46.180.0/22", + "ip_prefix": "216.198.231.0/24", "region": "us-west-2", "service": "EC2", "network_border_group": "us-west-2" }, + { + "ip_prefix": "216.244.11.0/24", + "region": "eu-north-1", + "service": "EC2", + "network_border_group": "eu-north-1" + }, { "ip_prefix": "3.136.0.0/13", "region": "us-east-2", @@ -41924,6 +43226,12 @@ "service": "EC2", "network_border_group": "me-south-1" }, + { + "ip_prefix": "16.58.0.0/16", + "region": "us-east-2", + "service": "EC2", + "network_border_group": "us-east-2" + }, { "ip_prefix": "52.94.248.112/28", "region": "eu-central-1", @@ -42188,6 +43496,12 @@ "service": "EC2", "network_border_group": "eu-south-2" }, + { + "ip_prefix": "216.198.248.0/23", + "region": "eu-west-3", + "service": "EC2", + "network_border_group": "eu-west-3" + }, { "ip_prefix": "3.98.0.0/15", "region": "ca-central-1", @@ -42230,6 +43544,12 @@ "service": "EC2", "network_border_group": "eu-west-2" }, + { + "ip_prefix": "216.198.233.0/24", + "region": "ap-southeast-1", + "service": "EC2", + "network_border_group": "ap-southeast-1" + }, { "ip_prefix": "3.4.2.0/24", "region": "us-east-1", @@ -42278,6 +43598,12 @@ "service": "EC2", "network_border_group": "us-east-1" }, + { + "ip_prefix": "3.2.100.0/24", + "region": "us-gov-east-1", + "service": "EC2", + "network_border_group": "us-gov-east-1" + }, { "ip_prefix": "18.97.112.0/20", "region": "ap-east-2", @@ -42410,6 +43736,12 @@ "service": "EC2", "network_border_group": "eu-west-2" }, + { + "ip_prefix": "16.60.0.0/16", + "region": "eu-west-2", + "service": "EC2", + "network_border_group": "eu-west-2" + }, { "ip_prefix": "18.246.0.0/16", "region": "us-west-2", @@ -42500,12 +43832,6 @@ "service": "EC2", "network_border_group": "eu-south-1" }, - { - "ip_prefix": "51.0.138.0/23", - "region": "eusc-de-east-1", - "service": "EC2", - "network_border_group": "eusc-de-east-1" - }, { "ip_prefix": "99.77.55.42/32", "region": "eu-south-2", @@ -42626,12 +43952,6 @@ "service": "EC2", "network_border_group": "us-east-1" }, - { - "ip_prefix": "52.82.180.0/22", - "region": "cn-northwest-1", - "service": "EC2", - "network_border_group": "cn-northwest-1" - }, { "ip_prefix": "99.151.64.0/21", "region": "eu-south-2", @@ -42662,6 +43982,12 @@ "service": "EC2", "network_border_group": "ap-south-2" }, + { + "ip_prefix": "184.32.0.0/14", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, { "ip_prefix": "16.50.0.0/15", "region": "ap-southeast-4", @@ -42704,6 +44030,12 @@ "service": "EC2", "network_border_group": "us-east-2" }, + { + "ip_prefix": "35.111.253.0/24", + "region": "us-gov-east-1", + "service": "EC2", + "network_border_group": "us-gov-east-1" + }, { "ip_prefix": "54.234.0.0/15", "region": "us-east-1", @@ -42734,6 +44066,12 @@ "service": "EC2", "network_border_group": "us-east-1-phl-1" }, + { + "ip_prefix": "16.15.32.0/20", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, { "ip_prefix": "52.95.225.0/24", "region": "ap-northeast-3", @@ -42812,6 +44150,12 @@ "service": "EC2", "network_border_group": "cn-northwest-1" }, + { + "ip_prefix": "182.24.0.0/14", + "region": "ap-southeast-6", + "service": "EC2", + "network_border_group": "ap-southeast-6" + }, { "ip_prefix": "3.43.64.0/18", "region": "us-east-2", @@ -42842,6 +44186,12 @@ "service": "EC2", "network_border_group": "us-east-1-msp-1" }, + { + "ip_prefix": "15.233.0.0/16", + "region": "ap-southeast-3", + "service": "EC2", + "network_border_group": "ap-southeast-3" + }, { "ip_prefix": "52.94.249.176/28", "region": "af-south-1", @@ -42902,6 +44252,12 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ip_prefix": "35.111.160.0/24", + "region": "us-east-2", + "service": "EC2", + "network_border_group": "us-east-2" + }, { "ip_prefix": "35.154.0.0/16", "region": "ap-south-1", @@ -42992,6 +44348,12 @@ "service": "EC2", "network_border_group": "us-east-2" }, + { + "ip_prefix": "1.178.92.0/24", + "region": "ca-central-1", + "service": "EC2", + "network_border_group": "ca-central-1" + }, { "ip_prefix": "15.181.249.0/24", "region": "us-east-1", @@ -43058,6 +44420,18 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ip_prefix": "35.96.56.0/24", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, + { + "ip_prefix": "43.193.65.0/24", + "region": "cn-northwest-1", + "service": "EC2", + "network_border_group": "cn-northwest-1" + }, { "ip_prefix": "52.94.249.112/28", "region": "us-gov-east-1", @@ -43088,6 +44462,12 @@ "service": "EC2", "network_border_group": "us-east-2" }, + { + "ip_prefix": "63.184.0.0/13", + "region": "eu-central-1", + "service": "EC2", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "18.153.0.0/16", "region": "eu-central-1", @@ -43256,6 +44636,12 @@ "service": "EC2", "network_border_group": "us-west-2-wl1-sfo-wlz-1" }, + { + "ip_prefix": "216.198.240.0/22", + "region": "us-east-1", + "service": "EC2", + "network_border_group": "us-east-1" + }, { "ip_prefix": "13.230.0.0/15", "region": "ap-northeast-1", @@ -43526,6 +44912,12 @@ "service": "EC2", "network_border_group": "ap-northeast-2" }, + { + "ip_prefix": "3.5.126.0/23", + "region": "eu-south-2", + "service": "EC2", + "network_border_group": "eu-south-2" + }, { "ip_prefix": "3.44.192.0/18", "region": "sa-east-1", @@ -43587,10 +44979,10 @@ "network_border_group": "ap-northeast-2" }, { - "ip_prefix": "54.222.36.0/22", - "region": "cn-north-1", + "ip_prefix": "216.198.214.0/24", + "region": "us-west-1", "service": "EC2", - "network_border_group": "cn-north-1" + "network_border_group": "us-west-1" }, { "ip_prefix": "16.15.12.0/22", @@ -43670,12 +45062,6 @@ "service": "EC2", "network_border_group": "eu-central-1" }, - { - "ip_prefix": "43.226.26.0/24", - "region": "us-west-2", - "service": "EC2", - "network_border_group": "us-west-2" - }, { "ip_prefix": "54.198.0.0/16", "region": "us-east-1", @@ -43742,6 +45128,12 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ip_prefix": "31.220.247.0/24", + "region": "GLOBAL", + "service": "EC2", + "network_border_group": "GLOBAL" + }, { "ip_prefix": "35.96.64.0/20", "region": "eu-west-3", @@ -43808,6 +45200,12 @@ "service": "EC2", "network_border_group": "ap-northeast-1" }, + { + "ip_prefix": "16.147.0.0/16", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, { "ip_prefix": "35.44.0.0/15", "region": "eu-south-2", @@ -43820,12 +45218,6 @@ "service": "EC2", "network_border_group": "ap-south-2" }, - { - "ip_prefix": "52.46.184.0/22", - "region": "eu-central-1", - "service": "EC2", - "network_border_group": "eu-central-1" - }, { "ip_prefix": "52.67.0.0/16", "region": "sa-east-1", @@ -43946,6 +45338,12 @@ "service": "EC2", "network_border_group": "eu-west-2" }, + { + "ip_prefix": "15.129.16.0/21", + "region": "us-east-2", + "service": "EC2", + "network_border_group": "us-east-2" + }, { "ip_prefix": "15.177.96.0/24", "region": "ap-southeast-4", @@ -43994,6 +45392,12 @@ "service": "EC2", "network_border_group": "me-south-1" }, + { + "ip_prefix": "51.74.0.0/20", + "region": "eusc-de-east-1", + "service": "EC2", + "network_border_group": "eusc-de-east-1" + }, { "ip_prefix": "54.178.0.0/16", "region": "ap-northeast-1", @@ -44036,6 +45440,12 @@ "service": "EC2", "network_border_group": "ap-east-2" }, + { + "ip_prefix": "37.203.157.0/24", + "region": "eu-central-1", + "service": "EC2", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "51.0.104.0/21", "region": "GLOBAL", @@ -44096,12 +45506,24 @@ "service": "EC2", "network_border_group": "eu-west-1" }, + { + "ip_prefix": "216.198.196.0/22", + "region": "eu-central-1", + "service": "EC2", + "network_border_group": "eu-central-1" + }, { "ip_prefix": "3.2.98.0/24", "region": "ap-southeast-3", "service": "EC2", "network_border_group": "ap-southeast-3" }, + { + "ip_prefix": "15.129.4.0/22", + "region": "us-west-1", + "service": "EC2", + "network_border_group": "us-west-1" + }, { "ip_prefix": "15.177.85.0/24", "region": "ap-east-1", @@ -44228,6 +45650,12 @@ "service": "EC2", "network_border_group": "ap-southeast-3" }, + { + "ip_prefix": "35.111.132.0/22", + "region": "us-east-2", + "service": "EC2", + "network_border_group": "us-east-2" + }, { "ip_prefix": "52.76.0.0/17", "region": "ap-southeast-1", @@ -44858,6 +46286,12 @@ "service": "EC2", "network_border_group": "ap-southeast-1" }, + { + "ip_prefix": "1.178.174.0/24", + "region": "eu-north-1", + "service": "EC2", + "network_border_group": "eu-north-1" + }, { "ip_prefix": "15.177.92.0/24", "region": "ap-southeast-3", @@ -44882,6 +46316,12 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ip_prefix": "99.10.0.0/18", + "region": "eu-north-1", + "service": "EC2", + "network_border_group": "eu-north-1" + }, { "ip_prefix": "216.39.152.0/21", "region": "eu-west-2", @@ -44954,6 +46394,12 @@ "service": "EC2", "network_border_group": "eu-west-3" }, + { + "ip_prefix": "16.174.0.0/16", + "region": "ca-west-1", + "service": "EC2", + "network_border_group": "ca-west-1" + }, { "ip_prefix": "18.96.8.0/21", "region": "us-gov-west-1", @@ -45008,6 +46454,12 @@ "service": "EC2", "network_border_group": "eu-central-1" }, + { + "ip_prefix": "23.228.228.0/22", + "region": "us-east-1", + "service": "EC2", + "network_border_group": "us-east-1" + }, { "ip_prefix": "35.55.127.0/24", "region": "us-west-2", @@ -45056,6 +46508,12 @@ "service": "CLOUDFRONT", "network_border_group": "GLOBAL" }, + { + "ip_prefix": "23.228.222.0/24", + "region": "GLOBAL", + "service": "CLOUDFRONT", + "network_border_group": "GLOBAL" + }, { "ip_prefix": "205.251.249.0/24", "region": "GLOBAL", @@ -45068,6 +46526,12 @@ "service": "CLOUDFRONT", "network_border_group": "GLOBAL" }, + { + "ip_prefix": "23.228.220.0/24", + "region": "GLOBAL", + "service": "CLOUDFRONT", + "network_border_group": "GLOBAL" + }, { "ip_prefix": "204.246.168.0/22", "region": "GLOBAL", @@ -45230,6 +46694,12 @@ "service": "CLOUDFRONT", "network_border_group": "GLOBAL" }, + { + "ip_prefix": "23.228.221.0/24", + "region": "GLOBAL", + "service": "CLOUDFRONT", + "network_border_group": "GLOBAL" + }, { "ip_prefix": "58.254.138.0/25", "region": "GLOBAL", @@ -45554,6 +47024,12 @@ "service": "CLOUDFRONT", "network_border_group": "GLOBAL" }, + { + "ip_prefix": "23.228.223.0/24", + "region": "GLOBAL", + "service": "CLOUDFRONT", + "network_border_group": "GLOBAL" + }, { "ip_prefix": "52.124.128.0/17", "region": "GLOBAL", @@ -47090,6 +48566,12 @@ "service": "ROUTE53_HEALTHCHECKS_PUBLISHING", "network_border_group": "ap-east-2" }, + { + "ip_prefix": "15.177.107.0/24", + "region": "sa-west-1", + "service": "ROUTE53_HEALTHCHECKS_PUBLISHING", + "network_border_group": "sa-west-1" + }, { "ip_prefix": "15.177.73.0/24", "region": "ap-south-1", @@ -47397,7 +48879,7 @@ "network_border_group": "GLOBAL" }, { - "ip_prefix": "52.46.32.0/19", + "ip_prefix": "52.46.0.0/18", "region": "GLOBAL", "service": "CLOUDFRONT_ORIGIN_FACING", "network_border_group": "GLOBAL" @@ -47450,12 +48932,6 @@ "service": "CLOUDFRONT_ORIGIN_FACING", "network_border_group": "GLOBAL" }, - { - "ip_prefix": "52.46.16.0/20", - "region": "GLOBAL", - "service": "CLOUDFRONT_ORIGIN_FACING", - "network_border_group": "GLOBAL" - }, { "ip_prefix": "54.239.208.0/21", "region": "GLOBAL", @@ -47960,6 +49436,24 @@ "service": "CODEBUILD", "network_border_group": "ap-southeast-4" }, + { + "ip_prefix": "56.68.33.32/28", + "region": "ap-southeast-5", + "service": "CODEBUILD", + "network_border_group": "ap-southeast-5" + }, + { + "ip_prefix": "3.103.24.192/28", + "region": "ap-southeast-6", + "service": "CODEBUILD", + "network_border_group": "ap-southeast-6" + }, + { + "ip_prefix": "43.209.155.112/28", + "region": "ap-southeast-7", + "service": "CODEBUILD", + "network_border_group": "ap-southeast-7" + }, { "ip_prefix": "3.98.171.224/29", "region": "ca-central-1", @@ -48206,6 +49700,12 @@ "service": "API_GATEWAY", "network_border_group": "cn-northwest-1" }, + { + "ip_prefix": "51.224.184.0/24", + "region": "eusc-de-east-1", + "service": "API_GATEWAY", + "network_border_group": "eusc-de-east-1" + }, { "ip_prefix": "18.252.56.0/23", "region": "us-gov-east-1", @@ -55828,12 +57328,30 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2a05:d06a:c000::/40", + "region": "eu-west-2", + "service": "AMAZON", + "network_border_group": "eu-west-2" + }, { "ipv6_prefix": "2a05:d07a:a000::/40", "region": "eu-south-1", "service": "AMAZON", "network_border_group": "eu-south-1" }, + { + "ipv6_prefix": "2406:daea:c800::/40", + "region": "ap-east-2", + "service": "AMAZON", + "network_border_group": "ap-east-2" + }, + { + "ipv6_prefix": "2600:f0f1:4280::/42", + "region": "ap-east-1", + "service": "AMAZON", + "network_border_group": "ap-east-1" + }, { "ipv6_prefix": "2620:107:4000:9000::/63", "region": "us-east-1", @@ -55906,6 +57424,12 @@ "service": "AMAZON", "network_border_group": "ap-northeast-2" }, + { + "ipv6_prefix": "2600:f0f0:8108::/48", + "region": "eu-west-3", + "service": "AMAZON", + "network_border_group": "eu-west-3" + }, { "ipv6_prefix": "2606:f40:ffef::/48", "region": "ap-southeast-2", @@ -55918,12 +57442,6 @@ "service": "AMAZON", "network_border_group": "ap-southeast-2" }, - { - "ipv6_prefix": "2a05:d07d:4000::/40", - "region": "eu-central-1", - "service": "AMAZON", - "network_border_group": "eu-central-1" - }, { "ipv6_prefix": "2406:da1b::/36", "region": "ap-south-2", @@ -56026,6 +57544,12 @@ "service": "AMAZON", "network_border_group": "eu-north-1" }, + { + "ipv6_prefix": "2a05:d06a:8000::/40", + "region": "eu-west-1", + "service": "AMAZON", + "network_border_group": "eu-west-1" + }, { "ipv6_prefix": "2406:dabb:800::/40", "region": "ap-southeast-5", @@ -56038,6 +57562,12 @@ "service": "AMAZON", "network_border_group": "sa-east-1" }, + { + "ipv6_prefix": "2600:1fea:e000::/40", + "region": "sa-east-1", + "service": "AMAZON", + "network_border_group": "sa-east-1" + }, { "ipv6_prefix": "2600:1ff4:e000::/40", "region": "sa-east-1", @@ -56080,12 +57610,6 @@ "service": "AMAZON", "network_border_group": "eu-west-2" }, - { - "ipv6_prefix": "2400:7fc0:fd80::/48", - "region": "cn-north-1", - "service": "AMAZON", - "network_border_group": "cn-north-1" - }, { "ipv6_prefix": "2406:da32:c800::/40", "region": "ap-east-2", @@ -56218,6 +57742,12 @@ "service": "AMAZON", "network_border_group": "eu-south-2" }, + { + "ipv6_prefix": "2406:daea:1000::/40", + "region": "af-south-1", + "service": "AMAZON", + "network_border_group": "af-south-1" + }, { "ipv6_prefix": "2600:1f00:7400::/40", "region": "mx-central-1", @@ -56284,18 +57814,18 @@ "service": "AMAZON", "network_border_group": "sa-east-1" }, - { - "ipv6_prefix": "2600:1ffd:7400::/40", - "region": "mx-central-1", - "service": "AMAZON", - "network_border_group": "mx-central-1" - }, { "ipv6_prefix": "2600:1ffd:80a7::/48", "region": "eu-central-1", "service": "AMAZON", "network_border_group": "eu-central-1" }, + { + "ipv6_prefix": "2631:1:4d80::/48", + "region": "eu-west-2", + "service": "AMAZON", + "network_border_group": "eu-west-2" + }, { "ipv6_prefix": "2a05:d074:9000::/40", "region": "eu-central-2", @@ -56308,6 +57838,12 @@ "service": "AMAZON", "network_border_group": "eusc-de-east-1" }, + { + "ipv6_prefix": "2600:1f01:4918::/47", + "region": "eu-south-1", + "service": "AMAZON", + "network_border_group": "eu-south-1" + }, { "ipv6_prefix": "2600:1ff9:e000::/40", "region": "sa-east-1", @@ -56326,6 +57862,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2a05:d06a:e000::/40", + "region": "me-south-1", + "service": "AMAZON", + "network_border_group": "me-south-1" + }, { "ipv6_prefix": "2406:da70:6000::/40", "region": "ap-northeast-3", @@ -56363,16 +57905,16 @@ "network_border_group": "ca-central-1" }, { - "ipv6_prefix": "2a05:d070:4000::/40", - "region": "eu-central-1", + "ipv6_prefix": "2606:7b40:1b80::/44", + "region": "GLOBAL", "service": "AMAZON", - "network_border_group": "eu-central-1" + "network_border_group": "GLOBAL" }, { - "ipv6_prefix": "2400:7fc0:fda0::/48", - "region": "cn-north-1", + "ipv6_prefix": "2a05:d070:4000::/40", + "region": "eu-central-1", "service": "AMAZON", - "network_border_group": "cn-north-1" + "network_border_group": "eu-central-1" }, { "ipv6_prefix": "2606:f40:aa00::/40", @@ -56386,6 +57928,12 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, + { + "ipv6_prefix": "2a05:d06a:6000::/40", + "region": "eu-north-1", + "service": "AMAZON", + "network_border_group": "eu-north-1" + }, { "ipv6_prefix": "2406:da15::/36", "region": "ap-northeast-2", @@ -56836,6 +58384,12 @@ "service": "AMAZON", "network_border_group": "eu-west-2" }, + { + "ipv6_prefix": "2606:7b40:10ff:60::/59", + "region": "af-south-1", + "service": "AMAZON", + "network_border_group": "af-south-1" + }, { "ipv6_prefix": "2620:107:4000:9016::/64", "region": "us-east-1", @@ -56872,6 +58426,12 @@ "service": "AMAZON", "network_border_group": "eu-west-3" }, + { + "ipv6_prefix": "2600:f0f0:810b::/48", + "region": "us-west-1", + "service": "AMAZON", + "network_border_group": "us-west-1" + }, { "ipv6_prefix": "2600:f0f2:701b::/48", "region": "ap-southeast-1", @@ -56920,6 +58480,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2606:7b40:1b20::/44", + "region": "GLOBAL", + "service": "AMAZON", + "network_border_group": "GLOBAL" + }, { "ipv6_prefix": "2620:107:4000:7100::/56", "region": "us-west-1", @@ -57100,6 +58666,12 @@ "service": "AMAZON", "network_border_group": "me-central-1" }, + { + "ipv6_prefix": "2631:1:4ff2::/48", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2400:6500:0:7600::/56", "region": "ap-northeast-3", @@ -57130,6 +58702,12 @@ "service": "AMAZON", "network_border_group": "ca-west-1" }, + { + "ipv6_prefix": "2600:1fea:8000::/39", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ipv6_prefix": "2600:1ffe:a400::/40", "region": "ca-west-1", @@ -57148,6 +58726,12 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, + { + "ipv6_prefix": "2606:7b40:10ff:e0::/59", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2606:7b40:1b0f:c000::/56", "region": "us-west-2", @@ -57196,12 +58780,24 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2606:7b40:10ff:80::/59", + "region": "ap-southeast-4", + "service": "AMAZON", + "network_border_group": "ap-southeast-4" + }, { "ipv6_prefix": "2620:107:4000:8004::/64", "region": "us-east-1", "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2631:1:4ff4::/48", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2a05:d032:5000::/40", "region": "il-central-1", @@ -57262,12 +58858,6 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, - { - "ipv6_prefix": "2a05:d07d:e000::/40", - "region": "me-south-1", - "service": "AMAZON", - "network_border_group": "me-south-1" - }, { "ipv6_prefix": "2400:6500:0:7900::/56", "region": "ap-south-2", @@ -57490,6 +59080,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-1" }, + { + "ipv6_prefix": "2600:f0f0:8120::/48", + "region": "eu-south-1", + "service": "AMAZON", + "network_border_group": "eu-south-1" + }, { "ipv6_prefix": "2606:f40:3e00::/40", "region": "sa-east-1", @@ -57586,12 +59182,6 @@ "service": "AMAZON", "network_border_group": "mx-central-1" }, - { - "ipv6_prefix": "2600:1ffd:80a0::/48", - "region": "us-east-1", - "service": "AMAZON", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2606:f40:fffe::/48", "region": "us-east-1", @@ -57604,6 +59194,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2606:7b40:1b30::/44", + "region": "GLOBAL", + "service": "AMAZON", + "network_border_group": "GLOBAL" + }, { "ipv6_prefix": "2620:107:4000:7000::/56", "region": "us-east-1", @@ -57616,6 +59212,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2631:1:4dc0::/48", + "region": "eu-west-3", + "service": "AMAZON", + "network_border_group": "eu-west-3" + }, { "ipv6_prefix": "2a05:d030:c000::/40", "region": "eu-west-2", @@ -57748,6 +59350,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2600:1fea:6000::/40", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ipv6_prefix": "2600:1ff3:4000::/39", "region": "us-west-2", @@ -57778,6 +59386,12 @@ "service": "AMAZON", "network_border_group": "mx-central-1" }, + { + "ipv6_prefix": "2606:7b40:1b0f:100::/56", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ipv6_prefix": "2620:107:4000:4700::/64", "region": "us-east-2", @@ -57802,12 +59416,6 @@ "service": "AMAZON", "network_border_group": "ca-west-1" }, - { - "ipv6_prefix": "2600:1ffd:80e0::/48", - "region": "us-east-1", - "service": "AMAZON", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2600:f004:a000::/40", "region": "ap-southeast-2", @@ -57874,6 +59482,12 @@ "service": "AMAZON", "network_border_group": "us-west-1" }, + { + "ipv6_prefix": "2600:f0f0:810c::/48", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ipv6_prefix": "2606:7b40:10ff:a2e0::/60", "region": "us-west-2", @@ -57958,6 +59572,12 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, + { + "ipv6_prefix": "2606:7b40:10ff:a0::/59", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ipv6_prefix": "2620:107:3000::/48", "region": "us-west-1", @@ -58090,12 +59710,6 @@ "service": "AMAZON", "network_border_group": "ap-southeast-1" }, - { - "ipv6_prefix": "2406:dafd:8800::/40", - "region": "ap-southeast-1", - "service": "AMAZON", - "network_border_group": "ap-southeast-1" - }, { "ipv6_prefix": "2600:1f22:c000::/36", "region": "us-east-1", @@ -58108,18 +59722,18 @@ "service": "AMAZON", "network_border_group": "sa-west-1" }, - { - "ipv6_prefix": "2600:1ffd:10c0::/48", - "region": "ca-central-1", - "service": "AMAZON", - "network_border_group": "ca-central-1" - }, { "ipv6_prefix": "2600:9000:f800::/37", "region": "GLOBAL", "service": "AMAZON", "network_border_group": "GLOBAL" }, + { + "ipv6_prefix": "2600:f0f0:0:d00::/56", + "region": "eu-north-1", + "service": "AMAZON", + "network_border_group": "eu-north-1" + }, { "ipv6_prefix": "2600:f0f0:10::/48", "region": "eu-west-1", @@ -58216,6 +59830,18 @@ "service": "AMAZON", "network_border_group": "us-east-2" }, + { + "ipv6_prefix": "2600:f0f1:42c0::/42", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, + { + "ipv6_prefix": "2a05:d06a:2000::/40", + "region": "eu-west-3", + "service": "AMAZON", + "network_border_group": "eu-west-3" + }, { "ipv6_prefix": "2a05:d078:c000::/40", "region": "eu-west-2", @@ -58258,6 +59884,18 @@ "service": "AMAZON", "network_border_group": "eu-north-1" }, + { + "ipv6_prefix": "2600:f0f0:8109::/48", + "region": "af-south-1", + "service": "AMAZON", + "network_border_group": "af-south-1" + }, + { + "ipv6_prefix": "2631:1:4fc1::/48", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2400:6500:0:7a00::/56", "region": "me-central-1", @@ -58300,6 +59938,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-3" }, + { + "ipv6_prefix": "2600:1f01:4900:300::/56", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ipv6_prefix": "2600:1ff9:1000::/40", "region": "ca-central-1", @@ -58360,6 +60004,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-1" }, + { + "ipv6_prefix": "2600:f0f0:810d::/48", + "region": "ap-east-1", + "service": "AMAZON", + "network_border_group": "ap-east-1" + }, { "ipv6_prefix": "2600:f0fb:f022::/48", "region": "eu-west-1", @@ -58372,6 +60022,18 @@ "service": "AMAZON", "network_border_group": "ap-southeast-4" }, + { + "ipv6_prefix": "2606:7b40:10ff::/59", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, + { + "ipv6_prefix": "2a05:d06a:800::/40", + "region": "me-west-1", + "service": "AMAZON", + "network_border_group": "me-west-1" + }, { "ipv6_prefix": "2600:1f32:ec00::/40", "region": "sa-west-1", @@ -58390,6 +60052,12 @@ "service": "AMAZON", "network_border_group": "ap-northeast-2" }, + { + "ipv6_prefix": "2600:f0f1:4480::/42", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2606:7b40:1a2f:c310::/60", "region": "us-west-2", @@ -58456,6 +60124,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-5" }, + { + "ipv6_prefix": "2606:8140:100::/40", + "region": "us-gov-west-1", + "service": "AMAZON", + "network_border_group": "us-gov-west-1" + }, { "ipv6_prefix": "2620:107:4000:a::/64", "region": "ca-central-1", @@ -58528,12 +60202,6 @@ "service": "AMAZON", "network_border_group": "eu-west-1" }, - { - "ipv6_prefix": "2a05:d07d:800::/40", - "region": "me-west-1", - "service": "AMAZON", - "network_border_group": "me-west-1" - }, { "ipv6_prefix": "2406:da32:2000::/40", "region": "ap-northeast-2", @@ -58576,6 +60244,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2620:107:4000:8300::/56", + "region": "sa-west-1", + "service": "AMAZON", + "network_border_group": "sa-west-1" + }, { "ipv6_prefix": "2a05:d074:8000::/40", "region": "eu-west-1", @@ -58684,6 +60358,18 @@ "service": "AMAZON", "network_border_group": "us-east-2" }, + { + "ipv6_prefix": "2631:1:4680::/48", + "region": "ap-south-1", + "service": "AMAZON", + "network_border_group": "ap-south-1" + }, + { + "ipv6_prefix": "2a05:d06a:5000::/40", + "region": "il-central-1", + "service": "AMAZON", + "network_border_group": "il-central-1" + }, { "ipv6_prefix": "2406:dab9:7000::/40", "region": "me-central-1", @@ -58696,6 +60382,12 @@ "service": "AMAZON", "network_border_group": "ap-east-1" }, + { + "ipv6_prefix": "2406:daea:4800::/40", + "region": "ap-southeast-7", + "service": "AMAZON", + "network_border_group": "ap-southeast-7" + }, { "ipv6_prefix": "2406:daf9:7000::/40", "region": "me-central-1", @@ -58756,12 +60448,6 @@ "service": "AMAZON", "network_border_group": "ap-northeast-1" }, - { - "ipv6_prefix": "2406:dafd:8000::/40", - "region": "ap-southeast-1", - "service": "AMAZON", - "network_border_group": "ap-southeast-1" - }, { "ipv6_prefix": "2600:1fb9:c000::/40", "region": "us-west-1", @@ -58774,6 +60460,12 @@ "service": "AMAZON", "network_border_group": "sa-east-1" }, + { + "ipv6_prefix": "2600:f0f0:8104::/48", + "region": "ap-southeast-7", + "service": "AMAZON", + "network_border_group": "ap-southeast-7" + }, { "ipv6_prefix": "2620:107:4000:a880::/58", "region": "ap-southeast-3", @@ -58984,12 +60676,6 @@ "service": "AMAZON", "network_border_group": "ap-southeast-1" }, - { - "ipv6_prefix": "2600:1ffd:8080::/48", - "region": "us-east-1", - "service": "AMAZON", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2600:f0f0:551c::/48", "region": "us-east-1", @@ -59008,6 +60694,12 @@ "service": "AMAZON", "network_border_group": "eu-west-2" }, + { + "ipv6_prefix": "2606:7b40:1b0d:4100::/56", + "region": "eu-west-1", + "service": "AMAZON", + "network_border_group": "eu-west-1" + }, { "ipv6_prefix": "2a05:d000:4000::/40", "region": "eu-central-1", @@ -59020,12 +60712,6 @@ "service": "AMAZON", "network_border_group": "cn-northwest-1" }, - { - "ipv6_prefix": "2406:dafd:4000::/40", - "region": "ap-northeast-1", - "service": "AMAZON", - "network_border_group": "ap-northeast-1" - }, { "ipv6_prefix": "2600:9000:520d::/48", "region": "me-central-1", @@ -59056,6 +60742,12 @@ "service": "AMAZON", "network_border_group": "cn-north-1" }, + { + "ipv6_prefix": "2403:b300::/48", + "region": "ap-southeast-2", + "service": "AMAZON", + "network_border_group": "ap-southeast-2" + }, { "ipv6_prefix": "2406:da29::/36", "region": "ap-southeast-3", @@ -59080,12 +60772,24 @@ "service": "AMAZON", "network_border_group": "cn-north-1" }, + { + "ipv6_prefix": "2600:1f60:ec00::/40", + "region": "sa-west-1", + "service": "AMAZON", + "network_border_group": "sa-west-1" + }, { "ipv6_prefix": "2620:107:4000:9012::/64", "region": "us-west-2", "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2631:1:4740::/48", + "region": "ap-southeast-2", + "service": "AMAZON", + "network_border_group": "ap-southeast-2" + }, { "ipv6_prefix": "2a05:d059:a000::/40", "region": "eu-south-1", @@ -59104,6 +60808,12 @@ "service": "AMAZON", "network_border_group": "ap-northeast-3" }, + { + "ipv6_prefix": "2600:1f01:491c::/47", + "region": "eu-west-2", + "service": "AMAZON", + "network_border_group": "eu-west-2" + }, { "ipv6_prefix": "2600:f0f0:c040::/48", "region": "us-east-1", @@ -59128,12 +60838,6 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, - { - "ipv6_prefix": "2a05:d07d:c000::/40", - "region": "eu-west-2", - "service": "AMAZON", - "network_border_group": "eu-west-2" - }, { "ipv6_prefix": "2600:1f36:5000::/40", "region": "us-gov-east-1", @@ -59188,6 +60892,12 @@ "service": "AMAZON", "network_border_group": "us-west-2-hnl-1" }, + { + "ipv6_prefix": "2606:8140:200::/40", + "region": "us-gov-east-1", + "service": "AMAZON", + "network_border_group": "us-gov-east-1" + }, { "ipv6_prefix": "2600:1f12::/36", "region": "us-gov-west-1", @@ -59206,6 +60916,12 @@ "service": "AMAZON", "network_border_group": "ap-south-1" }, + { + "ipv6_prefix": "2600:f0f0:6123::/48", + "region": "us-gov-west-1", + "service": "AMAZON", + "network_border_group": "us-gov-west-1" + }, { "ipv6_prefix": "2620:107:4000:4206::/64", "region": "us-west-2", @@ -59218,12 +60934,6 @@ "service": "AMAZON", "network_border_group": "eu-south-2" }, - { - "ipv6_prefix": "2a05:d07d:1000::/40", - "region": "eu-south-2", - "service": "AMAZON", - "network_border_group": "eu-south-2" - }, { "ipv6_prefix": "2406:da38:8800::/40", "region": "ap-southeast-1", @@ -59260,6 +60970,12 @@ "service": "AMAZON", "network_border_group": "ap-east-1" }, + { + "ipv6_prefix": "2406:daea:8000::/40", + "region": "ap-southeast-1", + "service": "AMAZON", + "network_border_group": "ap-southeast-1" + }, { "ipv6_prefix": "2406:daf4:c000::/40", "region": "ap-southeast-2", @@ -59320,6 +61036,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2a05:d028:8000::/36", + "region": "eu-north-1", + "service": "AMAZON", + "network_border_group": "eu-north-1" + }, { "ipv6_prefix": "2406:da32:4000::/40", "region": "ap-northeast-1", @@ -59356,6 +61078,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2a05:d018:8000::/36", + "region": "eu-north-1", + "service": "AMAZON", + "network_border_group": "eu-north-1" + }, { "ipv6_prefix": "2406:da1e::/32", "region": "ap-east-1", @@ -59506,6 +61234,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2606:7b40:1b40::/44", + "region": "GLOBAL", + "service": "AMAZON", + "network_border_group": "GLOBAL" + }, { "ipv6_prefix": "2a05:d038:800::/40", "region": "me-west-1", @@ -59554,6 +61288,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2620:107:4000:8600::/56", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ipv6_prefix": "2a05:d01b::/36", "region": "eu-central-1", @@ -59572,6 +61312,12 @@ "service": "AMAZON", "network_border_group": "us-east-2" }, + { + "ipv6_prefix": "2631:1:4f80::/48", + "region": "us-west-1", + "service": "AMAZON", + "network_border_group": "us-west-1" + }, { "ipv6_prefix": "2a05:d031:e000::/40", "region": "me-south-1", @@ -59596,12 +61342,6 @@ "service": "AMAZON", "network_border_group": "us-east-2" }, - { - "ipv6_prefix": "2600:1ffd:1040::/48", - "region": "ca-central-1", - "service": "AMAZON", - "network_border_group": "ca-central-1" - }, { "ipv6_prefix": "2600:f0f0:4105::/48", "region": "ap-southeast-1", @@ -59614,6 +61354,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2631:1:4e40::/48", + "region": "ca-west-1", + "service": "AMAZON", + "network_border_group": "ca-west-1" + }, { "ipv6_prefix": "2400:6500:0:7800::/56", "region": "ap-southeast-3", @@ -59626,6 +61372,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-2" }, + { + "ipv6_prefix": "2600:1f00:ec00::/64", + "region": "sa-west-1", + "service": "AMAZON", + "network_border_group": "sa-west-1" + }, { "ipv6_prefix": "2600:1fef:6000::/40", "region": "us-east-2", @@ -59758,12 +61510,6 @@ "service": "AMAZON", "network_border_group": "us-east-2" }, - { - "ipv6_prefix": "2600:1ffd:8010::/48", - "region": "us-east-1", - "service": "AMAZON", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2600:f0f0:552f::/48", "region": "me-south-1", @@ -59842,6 +61588,18 @@ "service": "AMAZON", "network_border_group": "eu-central-2" }, + { + "ipv6_prefix": "2606:7b40:1b0f:c300::/56", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, + { + "ipv6_prefix": "2631:0:2::/48", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2a05:d079:9000::/40", "region": "eu-central-2", @@ -59884,6 +61642,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2631:1:4c00::/48", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ipv6_prefix": "2a05:d032:6000::/40", "region": "eu-north-1", @@ -59944,6 +61708,12 @@ "service": "AMAZON", "network_border_group": "ap-northeast-2" }, + { + "ipv6_prefix": "2406:daea:2000::/40", + "region": "ap-northeast-2", + "service": "AMAZON", + "network_border_group": "ap-northeast-2" + }, { "ipv6_prefix": "2600:f0f0:1125::/48", "region": "us-west-2", @@ -60034,6 +61804,12 @@ "service": "AMAZON", "network_border_group": "us-east-2" }, + { + "ipv6_prefix": "2606:7b40:1b09:100::/56", + "region": "sa-east-1", + "service": "AMAZON", + "network_border_group": "sa-east-1" + }, { "ipv6_prefix": "2a05:d032:2000::/40", "region": "eu-west-3", @@ -60088,6 +61864,12 @@ "service": "AMAZON", "network_border_group": "GLOBAL" }, + { + "ipv6_prefix": "2600:f0f0:810f::/48", + "region": "ap-southeast-2", + "service": "AMAZON", + "network_border_group": "ap-southeast-2" + }, { "ipv6_prefix": "2600:f0fb:f000::/44", "region": "GLOBAL", @@ -60118,12 +61900,6 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, - { - "ipv6_prefix": "2600:1ffd:6000::/40", - "region": "us-east-2", - "service": "AMAZON", - "network_border_group": "us-east-2" - }, { "ipv6_prefix": "2600:f0f3:f000::/44", "region": "GLOBAL", @@ -60190,12 +61966,6 @@ "service": "AMAZON", "network_border_group": "eu-south-2" }, - { - "ipv6_prefix": "2406:dafd:b000::/40", - "region": "ap-south-2", - "service": "AMAZON", - "network_border_group": "ap-south-2" - }, { "ipv6_prefix": "2600:1f38:ec00::/40", "region": "sa-west-1", @@ -60220,6 +61990,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2631:1:4c40::/48", + "region": "eu-central-2", + "service": "AMAZON", + "network_border_group": "eu-central-2" + }, { "ipv6_prefix": "2804:800:ff00::/48", "region": "sa-east-1", @@ -60430,12 +62206,6 @@ "service": "AMAZON", "network_border_group": "me-central-1" }, - { - "ipv6_prefix": "2406:dafd:e000::/40", - "region": "ap-east-1", - "service": "AMAZON", - "network_border_group": "ap-east-1" - }, { "ipv6_prefix": "2600:1ff2:6000::/40", "region": "us-east-2", @@ -60598,6 +62368,12 @@ "service": "AMAZON", "network_border_group": "il-central-1" }, + { + "ipv6_prefix": "2406:daea:8800::/40", + "region": "ap-southeast-1", + "service": "AMAZON", + "network_border_group": "ap-southeast-1" + }, { "ipv6_prefix": "2406:daf3:c000::/40", "region": "ap-southeast-2", @@ -60646,6 +62422,12 @@ "service": "AMAZON", "network_border_group": "us-west-1" }, + { + "ipv6_prefix": "2600:1fea:1000::/40", + "region": "ca-central-1", + "service": "AMAZON", + "network_border_group": "ca-central-1" + }, { "ipv6_prefix": "2600:f0f2:7012::/48", "region": "us-east-1", @@ -60826,12 +62608,6 @@ "service": "AMAZON", "network_border_group": "me-central-1" }, - { - "ipv6_prefix": "2406:dafd:2800::/40", - "region": "ap-southeast-6", - "service": "AMAZON", - "network_border_group": "ap-southeast-6" - }, { "ipv6_prefix": "2600:1f01:4806::/47", "region": "us-east-1", @@ -60898,6 +62674,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-4" }, + { + "ipv6_prefix": "2406:daea:6000::/40", + "region": "ap-northeast-3", + "service": "AMAZON", + "network_border_group": "ap-northeast-3" + }, { "ipv6_prefix": "2600:1f2e:c000::/36", "region": "sa-west-1", @@ -60922,6 +62704,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2631:1:45c0::/48", + "region": "ap-northeast-1", + "service": "AMAZON", + "network_border_group": "ap-northeast-1" + }, { "ipv6_prefix": "2a01:578:0:7400::/56", "region": "eu-south-1", @@ -61018,6 +62806,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-7" }, + { + "ipv6_prefix": "2406:daea:f000::/40", + "region": "ap-southeast-4", + "service": "AMAZON", + "network_border_group": "ap-southeast-4" + }, { "ipv6_prefix": "2406:daf9:e000::/40", "region": "ap-east-1", @@ -61072,6 +62866,12 @@ "service": "AMAZON", "network_border_group": "ca-central-1" }, + { + "ipv6_prefix": "2a05:d06a:a000::/40", + "region": "eu-south-1", + "service": "AMAZON", + "network_border_group": "eu-south-1" + }, { "ipv6_prefix": "2400:7fc0:500::/40", "region": "GLOBAL", @@ -61114,6 +62914,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2631:0:3::/48", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ipv6_prefix": "2a05:d079:4000::/40", "region": "eu-central-1", @@ -61138,12 +62944,6 @@ "service": "AMAZON", "network_border_group": "us-east-1-atl-2" }, - { - "ipv6_prefix": "2600:1ffd:8040::/48", - "region": "us-east-1", - "service": "AMAZON", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2600:1ffd:8188::/48", "region": "ca-central-1", @@ -61186,12 +62986,6 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, - { - "ipv6_prefix": "2a05:d07d:6000::/40", - "region": "eu-north-1", - "service": "AMAZON", - "network_border_group": "eu-north-1" - }, { "ipv6_prefix": "2001:3fc3:6800::/40", "region": "eusc-de-east-1", @@ -61270,6 +63064,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2600:f0f0:8101::/48", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ipv6_prefix": "2606:f40:fffc::/48", "region": "us-east-1", @@ -61318,12 +63118,6 @@ "service": "AMAZON", "network_border_group": "us-east-2" }, - { - "ipv6_prefix": "2600:1ffd:4000::/39", - "region": "us-west-2", - "service": "AMAZON", - "network_border_group": "us-west-2" - }, { "ipv6_prefix": "2600:1fff:c000::/40", "region": "us-west-1", @@ -61432,12 +63226,6 @@ "service": "AMAZON", "network_border_group": "ap-southeast-1" }, - { - "ipv6_prefix": "2406:dafd:c800::/40", - "region": "ap-east-2", - "service": "AMAZON", - "network_border_group": "ap-east-2" - }, { "ipv6_prefix": "2600:1f01:490c::/47", "region": "eu-west-3", @@ -61528,6 +63316,18 @@ "service": "AMAZON", "network_border_group": "sa-east-1" }, + { + "ipv6_prefix": "2600:f0f0:6124::/48", + "region": "us-gov-east-1", + "service": "AMAZON", + "network_border_group": "us-gov-east-1" + }, + { + "ipv6_prefix": "2a05:d06a:4000::/40", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ipv6_prefix": "2600:1f30:5000::/40", "region": "us-gov-east-1", @@ -61648,12 +63448,24 @@ "service": "AMAZON", "network_border_group": "ap-southeast-3" }, + { + "ipv6_prefix": "2600:f0f0:8170::/48", + "region": "ap-northeast-3", + "service": "AMAZON", + "network_border_group": "ap-northeast-3" + }, { "ipv6_prefix": "2620:107:4000:4705::/64", "region": "us-east-2", "service": "AMAZON", "network_border_group": "us-east-2" }, + { + "ipv6_prefix": "2631:1:46c0::/48", + "region": "ap-south-2", + "service": "AMAZON", + "network_border_group": "ap-south-2" + }, { "ipv6_prefix": "2a05:d03a:6000::/40", "region": "eu-north-1", @@ -61738,12 +63550,24 @@ "service": "AMAZON", "network_border_group": "eu-west-3" }, + { + "ipv6_prefix": "2600:1f01:4912::/47", + "region": "ap-south-1", + "service": "AMAZON", + "network_border_group": "ap-south-1" + }, { "ipv6_prefix": "2600:1f1e::/36", "region": "sa-east-1", "service": "AMAZON", "network_border_group": "sa-east-1" }, + { + "ipv6_prefix": "2600:f0f2:701e::/48", + "region": "ca-central-1", + "service": "AMAZON", + "network_border_group": "ca-central-1" + }, { "ipv6_prefix": "2606:f40:fff9::/48", "region": "eu-central-1", @@ -61912,12 +63736,6 @@ "service": "AMAZON", "network_border_group": "us-west-1" }, - { - "ipv6_prefix": "2600:1ffd:5000::/40", - "region": "us-gov-east-1", - "service": "AMAZON", - "network_border_group": "us-gov-east-1" - }, { "ipv6_prefix": "2600:f0f0:5518::/48", "region": "us-east-1", @@ -61931,16 +63749,16 @@ "network_border_group": "ap-northeast-3" }, { - "ipv6_prefix": "2400:6500:0:7c00::/56", - "region": "ap-southeast-5", + "ipv6_prefix": "2606:7b40:1b0c:100::/56", + "region": "eu-central-1", "service": "AMAZON", - "network_border_group": "ap-southeast-5" + "network_border_group": "eu-central-1" }, { - "ipv6_prefix": "2406:dafd:2000::/40", - "region": "ap-northeast-2", + "ipv6_prefix": "2400:6500:0:7c00::/56", + "region": "ap-southeast-5", "service": "AMAZON", - "network_border_group": "ap-northeast-2" + "network_border_group": "ap-southeast-5" }, { "ipv6_prefix": "2409:8c00:2421:400::/56", @@ -62026,12 +63844,6 @@ "service": "AMAZON", "network_border_group": "il-central-1" }, - { - "ipv6_prefix": "2406:dafd:f000::/40", - "region": "ap-southeast-4", - "service": "AMAZON", - "network_border_group": "ap-southeast-4" - }, { "ipv6_prefix": "2600:1f61:1000::/40", "region": "ca-central-1", @@ -62104,6 +63916,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2606:7b40:1b08:100::/56", + "region": "af-south-1", + "service": "AMAZON", + "network_border_group": "af-south-1" + }, { "ipv6_prefix": "2620:107:4000:4201::/64", "region": "us-west-2", @@ -62206,12 +64024,6 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, - { - "ipv6_prefix": "2600:1ffd:80c0::/48", - "region": "us-east-1", - "service": "AMAZON", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2600:1ffd:80d0::/48", "region": "eu-central-1", @@ -62248,18 +64060,6 @@ "service": "AMAZON", "network_border_group": "ap-south-2" }, - { - "ipv6_prefix": "2406:dafd:1000::/40", - "region": "af-south-1", - "service": "AMAZON", - "network_border_group": "af-south-1" - }, - { - "ipv6_prefix": "2600:1ffd:8020::/48", - "region": "us-east-1", - "service": "AMAZON", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2600:f0f0:1115::/48", "region": "eu-west-3", @@ -62278,6 +64078,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-3" }, + { + "ipv6_prefix": "2631:1:4900::/48", + "region": "sa-east-1", + "service": "AMAZON", + "network_border_group": "sa-east-1" + }, { "ipv6_prefix": "2a05:d05b:4000::/40", "region": "eu-central-1", @@ -62416,6 +64222,12 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, + { + "ipv6_prefix": "2400:7fc0:110::/48", + "region": "cn-north-1", + "service": "AMAZON", + "network_border_group": "cn-north-1" + }, { "ipv6_prefix": "2400:7fc0:4100::/48", "region": "cn-north-1", @@ -62470,6 +64282,12 @@ "service": "AMAZON", "network_border_group": "eu-north-1" }, + { + "ipv6_prefix": "2406:daea:2800::/40", + "region": "ap-southeast-6", + "service": "AMAZON", + "network_border_group": "ap-southeast-6" + }, { "ipv6_prefix": "2406:daff:8000::/40", "region": "ap-southeast-1", @@ -62488,12 +64306,24 @@ "service": "AMAZON", "network_border_group": "sa-west-1" }, + { + "ipv6_prefix": "2600:1fea:4000::/39", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2600:1fef:e000::/40", "region": "sa-east-1", "service": "AMAZON", "network_border_group": "sa-east-1" }, + { + "ipv6_prefix": "2600:f0f1:40c0::/42", + "region": "ap-south-1", + "service": "AMAZON", + "network_border_group": "ap-south-1" + }, { "ipv6_prefix": "2600:f0fb:ec00::/40", "region": "us-east-1", @@ -62572,12 +64402,6 @@ "service": "AMAZON", "network_border_group": "eusc-de-east-1" }, - { - "ipv6_prefix": "2406:dafd:c000::/40", - "region": "ap-southeast-2", - "service": "AMAZON", - "network_border_group": "ap-southeast-2" - }, { "ipv6_prefix": "2600:1f01:4890::/47", "region": "us-east-1", @@ -62590,6 +64414,12 @@ "service": "AMAZON", "network_border_group": "eu-south-2" }, + { + "ipv6_prefix": "2600:f0f0:810e::/48", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2a05:d030:8000::/40", "region": "eu-west-1", @@ -62753,10 +64583,10 @@ "network_border_group": "eu-west-3" }, { - "ipv6_prefix": "2606:7b40:1b10::/48", - "region": "GLOBAL", + "ipv6_prefix": "2600:f0f1:4180::/42", + "region": "af-south-1", "service": "AMAZON", - "network_border_group": "GLOBAL" + "network_border_group": "af-south-1" }, { "ipv6_prefix": "2a05:d018::/35", @@ -62891,16 +64721,16 @@ "network_border_group": "us-east-1" }, { - "ipv6_prefix": "2606:7b40:1b0f:fd00::/56", - "region": "us-west-2", + "ipv6_prefix": "2600:f0f1:4500::/42", + "region": "ap-southeast-1", "service": "AMAZON", - "network_border_group": "us-west-2" + "network_border_group": "ap-southeast-1" }, { - "ipv6_prefix": "2a05:d07d:5000::/40", - "region": "il-central-1", + "ipv6_prefix": "2606:7b40:1b0f:fd00::/56", + "region": "us-west-2", "service": "AMAZON", - "network_border_group": "il-central-1" + "network_border_group": "us-west-2" }, { "ipv6_prefix": "2406:da30:2800::/40", @@ -62908,6 +64738,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-6" }, + { + "ipv6_prefix": "2600:1fea:ec00::/40", + "region": "sa-west-1", + "service": "AMAZON", + "network_border_group": "sa-west-1" + }, { "ipv6_prefix": "2600:f0f0:5517::/48", "region": "us-west-2", @@ -62926,12 +64762,6 @@ "service": "AMAZON", "network_border_group": "ap-southeast-5" }, - { - "ipv6_prefix": "2406:dafd:9000::/40", - "region": "ap-southeast-3", - "service": "AMAZON", - "network_border_group": "ap-southeast-3" - }, { "ipv6_prefix": "2600:f0f0:20::/48", "region": "il-central-1", @@ -62992,12 +64822,6 @@ "service": "AMAZON", "network_border_group": "us-west-1" }, - { - "ipv6_prefix": "2600:1ffd:8090::/48", - "region": "us-east-1", - "service": "AMAZON", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2600:f0f0:110b::/48", "region": "ap-southeast-2", @@ -63029,10 +64853,10 @@ "network_border_group": "us-west-2" }, { - "ipv6_prefix": "2a05:d07d:a000::/40", - "region": "eu-south-1", + "ipv6_prefix": "2631:1:4800::/48", + "region": "af-south-1", "service": "AMAZON", - "network_border_group": "eu-south-1" + "network_border_group": "af-south-1" }, { "ipv6_prefix": "2a05:d07e:8000::/40", @@ -63094,12 +64918,6 @@ "service": "AMAZON", "network_border_group": "ap-southeast-2" }, - { - "ipv6_prefix": "2406:dafd:6000::/40", - "region": "ap-northeast-3", - "service": "AMAZON", - "network_border_group": "ap-northeast-3" - }, { "ipv6_prefix": "2600:1f01:48d2::/47", "region": "ap-southeast-2", @@ -63124,12 +64942,6 @@ "service": "AMAZON", "network_border_group": "ca-central-1" }, - { - "ipv6_prefix": "2600:1ffd:ec00::/40", - "region": "sa-west-1", - "service": "AMAZON", - "network_border_group": "sa-west-1" - }, { "ipv6_prefix": "2606:f40:fff7::/48", "region": "ap-northeast-1", @@ -63274,12 +65086,24 @@ "service": "AMAZON", "network_border_group": "ap-southeast-5" }, + { + "ipv6_prefix": "2600:1fea:5000::/40", + "region": "us-gov-east-1", + "service": "AMAZON", + "network_border_group": "us-gov-east-1" + }, { "ipv6_prefix": "2600:f0f0:610b::/48", "region": "eu-west-1", "service": "AMAZON", "network_border_group": "eu-west-1" }, + { + "ipv6_prefix": "2631:1:4fc0::/48", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2a05:d050:9000::/40", "region": "eu-central-2", @@ -63334,12 +65158,24 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2600:f0f1:4300::/42", + "region": "ap-northeast-2", + "service": "AMAZON", + "network_border_group": "ap-northeast-2" + }, { "ipv6_prefix": "2620:107:300f::/48", "region": "us-west-1", "service": "AMAZON", "network_border_group": "us-west-1" }, + { + "ipv6_prefix": "2631:1:4e00::/48", + "region": "ca-central-1", + "service": "AMAZON", + "network_border_group": "ca-central-1" + }, { "ipv6_prefix": "2a05:d07e:1000::/40", "region": "eu-south-2", @@ -63550,6 +65386,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2606:7b40:1b70::/44", + "region": "GLOBAL", + "service": "AMAZON", + "network_border_group": "GLOBAL" + }, { "ipv6_prefix": "2a05:d030:800::/40", "region": "me-west-1", @@ -63616,6 +65458,12 @@ "service": "AMAZON", "network_border_group": "eu-south-2" }, + { + "ipv6_prefix": "2a05:d06a:9000::/40", + "region": "eu-central-2", + "service": "AMAZON", + "network_border_group": "eu-central-2" + }, { "ipv6_prefix": "2400:7fc0:2400::/40", "region": "cn-north-1", @@ -63694,12 +65542,6 @@ "service": "AMAZON", "network_border_group": "eu-south-2" }, - { - "ipv6_prefix": "2a05:d07d:b000::/40", - "region": "eu-central-1", - "service": "AMAZON", - "network_border_group": "eu-central-1" - }, { "ipv6_prefix": "2a05:d07f:2000::/40", "region": "eu-west-3", @@ -63742,6 +65584,24 @@ "service": "AMAZON", "network_border_group": "me-south-1" }, + { + "ipv6_prefix": "2600:f0f0:8102::/48", + "region": "ap-south-1", + "service": "AMAZON", + "network_border_group": "ap-south-1" + }, + { + "ipv6_prefix": "2600:f0f0:8160::/48", + "region": "ca-central-1", + "service": "AMAZON", + "network_border_group": "ca-central-1" + }, + { + "ipv6_prefix": "2606:7b40:10ff:40::/59", + "region": "sa-east-1", + "service": "AMAZON", + "network_border_group": "sa-east-1" + }, { "ipv6_prefix": "2606:7b40:10ff:7000::/56", "region": "us-west-2", @@ -63922,12 +65782,24 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2631:1:4fef::/48", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2a05:d07e:6000::/40", "region": "eu-north-1", "service": "AMAZON", "network_border_group": "eu-north-1" }, + { + "ipv6_prefix": "2001:3fc6:8::/45", + "region": "eusc-de-east-1", + "service": "AMAZON", + "network_border_group": "eusc-de-east-1" + }, { "ipv6_prefix": "2400:7fc0:8000::/36", "region": "cn-north-1", @@ -63940,6 +65812,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-1" }, + { + "ipv6_prefix": "2600:1fea:2000::/40", + "region": "us-gov-west-1", + "service": "AMAZON", + "network_border_group": "us-gov-west-1" + }, { "ipv6_prefix": "2600:1ff2:e000::/40", "region": "sa-east-1", @@ -63964,6 +65842,12 @@ "service": "AMAZON", "network_border_group": "ap-south-1" }, + { + "ipv6_prefix": "2600:f0f0:810a::/48", + "region": "ap-southeast-1", + "service": "AMAZON", + "network_border_group": "ap-southeast-1" + }, { "ipv6_prefix": "2600:f0fb:e900::/40", "region": "us-east-1", @@ -64055,10 +65939,10 @@ "network_border_group": "sa-west-1" }, { - "ipv6_prefix": "2600:1ffd:8060::/48", - "region": "us-east-1", + "ipv6_prefix": "2631:1:4d00::/48", + "region": "eu-south-2", "service": "AMAZON", - "network_border_group": "us-east-1" + "network_border_group": "eu-south-2" }, { "ipv6_prefix": "2a01:578:0:12::/64", @@ -64096,24 +65980,18 @@ "service": "AMAZON", "network_border_group": "ca-central-1" }, - { - "ipv6_prefix": "2600:1ffd:2000::/40", - "region": "us-gov-west-1", - "service": "AMAZON", - "network_border_group": "us-gov-west-1" - }, - { - "ipv6_prefix": "2600:1ffd:8050::/48", - "region": "us-east-1", - "service": "AMAZON", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2600:f0f0:5535::/48", "region": "ap-northeast-1", "service": "AMAZON", "network_border_group": "ap-northeast-1" }, + { + "ipv6_prefix": "2600:f0f0:8100::/48", + "region": "ap-northeast-2", + "service": "AMAZON", + "network_border_group": "ap-northeast-2" + }, { "ipv6_prefix": "2a05:d070:6000::/40", "region": "eu-north-1", @@ -64168,12 +66046,6 @@ "service": "AMAZON", "network_border_group": "cn-northwest-1" }, - { - "ipv6_prefix": "2404:c2c0:fd00::/40", - "region": "cn-northwest-1", - "service": "AMAZON", - "network_border_group": "cn-northwest-1" - }, { "ipv6_prefix": "2406:daf3:9000::/40", "region": "ap-southeast-3", @@ -64216,6 +66088,12 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, + { + "ipv6_prefix": "2a05:d06a:b000::/40", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ipv6_prefix": "2406:da2b::/36", "region": "ap-south-2", @@ -64295,16 +66173,16 @@ "network_border_group": "GLOBAL" }, { - "ipv6_prefix": "2a05:d030:6000::/40", - "region": "eu-north-1", + "ipv6_prefix": "2600:f0f0:8107::/48", + "region": "me-south-1", "service": "AMAZON", - "network_border_group": "eu-north-1" + "network_border_group": "me-south-1" }, { - "ipv6_prefix": "2a05:d07d:2000::/40", - "region": "eu-west-3", + "ipv6_prefix": "2a05:d030:6000::/40", + "region": "eu-north-1", "service": "AMAZON", - "network_border_group": "eu-west-3" + "network_border_group": "eu-north-1" }, { "ipv6_prefix": "2406:daa0:c800::/40", @@ -64336,6 +66214,12 @@ "service": "AMAZON", "network_border_group": "ap-east-2" }, + { + "ipv6_prefix": "2600:1f01:4902:100::/56", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ipv6_prefix": "2600:f0fb:8000::/40", "region": "us-west-2", @@ -64570,12 +66454,6 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, - { - "ipv6_prefix": "2600:f0f0:90:2600::/56", - "region": "us-east-1", - "service": "AMAZON", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2600:f0f0:1127::/48", "region": "eu-north-1", @@ -64588,6 +66466,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2606:7b40:1b50::/44", + "region": "GLOBAL", + "service": "AMAZON", + "network_border_group": "GLOBAL" + }, { "ipv6_prefix": "2a05:d06f:b000::/40", "region": "eu-central-1", @@ -64648,12 +66532,24 @@ "service": "AMAZON", "network_border_group": "us-east-2" }, + { + "ipv6_prefix": "2600:f0f0:8140::/48", + "region": "eu-west-2", + "service": "AMAZON", + "network_border_group": "eu-west-2" + }, { "ipv6_prefix": "2600:f0fb:e400::/40", "region": "us-west-2", "service": "AMAZON", "network_border_group": "us-west-2-pdx-1" }, + { + "ipv6_prefix": "2631:1:4fc2::/48", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2a05:d000:800::/64", "region": "me-west-1", @@ -64690,6 +66586,12 @@ "service": "AMAZON", "network_border_group": "sa-east-1" }, + { + "ipv6_prefix": "2600:1f01:4900:200::/56", + "region": "us-east-1", + "service": "AMAZON", + "network_border_group": "us-east-1" + }, { "ipv6_prefix": "2600:1fff:a400::/40", "region": "ca-west-1", @@ -64720,6 +66622,18 @@ "service": "AMAZON", "network_border_group": "ap-southeast-5" }, + { + "ipv6_prefix": "2406:daea:a000::/40", + "region": "ap-south-1", + "service": "AMAZON", + "network_border_group": "ap-south-1" + }, + { + "ipv6_prefix": "2406:daea:b000::/40", + "region": "ap-south-2", + "service": "AMAZON", + "network_border_group": "ap-south-2" + }, { "ipv6_prefix": "2406:daf9:b000::/40", "region": "ap-south-2", @@ -64792,6 +66706,12 @@ "service": "AMAZON", "network_border_group": "ca-west-1" }, + { + "ipv6_prefix": "2600:f0f0:8130::/48", + "region": "ap-northeast-1", + "service": "AMAZON", + "network_border_group": "ap-northeast-1" + }, { "ipv6_prefix": "2605:9cc0:1ff0:900::/56", "region": "us-east-1", @@ -64817,16 +66737,16 @@ "network_border_group": "eu-central-1" }, { - "ipv6_prefix": "2600:f0fb:f104::/48", - "region": "ap-northeast-1", + "ipv6_prefix": "2600:f0f1:4040::/42", + "region": "me-south-1", "service": "AMAZON", - "network_border_group": "ap-northeast-1" + "network_border_group": "me-south-1" }, { - "ipv6_prefix": "2400:7fc0:fd40::/48", - "region": "cn-north-1", + "ipv6_prefix": "2600:f0fb:f104::/48", + "region": "ap-northeast-1", "service": "AMAZON", - "network_border_group": "cn-north-1" + "network_border_group": "ap-northeast-1" }, { "ipv6_prefix": "2406:da60:9000::/40", @@ -65044,6 +66964,12 @@ "service": "AMAZON", "network_border_group": "ap-south-2" }, + { + "ipv6_prefix": "2406:daea:9000::/40", + "region": "ap-southeast-3", + "service": "AMAZON", + "network_border_group": "ap-southeast-3" + }, { "ipv6_prefix": "2600:1f60:8000::/39", "region": "us-east-1", @@ -65056,6 +66982,12 @@ "service": "AMAZON", "network_border_group": "sa-west-1" }, + { + "ipv6_prefix": "2600:f0f0:5::/48", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2600:f0f0:5513::/48", "region": "us-west-2", @@ -65081,16 +67013,16 @@ "network_border_group": "GLOBAL" }, { - "ipv6_prefix": "2a05:d070:8000::/40", - "region": "eu-west-1", + "ipv6_prefix": "2631:1:4f00::/48", + "region": "us-east-1", "service": "AMAZON", - "network_border_group": "eu-west-1" + "network_border_group": "us-east-1" }, { - "ipv6_prefix": "2a05:d07d:9000::/40", - "region": "eu-central-2", + "ipv6_prefix": "2a05:d070:8000::/40", + "region": "eu-west-1", "service": "AMAZON", - "network_border_group": "eu-central-2" + "network_border_group": "eu-west-1" }, { "ipv6_prefix": "2406:da00:7000::/40", @@ -65098,12 +67030,6 @@ "service": "AMAZON", "network_border_group": "me-central-1" }, - { - "ipv6_prefix": "2600:1ffd:1080::/48", - "region": "ca-central-1", - "service": "AMAZON", - "network_border_group": "ca-central-1" - }, { "ipv6_prefix": "2600:1ffd:833b::/48", "region": "us-east-2", @@ -65218,6 +67144,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2606:7b40:1b0f:4100::/56", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ipv6_prefix": "2a05:d000:c000::/40", "region": "eu-west-2", @@ -65320,12 +67252,6 @@ "service": "AMAZON", "network_border_group": "ap-southeast-1" }, - { - "ipv6_prefix": "2600:1ffd:e000::/40", - "region": "sa-east-1", - "service": "AMAZON", - "network_border_group": "sa-east-1" - }, { "ipv6_prefix": "2600:f0f0:40::/48", "region": "ap-south-1", @@ -65422,6 +67348,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-1" }, + { + "ipv6_prefix": "2600:f0f1:4440::/42", + "region": "ap-northeast-1", + "service": "AMAZON", + "network_border_group": "ap-northeast-1" + }, { "ipv6_prefix": "2a05:d038:8000::/40", "region": "eu-west-1", @@ -65566,12 +67498,6 @@ "service": "AMAZON", "network_border_group": "me-west-1" }, - { - "ipv6_prefix": "2400:7fc0:fdc0::/48", - "region": "cn-north-1", - "service": "AMAZON", - "network_border_group": "cn-north-1" - }, { "ipv6_prefix": "2600:1f00:8000::/40", "region": "us-east-1", @@ -65686,6 +67612,12 @@ "service": "AMAZON", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2600:f0f2:701c::/48", + "region": "eu-west-3", + "service": "AMAZON", + "network_border_group": "eu-west-3" + }, { "ipv6_prefix": "2a05:d031:4000::/40", "region": "eu-central-1", @@ -65698,6 +67630,12 @@ "service": "AMAZON", "network_border_group": "af-south-1" }, + { + "ipv6_prefix": "2600:1f01:4808::/47", + "region": "eu-south-1", + "service": "AMAZON", + "network_border_group": "eu-south-1" + }, { "ipv6_prefix": "2600:1f25::/36", "region": "us-gov-east-1", @@ -65770,6 +67708,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-7" }, + { + "ipv6_prefix": "2600:1f01:4914::/47", + "region": "eu-north-1", + "service": "AMAZON", + "network_border_group": "eu-north-1" + }, { "ipv6_prefix": "2600:9000:5205::/48", "region": "ap-south-1", @@ -65830,6 +67774,12 @@ "service": "AMAZON", "network_border_group": "us-west-2-wl1-sfo-wlz-1" }, + { + "ipv6_prefix": "2600:1fea:7400::/40", + "region": "mx-central-1", + "service": "AMAZON", + "network_border_group": "mx-central-1" + }, { "ipv6_prefix": "2600:1ff4:c000::/40", "region": "us-west-1", @@ -65986,12 +67936,24 @@ "service": "AMAZON", "network_border_group": "ap-southeast-6" }, + { + "ipv6_prefix": "2406:daea:800::/40", + "region": "ap-southeast-5", + "service": "AMAZON", + "network_border_group": "ap-southeast-5" + }, { "ipv6_prefix": "2406:daf2:e000::/40", "region": "ap-east-1", "service": "AMAZON", "network_border_group": "ap-east-1" }, + { + "ipv6_prefix": "2600:1f01:491a::/47", + "region": "us-west-2", + "service": "AMAZON", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2600:1ffe:5000::/40", "region": "us-gov-east-1", @@ -66004,6 +67966,12 @@ "service": "AMAZON", "network_border_group": "eu-central-2" }, + { + "ipv6_prefix": "2600:f0f0:8150::/48", + "region": "sa-east-1", + "service": "AMAZON", + "network_border_group": "sa-east-1" + }, { "ipv6_prefix": "2600:1f01:4908::/47", "region": "ap-northeast-1", @@ -66112,6 +68080,12 @@ "service": "AMAZON", "network_border_group": "eu-central-1" }, + { + "ipv6_prefix": "2606:7b40:10ff:c0::/59", + "region": "ap-northeast-1", + "service": "AMAZON", + "network_border_group": "ap-northeast-1" + }, { "ipv6_prefix": "2406:da70:2000::/40", "region": "ap-northeast-2", @@ -66124,6 +68098,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-6" }, + { + "ipv6_prefix": "2600:1f01:4910::/47", + "region": "me-south-1", + "service": "AMAZON", + "network_border_group": "me-south-1" + }, { "ipv6_prefix": "2600:1f29:c000::/36", "region": "us-east-1", @@ -66214,6 +68194,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-6" }, + { + "ipv6_prefix": "2406:daea:c000::/40", + "region": "ap-southeast-2", + "service": "AMAZON", + "network_border_group": "ap-southeast-2" + }, { "ipv6_prefix": "2406:dafa:e000::/40", "region": "ap-east-1", @@ -66256,6 +68242,12 @@ "service": "AMAZON", "network_border_group": "eu-south-2" }, + { + "ipv6_prefix": "2404:c2c0:110::/48", + "region": "cn-northwest-1", + "service": "AMAZON", + "network_border_group": "cn-northwest-1" + }, { "ipv6_prefix": "2600:1f32:1000::/40", "region": "ca-central-1", @@ -66322,6 +68314,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2606:7b40:1b09:200::/56", + "region": "sa-east-1", + "service": "AMAZON", + "network_border_group": "sa-east-1" + }, { "ipv6_prefix": "2a05:d000:e000::/40", "region": "me-south-1", @@ -66364,6 +68362,12 @@ "service": "AMAZON", "network_border_group": "me-central-1" }, + { + "ipv6_prefix": "2600:f0f0:8110::/48", + "region": "eu-north-1", + "service": "AMAZON", + "network_border_group": "eu-north-1" + }, { "ipv6_prefix": "2406:da32:800::/40", "region": "ap-southeast-5", @@ -66478,18 +68482,24 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, - { - "ipv6_prefix": "2600:1ffd:a400::/40", - "region": "ca-west-1", - "service": "AMAZON", - "network_border_group": "ca-west-1" - }, { "ipv6_prefix": "2600:f0f0:1120::/48", "region": "us-east-2", "service": "AMAZON", "network_border_group": "us-east-2" }, + { + "ipv6_prefix": "2600:f0f2:701f::/48", + "region": "eu-north-1", + "service": "AMAZON", + "network_border_group": "eu-north-1" + }, + { + "ipv6_prefix": "2a05:d06a:1000::/40", + "region": "eu-south-2", + "service": "AMAZON", + "network_border_group": "eu-south-2" + }, { "ipv6_prefix": "2001:3fc7:c800::/40", "region": "eusc-de-east-1", @@ -66592,6 +68602,12 @@ "service": "AMAZON", "network_border_group": "GLOBAL" }, + { + "ipv6_prefix": "2606:7b40:10ff:20::/59", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ipv6_prefix": "2631::/48", "region": "us-west-2", @@ -66652,6 +68668,12 @@ "service": "AMAZON", "network_border_group": "eu-south-2" }, + { + "ipv6_prefix": "2406:daea:7000::/40", + "region": "me-central-1", + "service": "AMAZON", + "network_border_group": "me-central-1" + }, { "ipv6_prefix": "2600:1f22::/36", "region": "us-gov-west-1", @@ -66730,6 +68752,12 @@ "service": "AMAZON", "network_border_group": "eu-north-1" }, + { + "ipv6_prefix": "2404:c2c0:ea00::/40", + "region": "cn-northwest-1", + "service": "AMAZON", + "network_border_group": "cn-northwest-1" + }, { "ipv6_prefix": "2406:da12::/36", "region": "ap-northeast-2", @@ -66748,6 +68776,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-1" }, + { + "ipv6_prefix": "2406:daea:e000::/40", + "region": "ap-east-1", + "service": "AMAZON", + "network_border_group": "ap-east-1" + }, { "ipv6_prefix": "2406:daf0:8800::/40", "region": "ap-southeast-1", @@ -66862,6 +68896,18 @@ "service": "AMAZON", "network_border_group": "eu-west-1" }, + { + "ipv6_prefix": "2606:7b40:1b0d:c100::/56", + "region": "eu-west-3", + "service": "AMAZON", + "network_border_group": "eu-west-3" + }, + { + "ipv6_prefix": "2631:1:4cc0::/48", + "region": "eu-south-1", + "service": "AMAZON", + "network_border_group": "eu-south-1" + }, { "ipv6_prefix": "2406:da22::/36", "region": "ap-northeast-2", @@ -66892,12 +68938,6 @@ "service": "AMAZON", "network_border_group": "us-east-2" }, - { - "ipv6_prefix": "2600:1ffd:c000::/40", - "region": "us-west-1", - "service": "AMAZON", - "network_border_group": "us-west-1" - }, { "ipv6_prefix": "2600:f001::/40", "region": "us-east-2", @@ -66916,12 +68956,6 @@ "service": "AMAZON", "network_border_group": "eu-north-1" }, - { - "ipv6_prefix": "2a05:d07d:8000::/40", - "region": "eu-west-1", - "service": "AMAZON", - "network_border_group": "eu-west-1" - }, { "ipv6_prefix": "2a05:d07f:4000::/40", "region": "eu-central-1", @@ -67121,16 +69155,16 @@ "network_border_group": "us-west-1" }, { - "ipv6_prefix": "2a01:578:0:7601::1/128", - "region": "me-south-1", + "ipv6_prefix": "2631:1:4f40::/48", + "region": "us-east-2", "service": "AMAZON", - "network_border_group": "me-south-1" + "network_border_group": "us-east-2" }, { - "ipv6_prefix": "2406:dafd:a000::/40", - "region": "ap-south-1", + "ipv6_prefix": "2a01:578:0:7601::1/128", + "region": "me-south-1", "service": "AMAZON", - "network_border_group": "ap-south-1" + "network_border_group": "me-south-1" }, { "ipv6_prefix": "2600:1f29:8000::/36", @@ -67180,6 +69214,12 @@ "service": "AMAZON", "network_border_group": "ap-east-1" }, + { + "ipv6_prefix": "2406:daea:4000::/40", + "region": "ap-northeast-1", + "service": "AMAZON", + "network_border_group": "ap-northeast-1" + }, { "ipv6_prefix": "2406:daf3:800::/40", "region": "ap-southeast-5", @@ -67198,6 +69238,12 @@ "service": "AMAZON", "network_border_group": "ca-central-1" }, + { + "ipv6_prefix": "2600:1fea:a400::/40", + "region": "ca-west-1", + "service": "AMAZON", + "network_border_group": "ca-west-1" + }, { "ipv6_prefix": "2600:1fef:4000::/39", "region": "us-west-2", @@ -67228,12 +69274,6 @@ "service": "AMAZON", "network_border_group": "ap-northeast-1" }, - { - "ipv6_prefix": "2406:dafd:800::/40", - "region": "ap-southeast-5", - "service": "AMAZON", - "network_border_group": "ap-southeast-5" - }, { "ipv6_prefix": "2600:1ffd:80cb::/48", "region": "eu-central-1", @@ -67270,6 +69310,12 @@ "service": "AMAZON", "network_border_group": "ap-northeast-2" }, + { + "ipv6_prefix": "2600:f0f0:8103::/48", + "region": "ap-southeast-5", + "service": "AMAZON", + "network_border_group": "ap-southeast-5" + }, { "ipv6_prefix": "2620:107:4005::/48", "region": "us-west-2", @@ -67324,6 +69370,12 @@ "service": "AMAZON", "network_border_group": "GLOBAL" }, + { + "ipv6_prefix": "2606:7b40:1b0c:200::/56", + "region": "eu-central-1", + "service": "AMAZON", + "network_border_group": "eu-central-1" + }, { "ipv6_prefix": "2a01:578:3::/48", "region": "eu-west-1", @@ -67337,16 +69389,16 @@ "network_border_group": "ap-northeast-1" }, { - "ipv6_prefix": "2600:1fb9:a400::/40", - "region": "ca-west-1", + "ipv6_prefix": "2600:1f01:4900:400::/56", + "region": "us-east-1", "service": "AMAZON", - "network_border_group": "ca-west-1" + "network_border_group": "us-east-1" }, { - "ipv6_prefix": "2600:1ffd:1020::/48", - "region": "ca-central-1", + "ipv6_prefix": "2600:1fb9:a400::/40", + "region": "ca-west-1", "service": "AMAZON", - "network_border_group": "ca-central-1" + "network_border_group": "ca-west-1" }, { "ipv6_prefix": "2600:9000:a600::/40", @@ -67384,12 +69436,6 @@ "service": "AMAZON", "network_border_group": "me-south-1" }, - { - "ipv6_prefix": "2406:dafd:7000::/40", - "region": "me-central-1", - "service": "AMAZON", - "network_border_group": "me-central-1" - }, { "ipv6_prefix": "2600:1f16:8000::/36", "region": "us-east-2", @@ -67528,6 +69574,12 @@ "service": "AMAZON", "network_border_group": "ap-southeast-1" }, + { + "ipv6_prefix": "2600:f0f1:4340::/42", + "region": "ap-northeast-3", + "service": "AMAZON", + "network_border_group": "ap-northeast-3" + }, { "ipv6_prefix": "2600:f0f2:7016::/48", "region": "ap-northeast-1", @@ -67588,6 +69640,12 @@ "service": "AMAZON", "network_border_group": "GLOBAL" }, + { + "ipv6_prefix": "2600:f0f0:8105::/48", + "region": "eu-west-1", + "service": "AMAZON", + "network_border_group": "eu-west-1" + }, { "ipv6_prefix": "2606:7b40:1000:3000::/56", "region": "us-west-2", @@ -67642,6 +69700,12 @@ "service": "AMAZON", "network_border_group": "us-gov-east-1" }, + { + "ipv6_prefix": "2600:f0f2:701d::/48", + "region": "ap-northeast-2", + "service": "AMAZON", + "network_border_group": "ap-northeast-2" + }, { "ipv6_prefix": "2a05:d076:b000::/40", "region": "eu-central-1", @@ -67708,6 +69772,18 @@ "service": "AMAZON", "network_border_group": "ap-northeast-1" }, + { + "ipv6_prefix": "2600:f0f1:80::/48", + "region": "eu-west-2", + "service": "AMAZON", + "network_border_group": "eu-west-2" + }, + { + "ipv6_prefix": "2600:f0f1:4540::/42", + "region": "ap-southeast-2", + "service": "AMAZON", + "network_border_group": "ap-southeast-2" + }, { "ipv6_prefix": "2a05:d01d::/36", "region": "eu-central-1", @@ -67780,6 +69856,12 @@ "service": "AMAZON", "network_border_group": "eu-west-2" }, + { + "ipv6_prefix": "2606:7b40:1b60::/44", + "region": "GLOBAL", + "service": "AMAZON", + "network_border_group": "GLOBAL" + }, { "ipv6_prefix": "2a05:d000:1000::/40", "region": "eu-south-2", @@ -67852,6 +69934,12 @@ "service": "AMAZON", "network_border_group": "me-west-1" }, + { + "ipv6_prefix": "2400:7fc0:ea00::/40", + "region": "cn-north-1", + "service": "AMAZON", + "network_border_group": "cn-north-1" + }, { "ipv6_prefix": "2406:da70:a000::/40", "region": "ap-south-1", @@ -67864,6 +69952,12 @@ "service": "AMAZON", "network_border_group": "ca-west-1" }, + { + "ipv6_prefix": "2600:1fea:c000::/40", + "region": "us-west-1", + "service": "AMAZON", + "network_border_group": "us-west-1" + }, { "ipv6_prefix": "2a05:d040:2000::/40", "region": "eu-west-3", @@ -67882,6 +69976,12 @@ "service": "AMAZON", "network_border_group": "eu-north-1" }, + { + "ipv6_prefix": "2600:1f01:4916::/47", + "region": "eu-west-1", + "service": "AMAZON", + "network_border_group": "eu-west-1" + }, { "ipv6_prefix": "2600:1f36:4000::/39", "region": "us-west-2", @@ -67900,6 +70000,12 @@ "service": "AMAZON", "network_border_group": "mx-central-1" }, + { + "ipv6_prefix": "2600:f0f0:8106::/48", + "region": "us-east-2", + "service": "AMAZON", + "network_border_group": "us-east-2" + }, { "ipv6_prefix": "2606:7b40:a3e:270::/60", "region": "us-west-2", @@ -67912,6 +70018,12 @@ "service": "AMAZON", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2606:7b40:1b10::/44", + "region": "GLOBAL", + "service": "AMAZON", + "network_border_group": "GLOBAL" + }, { "ipv6_prefix": "2a05:d031:5000::/40", "region": "il-central-1", @@ -67990,12 +70102,6 @@ "service": "AMAZON", "network_border_group": "ap-southeast-5" }, - { - "ipv6_prefix": "2406:dafd:4800::/40", - "region": "ap-southeast-7", - "service": "AMAZON", - "network_border_group": "ap-southeast-7" - }, { "ipv6_prefix": "2600:1ff3:a400::/40", "region": "ca-west-1", @@ -69676,6 +71782,12 @@ "service": "S3", "network_border_group": "ap-southeast-1" }, + { + "ipv6_prefix": "2600:1ff9:41a0::/46", + "region": "us-west-2", + "service": "S3", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2404:c2c0:2800::/40", "region": "cn-northwest-1", @@ -69892,6 +72004,12 @@ "service": "S3", "network_border_group": "us-gov-east-1" }, + { + "ipv6_prefix": "2600:1ff9:41c0::/46", + "region": "us-west-2", + "service": "S3", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2406:da60:8800::/40", "region": "ap-southeast-1", @@ -70708,6 +72826,12 @@ "service": "S3", "network_border_group": "ap-northeast-1" }, + { + "ipv6_prefix": "2600:f0f2:701d::/48", + "region": "ap-northeast-2", + "service": "S3", + "network_border_group": "ap-northeast-2" + }, { "ipv6_prefix": "2600:f0f2:701a::/48", "region": "ap-south-1", @@ -70726,18 +72850,42 @@ "service": "S3", "network_border_group": "ap-southeast-2" }, + { + "ipv6_prefix": "2600:f0f2:701e::/48", + "region": "ca-central-1", + "service": "S3", + "network_border_group": "ca-central-1" + }, { "ipv6_prefix": "2600:f0f2:7018::/48", "region": "eu-central-1", "service": "S3", "network_border_group": "eu-central-1" }, + { + "ipv6_prefix": "2600:f0f2:701f::/48", + "region": "eu-north-1", + "service": "S3", + "network_border_group": "eu-north-1" + }, { "ipv6_prefix": "2600:f0f2:7015::/48", "region": "eu-west-1", "service": "S3", "network_border_group": "eu-west-1" }, + { + "ipv6_prefix": "2600:f0f1:80::/48", + "region": "eu-west-2", + "service": "S3", + "network_border_group": "eu-west-2" + }, + { + "ipv6_prefix": "2600:f0f2:701c::/48", + "region": "eu-west-3", + "service": "S3", + "network_border_group": "eu-west-3" + }, { "ipv6_prefix": "2600:f0f2:7010::/48", "region": "us-east-1", @@ -71572,6 +73720,12 @@ "service": "WORKSPACES_GATEWAYS", "network_border_group": "ap-southeast-2" }, + { + "ipv6_prefix": "2406:da20:8018::/48", + "region": "ap-southeast-5", + "service": "WORKSPACES_GATEWAYS", + "network_border_group": "ap-southeast-5" + }, { "ipv6_prefix": "2600:1f21:8::/48", "region": "ca-central-1", @@ -71584,6 +73738,18 @@ "service": "WORKSPACES_GATEWAYS", "network_border_group": "eu-central-1" }, + { + "ipv6_prefix": "2a05:d02a:4::/48", + "region": "eu-south-1", + "service": "WORKSPACES_GATEWAYS", + "network_border_group": "eu-south-1" + }, + { + "ipv6_prefix": "2a05:d021:c::/48", + "region": "eu-south-2", + "service": "WORKSPACES_GATEWAYS", + "network_border_group": "eu-south-2" + }, { "ipv6_prefix": "2a05:d028:40::/48", "region": "eu-west-1", @@ -71608,6 +73774,12 @@ "service": "WORKSPACES_GATEWAYS", "network_border_group": "il-central-1" }, + { + "ipv6_prefix": "2406:da27:4::/48", + "region": "me-central-1", + "service": "WORKSPACES_GATEWAYS", + "network_border_group": "me-central-1" + }, { "ipv6_prefix": "2600:1f2e:14::/48", "region": "sa-east-1", @@ -71662,6 +73834,24 @@ "service": "EC2", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2a05:d06a:c000::/40", + "region": "eu-west-2", + "service": "EC2", + "network_border_group": "eu-west-2" + }, + { + "ipv6_prefix": "2406:daea:c800::/40", + "region": "ap-east-2", + "service": "EC2", + "network_border_group": "ap-east-2" + }, + { + "ipv6_prefix": "2600:f0f1:4280::/42", + "region": "ap-east-1", + "service": "EC2", + "network_border_group": "ap-east-1" + }, { "ipv6_prefix": "2a05:d05b:b000::/40", "region": "eu-central-1", @@ -71722,6 +73912,12 @@ "service": "EC2", "network_border_group": "ap-northeast-2" }, + { + "ipv6_prefix": "2600:f0f0:8108::/48", + "region": "eu-west-3", + "service": "EC2", + "network_border_group": "eu-west-3" + }, { "ipv6_prefix": "2606:f40:ffef::/48", "region": "ap-southeast-2", @@ -71734,12 +73930,6 @@ "service": "EC2", "network_border_group": "ap-southeast-2" }, - { - "ipv6_prefix": "2a05:d07d:4000::/40", - "region": "eu-central-1", - "service": "EC2", - "network_border_group": "eu-central-1" - }, { "ipv6_prefix": "2406:da1b::/36", "region": "ap-south-2", @@ -71806,6 +73996,12 @@ "service": "EC2", "network_border_group": "eu-north-1" }, + { + "ipv6_prefix": "2a05:d06a:8000::/40", + "region": "eu-west-1", + "service": "EC2", + "network_border_group": "eu-west-1" + }, { "ipv6_prefix": "2406:dabb:800::/40", "region": "ap-southeast-5", @@ -71818,6 +74014,12 @@ "service": "EC2", "network_border_group": "sa-east-1" }, + { + "ipv6_prefix": "2600:1fea:e000::/40", + "region": "sa-east-1", + "service": "EC2", + "network_border_group": "sa-east-1" + }, { "ipv6_prefix": "2600:1ff4:e000::/40", "region": "sa-east-1", @@ -71854,12 +74056,6 @@ "service": "EC2", "network_border_group": "eu-central-1" }, - { - "ipv6_prefix": "2400:7fc0:fd80::/48", - "region": "cn-north-1", - "service": "EC2", - "network_border_group": "cn-north-1" - }, { "ipv6_prefix": "2406:da32:c800::/40", "region": "ap-east-2", @@ -71968,6 +74164,12 @@ "service": "EC2", "network_border_group": "eu-south-2" }, + { + "ipv6_prefix": "2406:daea:1000::/40", + "region": "af-south-1", + "service": "EC2", + "network_border_group": "af-south-1" + }, { "ipv6_prefix": "2600:1f00:7400::/40", "region": "mx-central-1", @@ -72028,18 +74230,18 @@ "service": "EC2", "network_border_group": "sa-east-1" }, - { - "ipv6_prefix": "2600:1ffd:7400::/40", - "region": "mx-central-1", - "service": "EC2", - "network_border_group": "mx-central-1" - }, { "ipv6_prefix": "2600:1ffd:80a7::/48", "region": "eu-central-1", "service": "EC2", "network_border_group": "eu-central-1" }, + { + "ipv6_prefix": "2631:1:4d80::/48", + "region": "eu-west-2", + "service": "EC2", + "network_border_group": "eu-west-2" + }, { "ipv6_prefix": "2a05:d074:9000::/40", "region": "eu-central-2", @@ -72064,6 +74266,12 @@ "service": "EC2", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2a05:d06a:e000::/40", + "region": "me-south-1", + "service": "EC2", + "network_border_group": "me-south-1" + }, { "ipv6_prefix": "2406:da70:6000::/40", "region": "ap-northeast-3", @@ -72088,12 +74296,6 @@ "service": "EC2", "network_border_group": "eu-central-1" }, - { - "ipv6_prefix": "2400:7fc0:fda0::/48", - "region": "cn-north-1", - "service": "EC2", - "network_border_group": "cn-north-1" - }, { "ipv6_prefix": "2606:f40:aa00::/40", "region": "ap-southeast-2", @@ -72106,6 +74308,12 @@ "service": "EC2", "network_border_group": "eu-central-1" }, + { + "ipv6_prefix": "2a05:d06a:6000::/40", + "region": "eu-north-1", + "service": "EC2", + "network_border_group": "eu-north-1" + }, { "ipv6_prefix": "2406:da15::/36", "region": "ap-northeast-2", @@ -72448,6 +74656,12 @@ "service": "EC2", "network_border_group": "eu-west-2" }, + { + "ipv6_prefix": "2606:7b40:10ff:60::/59", + "region": "af-south-1", + "service": "EC2", + "network_border_group": "af-south-1" + }, { "ipv6_prefix": "2600:1f25:4000::/36", "region": "us-east-1", @@ -72472,6 +74686,12 @@ "service": "EC2", "network_border_group": "eu-west-3" }, + { + "ipv6_prefix": "2600:f0f0:810b::/48", + "region": "us-west-1", + "service": "EC2", + "network_border_group": "us-west-1" + }, { "ipv6_prefix": "2600:f0f2:701b::/48", "region": "ap-southeast-1", @@ -72646,6 +74866,12 @@ "service": "EC2", "network_border_group": "me-central-1" }, + { + "ipv6_prefix": "2631:1:4ff2::/48", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2406:da1a::/36", "region": "ap-south-1", @@ -72658,6 +74884,12 @@ "service": "EC2", "network_border_group": "ca-west-1" }, + { + "ipv6_prefix": "2600:1fea:8000::/39", + "region": "us-east-1", + "service": "EC2", + "network_border_group": "us-east-1" + }, { "ipv6_prefix": "2600:f0f0:4145::/48", "region": "eu-south-1", @@ -72670,6 +74902,12 @@ "service": "EC2", "network_border_group": "eu-central-1" }, + { + "ipv6_prefix": "2606:7b40:10ff:e0::/59", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2606:7b40:1b0f:c000::/56", "region": "us-west-2", @@ -72712,6 +74950,18 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2606:7b40:10ff:80::/59", + "region": "ap-southeast-4", + "service": "EC2", + "network_border_group": "ap-southeast-4" + }, + { + "ipv6_prefix": "2631:1:4ff4::/48", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2a05:d032:5000::/40", "region": "il-central-1", @@ -72754,12 +75004,6 @@ "service": "EC2", "network_border_group": "eu-central-1" }, - { - "ipv6_prefix": "2a05:d07d:e000::/40", - "region": "me-south-1", - "service": "EC2", - "network_border_group": "me-south-1" - }, { "ipv6_prefix": "2404:c2c0:2f00::/40", "region": "cn-northwest-1", @@ -72940,6 +75184,12 @@ "service": "EC2", "network_border_group": "ap-southeast-1" }, + { + "ipv6_prefix": "2600:f0f0:8120::/48", + "region": "eu-south-1", + "service": "EC2", + "network_border_group": "eu-south-1" + }, { "ipv6_prefix": "2606:f40:3e00::/40", "region": "sa-east-1", @@ -72994,12 +75244,6 @@ "service": "EC2", "network_border_group": "mx-central-1" }, - { - "ipv6_prefix": "2600:1ffd:80a0::/48", - "region": "us-east-1", - "service": "EC2", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2606:f40:fffe::/48", "region": "us-east-1", @@ -73012,6 +75256,12 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2631:1:4dc0::/48", + "region": "eu-west-3", + "service": "EC2", + "network_border_group": "eu-west-3" + }, { "ipv6_prefix": "2a05:d030:c000::/40", "region": "eu-west-2", @@ -73108,6 +75358,12 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2600:1fea:6000::/40", + "region": "us-east-2", + "service": "EC2", + "network_border_group": "us-east-2" + }, { "ipv6_prefix": "2600:1ff3:4000::/39", "region": "us-west-2", @@ -73132,6 +75388,12 @@ "service": "EC2", "network_border_group": "mx-central-1" }, + { + "ipv6_prefix": "2606:7b40:1b0f:100::/56", + "region": "us-east-1", + "service": "EC2", + "network_border_group": "us-east-1" + }, { "ipv6_prefix": "2404:c2c0:c000::/36", "region": "cn-northwest-1", @@ -73144,12 +75406,6 @@ "service": "EC2", "network_border_group": "ca-west-1" }, - { - "ipv6_prefix": "2600:1ffd:80e0::/48", - "region": "us-east-1", - "service": "EC2", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2600:f004:a000::/40", "region": "ap-southeast-2", @@ -73210,6 +75466,12 @@ "service": "EC2", "network_border_group": "us-west-1" }, + { + "ipv6_prefix": "2600:f0f0:810c::/48", + "region": "eu-central-1", + "service": "EC2", + "network_border_group": "eu-central-1" + }, { "ipv6_prefix": "2606:7b40:10ff:a2e0::/60", "region": "us-west-2", @@ -73282,6 +75544,12 @@ "service": "EC2", "network_border_group": "eu-central-1" }, + { + "ipv6_prefix": "2606:7b40:10ff:a0::/59", + "region": "eu-central-1", + "service": "EC2", + "network_border_group": "eu-central-1" + }, { "ipv6_prefix": "2a05:d073:2000::/40", "region": "eu-west-3", @@ -73384,12 +75652,6 @@ "service": "EC2", "network_border_group": "ap-southeast-1" }, - { - "ipv6_prefix": "2406:dafd:8800::/40", - "region": "ap-southeast-1", - "service": "EC2", - "network_border_group": "ap-southeast-1" - }, { "ipv6_prefix": "2600:1f22:c000::/36", "region": "us-east-1", @@ -73403,10 +75665,10 @@ "network_border_group": "sa-west-1" }, { - "ipv6_prefix": "2600:1ffd:10c0::/48", - "region": "ca-central-1", + "ipv6_prefix": "2600:f0f0:0:d00::/56", + "region": "eu-north-1", "service": "EC2", - "network_border_group": "ca-central-1" + "network_border_group": "eu-north-1" }, { "ipv6_prefix": "2600:f0f0:10::/48", @@ -73468,6 +75730,18 @@ "service": "EC2", "network_border_group": "us-east-2" }, + { + "ipv6_prefix": "2600:f0f1:42c0::/42", + "region": "us-east-1", + "service": "EC2", + "network_border_group": "us-east-1" + }, + { + "ipv6_prefix": "2a05:d06a:2000::/40", + "region": "eu-west-3", + "service": "EC2", + "network_border_group": "eu-west-3" + }, { "ipv6_prefix": "2406:da30:c800::/40", "region": "ap-east-2", @@ -73498,6 +75772,18 @@ "service": "EC2", "network_border_group": "eu-north-1" }, + { + "ipv6_prefix": "2600:f0f0:8109::/48", + "region": "af-south-1", + "service": "EC2", + "network_border_group": "af-south-1" + }, + { + "ipv6_prefix": "2631:1:4fc1::/48", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2606:7b40:1b0f:f400::/56", "region": "us-west-2", @@ -73558,6 +75844,12 @@ "service": "EC2", "network_border_group": "ap-southeast-1" }, + { + "ipv6_prefix": "2600:f0f0:810d::/48", + "region": "ap-east-1", + "service": "EC2", + "network_border_group": "ap-east-1" + }, { "ipv6_prefix": "2600:f0fb:f022::/48", "region": "eu-west-1", @@ -73570,6 +75862,18 @@ "service": "EC2", "network_border_group": "ap-southeast-4" }, + { + "ipv6_prefix": "2606:7b40:10ff::/59", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, + { + "ipv6_prefix": "2a05:d06a:800::/40", + "region": "me-west-1", + "service": "EC2", + "network_border_group": "me-west-1" + }, { "ipv6_prefix": "2600:1f32:ec00::/40", "region": "sa-west-1", @@ -73588,6 +75892,12 @@ "service": "EC2", "network_border_group": "ap-northeast-2" }, + { + "ipv6_prefix": "2600:f0f1:4480::/42", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2606:7b40:1a2f:c310::/60", "region": "us-west-2", @@ -73642,6 +75952,12 @@ "service": "EC2", "network_border_group": "ap-southeast-5" }, + { + "ipv6_prefix": "2606:8140:100::/40", + "region": "us-gov-west-1", + "service": "EC2", + "network_border_group": "us-gov-west-1" + }, { "ipv6_prefix": "2406:dab9:4800::/40", "region": "ap-southeast-7", @@ -73666,12 +75982,6 @@ "service": "EC2", "network_border_group": "us-west-2-sea-1" }, - { - "ipv6_prefix": "2a05:d07d:800::/40", - "region": "me-west-1", - "service": "EC2", - "network_border_group": "me-west-1" - }, { "ipv6_prefix": "2406:da32:2000::/40", "region": "ap-northeast-2", @@ -73798,6 +76108,18 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2631:1:4680::/48", + "region": "ap-south-1", + "service": "EC2", + "network_border_group": "ap-south-1" + }, + { + "ipv6_prefix": "2a05:d06a:5000::/40", + "region": "il-central-1", + "service": "EC2", + "network_border_group": "il-central-1" + }, { "ipv6_prefix": "2406:dab9:7000::/40", "region": "me-central-1", @@ -73810,6 +76132,12 @@ "service": "EC2", "network_border_group": "ap-east-1" }, + { + "ipv6_prefix": "2406:daea:4800::/40", + "region": "ap-southeast-7", + "service": "EC2", + "network_border_group": "ap-southeast-7" + }, { "ipv6_prefix": "2600:1f70:a400::/40", "region": "ca-west-1", @@ -73846,12 +76174,6 @@ "service": "EC2", "network_border_group": "ap-northeast-1" }, - { - "ipv6_prefix": "2406:dafd:8000::/40", - "region": "ap-southeast-1", - "service": "EC2", - "network_border_group": "ap-southeast-1" - }, { "ipv6_prefix": "2600:1fb9:c000::/40", "region": "us-west-1", @@ -73864,6 +76186,12 @@ "service": "EC2", "network_border_group": "sa-east-1" }, + { + "ipv6_prefix": "2600:f0f0:8104::/48", + "region": "ap-southeast-7", + "service": "EC2", + "network_border_group": "ap-southeast-7" + }, { "ipv6_prefix": "2a05:d076:1000::/40", "region": "eu-south-2", @@ -73996,12 +76324,6 @@ "service": "EC2", "network_border_group": "me-south-1" }, - { - "ipv6_prefix": "2600:1ffd:8080::/48", - "region": "us-east-1", - "service": "EC2", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2600:f0f0:551c::/48", "region": "us-east-1", @@ -74020,6 +76342,12 @@ "service": "EC2", "network_border_group": "eu-west-2" }, + { + "ipv6_prefix": "2606:7b40:1b0d:4100::/56", + "region": "eu-west-1", + "service": "EC2", + "network_border_group": "eu-west-1" + }, { "ipv6_prefix": "2a05:d000:4000::/40", "region": "eu-central-1", @@ -74032,12 +76360,6 @@ "service": "EC2", "network_border_group": "cn-northwest-1" }, - { - "ipv6_prefix": "2406:dafd:4000::/40", - "region": "ap-northeast-1", - "service": "EC2", - "network_border_group": "ap-northeast-1" - }, { "ipv6_prefix": "2600:9000:520d::/48", "region": "me-central-1", @@ -74074,6 +76396,18 @@ "service": "EC2", "network_border_group": "ap-southeast-7" }, + { + "ipv6_prefix": "2600:1f60:ec00::/40", + "region": "sa-west-1", + "service": "EC2", + "network_border_group": "sa-west-1" + }, + { + "ipv6_prefix": "2631:1:4740::/48", + "region": "ap-southeast-2", + "service": "EC2", + "network_border_group": "ap-southeast-2" + }, { "ipv6_prefix": "2a05:d059:a000::/40", "region": "eu-south-1", @@ -74116,12 +76450,6 @@ "service": "EC2", "network_border_group": "eu-central-1" }, - { - "ipv6_prefix": "2a05:d07d:c000::/40", - "region": "eu-west-2", - "service": "EC2", - "network_border_group": "eu-west-2" - }, { "ipv6_prefix": "2600:1f36:5000::/40", "region": "us-gov-east-1", @@ -74164,6 +76492,12 @@ "service": "EC2", "network_border_group": "us-west-2-hnl-1" }, + { + "ipv6_prefix": "2606:8140:200::/40", + "region": "us-gov-east-1", + "service": "EC2", + "network_border_group": "us-gov-east-1" + }, { "ipv6_prefix": "2600:1f12::/36", "region": "us-gov-west-1", @@ -74183,13 +76517,13 @@ "network_border_group": "ap-south-1" }, { - "ipv6_prefix": "2a05:d011::/36", - "region": "eu-south-2", + "ipv6_prefix": "2600:f0f0:6123::/48", + "region": "us-gov-west-1", "service": "EC2", - "network_border_group": "eu-south-2" + "network_border_group": "us-gov-west-1" }, { - "ipv6_prefix": "2a05:d07d:1000::/40", + "ipv6_prefix": "2a05:d011::/36", "region": "eu-south-2", "service": "EC2", "network_border_group": "eu-south-2" @@ -74224,6 +76558,12 @@ "service": "EC2", "network_border_group": "ap-east-1" }, + { + "ipv6_prefix": "2406:daea:8000::/40", + "region": "ap-southeast-1", + "service": "EC2", + "network_border_group": "ap-southeast-1" + }, { "ipv6_prefix": "2406:daf4:c000::/40", "region": "ap-southeast-2", @@ -74272,6 +76612,12 @@ "service": "EC2", "network_border_group": "eu-central-2" }, + { + "ipv6_prefix": "2a05:d028:8000::/36", + "region": "eu-north-1", + "service": "EC2", + "network_border_group": "eu-north-1" + }, { "ipv6_prefix": "2406:da32:4000::/40", "region": "ap-northeast-1", @@ -74308,6 +76654,12 @@ "service": "EC2", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2a05:d018:8000::/36", + "region": "eu-north-1", + "service": "EC2", + "network_border_group": "eu-north-1" + }, { "ipv6_prefix": "2406:da1e::/32", "region": "ap-east-1", @@ -74476,6 +76828,12 @@ "service": "EC2", "network_border_group": "us-east-2" }, + { + "ipv6_prefix": "2631:1:4f80::/48", + "region": "us-west-1", + "service": "EC2", + "network_border_group": "us-west-1" + }, { "ipv6_prefix": "2a05:d031:e000::/40", "region": "me-south-1", @@ -74500,12 +76858,6 @@ "service": "EC2", "network_border_group": "us-east-2" }, - { - "ipv6_prefix": "2600:1ffd:1040::/48", - "region": "ca-central-1", - "service": "EC2", - "network_border_group": "ca-central-1" - }, { "ipv6_prefix": "2600:f0f0:4105::/48", "region": "ap-southeast-1", @@ -74518,12 +76870,24 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2631:1:4e40::/48", + "region": "ca-west-1", + "service": "EC2", + "network_border_group": "ca-west-1" + }, { "ipv6_prefix": "2406:dab9:c000::/40", "region": "ap-southeast-2", "service": "EC2", "network_border_group": "ap-southeast-2" }, + { + "ipv6_prefix": "2600:1f00:ec00::/64", + "region": "sa-west-1", + "service": "EC2", + "network_border_group": "sa-west-1" + }, { "ipv6_prefix": "2600:1fef:6000::/40", "region": "us-east-2", @@ -74620,12 +76984,6 @@ "service": "EC2", "network_border_group": "us-east-2" }, - { - "ipv6_prefix": "2600:1ffd:8010::/48", - "region": "us-east-1", - "service": "EC2", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2600:f0f0:552f::/48", "region": "me-south-1", @@ -74692,6 +77050,12 @@ "service": "EC2", "network_border_group": "eu-central-2" }, + { + "ipv6_prefix": "2606:7b40:1b0f:c300::/56", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2406:da17::/36", "region": "me-central-1", @@ -74722,6 +77086,12 @@ "service": "EC2", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2631:1:4c00::/48", + "region": "eu-central-1", + "service": "EC2", + "network_border_group": "eu-central-1" + }, { "ipv6_prefix": "2a05:d032:6000::/40", "region": "eu-north-1", @@ -74764,6 +77134,12 @@ "service": "EC2", "network_border_group": "ap-northeast-2" }, + { + "ipv6_prefix": "2406:daea:2000::/40", + "region": "ap-northeast-2", + "service": "EC2", + "network_border_group": "ap-northeast-2" + }, { "ipv6_prefix": "2600:f0f0:1125::/48", "region": "us-west-2", @@ -74842,6 +77218,12 @@ "service": "EC2", "network_border_group": "us-east-2" }, + { + "ipv6_prefix": "2606:7b40:1b09:100::/56", + "region": "sa-east-1", + "service": "EC2", + "network_border_group": "sa-east-1" + }, { "ipv6_prefix": "2a05:d032:2000::/40", "region": "eu-west-3", @@ -74866,6 +77248,12 @@ "service": "EC2", "network_border_group": "mx-central-1" }, + { + "ipv6_prefix": "2600:f0f0:810f::/48", + "region": "ap-southeast-2", + "service": "EC2", + "network_border_group": "ap-southeast-2" + }, { "ipv6_prefix": "2a05:d07f:8000::/40", "region": "eu-west-1", @@ -74884,12 +77272,6 @@ "service": "EC2", "network_border_group": "us-west-2" }, - { - "ipv6_prefix": "2600:1ffd:6000::/40", - "region": "us-east-2", - "service": "EC2", - "network_border_group": "us-east-2" - }, { "ipv6_prefix": "2600:f0fb:f028::/48", "region": "ap-northeast-2", @@ -74950,12 +77332,6 @@ "service": "EC2", "network_border_group": "eu-south-2" }, - { - "ipv6_prefix": "2406:dafd:b000::/40", - "region": "ap-south-2", - "service": "EC2", - "network_border_group": "ap-south-2" - }, { "ipv6_prefix": "2600:1f38:ec00::/40", "region": "sa-west-1", @@ -74980,6 +77356,12 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2631:1:4c40::/48", + "region": "eu-central-2", + "service": "EC2", + "network_border_group": "eu-central-2" + }, { "ipv6_prefix": "2804:800:ff00::/48", "region": "sa-east-1", @@ -75178,12 +77560,6 @@ "service": "EC2", "network_border_group": "me-central-1" }, - { - "ipv6_prefix": "2406:dafd:e000::/40", - "region": "ap-east-1", - "service": "EC2", - "network_border_group": "ap-east-1" - }, { "ipv6_prefix": "2600:1ff2:6000::/40", "region": "us-east-2", @@ -75298,6 +77674,12 @@ "service": "EC2", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2406:daea:8800::/40", + "region": "ap-southeast-1", + "service": "EC2", + "network_border_group": "ap-southeast-1" + }, { "ipv6_prefix": "2406:daf3:c000::/40", "region": "ap-southeast-2", @@ -75340,6 +77722,12 @@ "service": "EC2", "network_border_group": "us-west-1" }, + { + "ipv6_prefix": "2600:1fea:1000::/40", + "region": "ca-central-1", + "service": "EC2", + "network_border_group": "ca-central-1" + }, { "ipv6_prefix": "2600:f0f2:7012::/48", "region": "us-east-1", @@ -75502,12 +77890,6 @@ "service": "EC2", "network_border_group": "me-central-1" }, - { - "ipv6_prefix": "2406:dafd:2800::/40", - "region": "ap-southeast-6", - "service": "EC2", - "network_border_group": "ap-southeast-6" - }, { "ipv6_prefix": "2600:1ff4:a400::/40", "region": "ca-west-1", @@ -75562,6 +77944,12 @@ "service": "EC2", "network_border_group": "ap-southeast-4" }, + { + "ipv6_prefix": "2406:daea:6000::/40", + "region": "ap-northeast-3", + "service": "EC2", + "network_border_group": "ap-northeast-3" + }, { "ipv6_prefix": "2600:1f2e:c000::/36", "region": "sa-west-1", @@ -75580,6 +77968,12 @@ "service": "EC2", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2631:1:45c0::/48", + "region": "ap-northeast-1", + "service": "EC2", + "network_border_group": "ap-northeast-1" + }, { "ipv6_prefix": "2a05:d025::/36", "region": "il-central-1", @@ -75634,6 +78028,12 @@ "service": "EC2", "network_border_group": "eu-west-3" }, + { + "ipv6_prefix": "2406:daea:f000::/40", + "region": "ap-southeast-4", + "service": "EC2", + "network_border_group": "ap-southeast-4" + }, { "ipv6_prefix": "2600:1f60:e000::/40", "region": "sa-east-1", @@ -75682,6 +78082,12 @@ "service": "EC2", "network_border_group": "ca-central-1" }, + { + "ipv6_prefix": "2a05:d06a:a000::/40", + "region": "eu-south-1", + "service": "EC2", + "network_border_group": "eu-south-1" + }, { "ipv6_prefix": "2400:7fc0:a000::/36", "region": "cn-north-1", @@ -75730,12 +78136,6 @@ "service": "EC2", "network_border_group": "us-east-1-atl-2" }, - { - "ipv6_prefix": "2600:1ffd:8040::/48", - "region": "us-east-1", - "service": "EC2", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2600:1ffd:8188::/48", "region": "ca-central-1", @@ -75766,12 +78166,6 @@ "service": "EC2", "network_border_group": "us-west-2" }, - { - "ipv6_prefix": "2a05:d07d:6000::/40", - "region": "eu-north-1", - "service": "EC2", - "network_border_group": "eu-north-1" - }, { "ipv6_prefix": "2001:3fc3:6800::/40", "region": "eusc-de-east-1", @@ -75838,6 +78232,12 @@ "service": "EC2", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2600:f0f0:8101::/48", + "region": "us-east-1", + "service": "EC2", + "network_border_group": "us-east-1" + }, { "ipv6_prefix": "2606:f40:fffc::/48", "region": "us-east-1", @@ -75874,12 +78274,6 @@ "service": "EC2", "network_border_group": "ap-southeast-2" }, - { - "ipv6_prefix": "2600:1ffd:4000::/39", - "region": "us-west-2", - "service": "EC2", - "network_border_group": "us-west-2" - }, { "ipv6_prefix": "2600:1fff:c000::/40", "region": "us-west-1", @@ -75970,12 +78364,6 @@ "service": "EC2", "network_border_group": "ap-northeast-3" }, - { - "ipv6_prefix": "2406:dafd:c800::/40", - "region": "ap-east-2", - "service": "EC2", - "network_border_group": "ap-east-2" - }, { "ipv6_prefix": "2600:1f24:4000::/36", "region": "us-east-1", @@ -76042,6 +78430,18 @@ "service": "EC2", "network_border_group": "sa-east-1" }, + { + "ipv6_prefix": "2600:f0f0:6124::/48", + "region": "us-gov-east-1", + "service": "EC2", + "network_border_group": "us-gov-east-1" + }, + { + "ipv6_prefix": "2a05:d06a:4000::/40", + "region": "eu-central-1", + "service": "EC2", + "network_border_group": "eu-central-1" + }, { "ipv6_prefix": "2600:1f30:5000::/40", "region": "us-gov-east-1", @@ -76126,6 +78526,18 @@ "service": "EC2", "network_border_group": "ap-southeast-3" }, + { + "ipv6_prefix": "2600:f0f0:8170::/48", + "region": "ap-northeast-3", + "service": "EC2", + "network_border_group": "ap-northeast-3" + }, + { + "ipv6_prefix": "2631:1:46c0::/48", + "region": "ap-south-2", + "service": "EC2", + "network_border_group": "ap-south-2" + }, { "ipv6_prefix": "2a05:d03a:6000::/40", "region": "eu-north-1", @@ -76204,6 +78616,12 @@ "service": "EC2", "network_border_group": "sa-east-1" }, + { + "ipv6_prefix": "2600:f0f2:701e::/48", + "region": "ca-central-1", + "service": "EC2", + "network_border_group": "ca-central-1" + }, { "ipv6_prefix": "2606:f40:fff9::/48", "region": "eu-central-1", @@ -76354,12 +78772,6 @@ "service": "EC2", "network_border_group": "us-west-1" }, - { - "ipv6_prefix": "2600:1ffd:5000::/40", - "region": "us-gov-east-1", - "service": "EC2", - "network_border_group": "us-gov-east-1" - }, { "ipv6_prefix": "2600:f0f0:5518::/48", "region": "us-east-1", @@ -76373,10 +78785,10 @@ "network_border_group": "ap-northeast-3" }, { - "ipv6_prefix": "2406:dafd:2000::/40", - "region": "ap-northeast-2", + "ipv6_prefix": "2606:7b40:1b0c:100::/56", + "region": "eu-central-1", "service": "EC2", - "network_border_group": "ap-northeast-2" + "network_border_group": "eu-central-1" }, { "ipv6_prefix": "2600:1fff:e000::/40", @@ -76432,12 +78844,6 @@ "service": "EC2", "network_border_group": "ap-southeast-3" }, - { - "ipv6_prefix": "2406:dafd:f000::/40", - "region": "ap-southeast-4", - "service": "EC2", - "network_border_group": "ap-southeast-4" - }, { "ipv6_prefix": "2600:1f61:1000::/40", "region": "ca-central-1", @@ -76498,6 +78904,12 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2606:7b40:1b08:100::/56", + "region": "af-south-1", + "service": "EC2", + "network_border_group": "af-south-1" + }, { "ipv6_prefix": "2a05:d06f:a000::/40", "region": "eu-south-1", @@ -76570,12 +78982,6 @@ "service": "EC2", "network_border_group": "us-west-2" }, - { - "ipv6_prefix": "2600:1ffd:80c0::/48", - "region": "us-east-1", - "service": "EC2", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2600:1ffd:80d0::/48", "region": "eu-central-1", @@ -76612,18 +79018,6 @@ "service": "EC2", "network_border_group": "ap-south-2" }, - { - "ipv6_prefix": "2406:dafd:1000::/40", - "region": "af-south-1", - "service": "EC2", - "network_border_group": "af-south-1" - }, - { - "ipv6_prefix": "2600:1ffd:8020::/48", - "region": "us-east-1", - "service": "EC2", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2600:f0f0:1115::/48", "region": "eu-west-3", @@ -76636,6 +79030,12 @@ "service": "EC2", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2631:1:4900::/48", + "region": "sa-east-1", + "service": "EC2", + "network_border_group": "sa-east-1" + }, { "ipv6_prefix": "2a05:d05b:4000::/40", "region": "eu-central-1", @@ -76720,6 +79120,12 @@ "service": "EC2", "network_border_group": "eu-central-1" }, + { + "ipv6_prefix": "2400:7fc0:110::/48", + "region": "cn-north-1", + "service": "EC2", + "network_border_group": "cn-north-1" + }, { "ipv6_prefix": "2400:7fc0:4100::/48", "region": "cn-north-1", @@ -76768,6 +79174,12 @@ "service": "EC2", "network_border_group": "eu-north-1" }, + { + "ipv6_prefix": "2406:daea:2800::/40", + "region": "ap-southeast-6", + "service": "EC2", + "network_border_group": "ap-southeast-6" + }, { "ipv6_prefix": "2406:daff:8000::/40", "region": "ap-southeast-1", @@ -76780,12 +79192,24 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2600:1fea:4000::/39", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2600:1fef:e000::/40", "region": "sa-east-1", "service": "EC2", "network_border_group": "sa-east-1" }, + { + "ipv6_prefix": "2600:f0f1:40c0::/42", + "region": "ap-south-1", + "service": "EC2", + "network_border_group": "ap-south-1" + }, { "ipv6_prefix": "2600:f0fb:ec00::/40", "region": "us-east-1", @@ -76846,18 +79270,18 @@ "service": "EC2", "network_border_group": "eusc-de-east-1" }, - { - "ipv6_prefix": "2406:dafd:c000::/40", - "region": "ap-southeast-2", - "service": "EC2", - "network_border_group": "ap-southeast-2" - }, { "ipv6_prefix": "2600:f003:a200::/40", "region": "eu-south-2", "service": "EC2", "network_border_group": "eu-south-2" }, + { + "ipv6_prefix": "2600:f0f0:810e::/48", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2a05:d030:8000::/40", "region": "eu-west-1", @@ -76972,6 +79396,12 @@ "service": "EC2", "network_border_group": "eu-west-3" }, + { + "ipv6_prefix": "2600:f0f1:4180::/42", + "region": "af-south-1", + "service": "EC2", + "network_border_group": "af-south-1" + }, { "ipv6_prefix": "2a05:d018::/35", "region": "eu-west-1", @@ -77081,16 +79511,16 @@ "network_border_group": "us-east-1" }, { - "ipv6_prefix": "2606:7b40:1b0f:fd00::/56", - "region": "us-west-2", + "ipv6_prefix": "2600:f0f1:4500::/42", + "region": "ap-southeast-1", "service": "EC2", - "network_border_group": "us-west-2" + "network_border_group": "ap-southeast-1" }, { - "ipv6_prefix": "2a05:d07d:5000::/40", - "region": "il-central-1", + "ipv6_prefix": "2606:7b40:1b0f:fd00::/56", + "region": "us-west-2", "service": "EC2", - "network_border_group": "il-central-1" + "network_border_group": "us-west-2" }, { "ipv6_prefix": "2406:da30:2800::/40", @@ -77098,6 +79528,12 @@ "service": "EC2", "network_border_group": "ap-southeast-6" }, + { + "ipv6_prefix": "2600:1fea:ec00::/40", + "region": "sa-west-1", + "service": "EC2", + "network_border_group": "sa-west-1" + }, { "ipv6_prefix": "2600:f0f0:5517::/48", "region": "us-west-2", @@ -77116,12 +79552,6 @@ "service": "EC2", "network_border_group": "ap-southeast-5" }, - { - "ipv6_prefix": "2406:dafd:9000::/40", - "region": "ap-southeast-3", - "service": "EC2", - "network_border_group": "ap-southeast-3" - }, { "ipv6_prefix": "2600:f0fb:ed00::/40", "region": "us-west-2", @@ -77152,12 +79582,6 @@ "service": "EC2", "network_border_group": "us-west-1" }, - { - "ipv6_prefix": "2600:1ffd:8090::/48", - "region": "us-east-1", - "service": "EC2", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2600:f0f0:110b::/48", "region": "ap-southeast-2", @@ -77189,10 +79613,10 @@ "network_border_group": "us-west-2" }, { - "ipv6_prefix": "2a05:d07d:a000::/40", - "region": "eu-south-1", + "ipv6_prefix": "2631:1:4800::/48", + "region": "af-south-1", "service": "EC2", - "network_border_group": "eu-south-1" + "network_border_group": "af-south-1" }, { "ipv6_prefix": "2406:da2e::/36", @@ -77242,12 +79666,6 @@ "service": "EC2", "network_border_group": "ap-southeast-2" }, - { - "ipv6_prefix": "2406:dafd:6000::/40", - "region": "ap-northeast-3", - "service": "EC2", - "network_border_group": "ap-northeast-3" - }, { "ipv6_prefix": "2600:1f36:7400::/40", "region": "mx-central-1", @@ -77266,12 +79684,6 @@ "service": "EC2", "network_border_group": "ca-central-1" }, - { - "ipv6_prefix": "2600:1ffd:ec00::/40", - "region": "sa-west-1", - "service": "EC2", - "network_border_group": "sa-west-1" - }, { "ipv6_prefix": "2606:f40:fff7::/48", "region": "ap-northeast-1", @@ -77350,12 +79762,24 @@ "service": "EC2", "network_border_group": "eu-south-2" }, + { + "ipv6_prefix": "2600:1fea:5000::/40", + "region": "us-gov-east-1", + "service": "EC2", + "network_border_group": "us-gov-east-1" + }, { "ipv6_prefix": "2600:f0f0:610b::/48", "region": "eu-west-1", "service": "EC2", "network_border_group": "eu-west-1" }, + { + "ipv6_prefix": "2631:1:4fc0::/48", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2a05:d076:c000::/40", "region": "eu-west-2", @@ -77404,12 +79828,24 @@ "service": "EC2", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2600:f0f1:4300::/42", + "region": "ap-northeast-2", + "service": "EC2", + "network_border_group": "ap-northeast-2" + }, { "ipv6_prefix": "2620:107:300f::/48", "region": "us-west-1", "service": "EC2", "network_border_group": "us-west-1" }, + { + "ipv6_prefix": "2631:1:4e00::/48", + "region": "ca-central-1", + "service": "EC2", + "network_border_group": "ca-central-1" + }, { "ipv6_prefix": "2001:3fc0:800::/40", "region": "eusc-de-east-1", @@ -77614,6 +80050,12 @@ "service": "EC2", "network_border_group": "eu-south-2" }, + { + "ipv6_prefix": "2a05:d06a:9000::/40", + "region": "eu-central-2", + "service": "EC2", + "network_border_group": "eu-central-2" + }, { "ipv6_prefix": "2406:da30:c000::/40", "region": "ap-southeast-2", @@ -77674,12 +80116,6 @@ "service": "EC2", "network_border_group": "eu-north-1" }, - { - "ipv6_prefix": "2a05:d07d:b000::/40", - "region": "eu-central-1", - "service": "EC2", - "network_border_group": "eu-central-1" - }, { "ipv6_prefix": "2a05:d07f:2000::/40", "region": "eu-west-3", @@ -77716,6 +80152,24 @@ "service": "EC2", "network_border_group": "me-south-1" }, + { + "ipv6_prefix": "2600:f0f0:8102::/48", + "region": "ap-south-1", + "service": "EC2", + "network_border_group": "ap-south-1" + }, + { + "ipv6_prefix": "2600:f0f0:8160::/48", + "region": "ca-central-1", + "service": "EC2", + "network_border_group": "ca-central-1" + }, + { + "ipv6_prefix": "2606:7b40:10ff:40::/59", + "region": "sa-east-1", + "service": "EC2", + "network_border_group": "sa-east-1" + }, { "ipv6_prefix": "2606:7b40:10ff:7000::/56", "region": "us-west-2", @@ -77860,6 +80314,18 @@ "service": "EC2", "network_border_group": "eu-south-1" }, + { + "ipv6_prefix": "2631:1:4fef::/48", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, + { + "ipv6_prefix": "2001:3fc6:8::/45", + "region": "eusc-de-east-1", + "service": "EC2", + "network_border_group": "eusc-de-east-1" + }, { "ipv6_prefix": "2400:7fc0:8000::/36", "region": "cn-north-1", @@ -77872,6 +80338,12 @@ "service": "EC2", "network_border_group": "ap-southeast-1" }, + { + "ipv6_prefix": "2600:1fea:2000::/40", + "region": "us-gov-west-1", + "service": "EC2", + "network_border_group": "us-gov-west-1" + }, { "ipv6_prefix": "2600:1ff2:e000::/40", "region": "sa-east-1", @@ -77896,6 +80368,12 @@ "service": "EC2", "network_border_group": "ap-south-1" }, + { + "ipv6_prefix": "2600:f0f0:810a::/48", + "region": "ap-southeast-1", + "service": "EC2", + "network_border_group": "ap-southeast-1" + }, { "ipv6_prefix": "2600:f0fb:e900::/40", "region": "us-east-1", @@ -77963,10 +80441,10 @@ "network_border_group": "sa-west-1" }, { - "ipv6_prefix": "2600:1ffd:8060::/48", - "region": "us-east-1", + "ipv6_prefix": "2631:1:4d00::/48", + "region": "eu-south-2", "service": "EC2", - "network_border_group": "us-east-1" + "network_border_group": "eu-south-2" }, { "ipv6_prefix": "2a05:d040:b000::/40", @@ -77992,24 +80470,18 @@ "service": "EC2", "network_border_group": "us-east-1-wl1-nyc-wlz-1" }, - { - "ipv6_prefix": "2600:1ffd:2000::/40", - "region": "us-gov-west-1", - "service": "EC2", - "network_border_group": "us-gov-west-1" - }, - { - "ipv6_prefix": "2600:1ffd:8050::/48", - "region": "us-east-1", - "service": "EC2", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2600:f0f0:5535::/48", "region": "ap-northeast-1", "service": "EC2", "network_border_group": "ap-northeast-1" }, + { + "ipv6_prefix": "2600:f0f0:8100::/48", + "region": "ap-northeast-2", + "service": "EC2", + "network_border_group": "ap-northeast-2" + }, { "ipv6_prefix": "2a05:d070:6000::/40", "region": "eu-north-1", @@ -78052,12 +80524,6 @@ "service": "EC2", "network_border_group": "cn-north-1" }, - { - "ipv6_prefix": "2404:c2c0:fd00::/40", - "region": "cn-northwest-1", - "service": "EC2", - "network_border_group": "cn-northwest-1" - }, { "ipv6_prefix": "2406:daf3:9000::/40", "region": "ap-southeast-3", @@ -78100,6 +80566,12 @@ "service": "EC2", "network_border_group": "eu-central-1" }, + { + "ipv6_prefix": "2a05:d06a:b000::/40", + "region": "eu-central-1", + "service": "EC2", + "network_border_group": "eu-central-1" + }, { "ipv6_prefix": "2406:da2b::/36", "region": "ap-south-2", @@ -78161,16 +80633,16 @@ "network_border_group": "ap-southeast-4" }, { - "ipv6_prefix": "2a05:d030:6000::/40", - "region": "eu-north-1", + "ipv6_prefix": "2600:f0f0:8107::/48", + "region": "me-south-1", "service": "EC2", - "network_border_group": "eu-north-1" + "network_border_group": "me-south-1" }, { - "ipv6_prefix": "2a05:d07d:2000::/40", - "region": "eu-west-3", + "ipv6_prefix": "2a05:d030:6000::/40", + "region": "eu-north-1", "service": "EC2", - "network_border_group": "eu-west-3" + "network_border_group": "eu-north-1" }, { "ipv6_prefix": "2406:daf2:2800::/40", @@ -78388,12 +80860,6 @@ "service": "EC2", "network_border_group": "us-west-2" }, - { - "ipv6_prefix": "2600:f0f0:90:2600::/56", - "region": "us-east-1", - "service": "EC2", - "network_border_group": "us-east-1" - }, { "ipv6_prefix": "2600:f0f0:1127::/48", "region": "eu-north-1", @@ -78454,12 +80920,24 @@ "service": "EC2", "network_border_group": "us-east-2" }, + { + "ipv6_prefix": "2600:f0f0:8140::/48", + "region": "eu-west-2", + "service": "EC2", + "network_border_group": "eu-west-2" + }, { "ipv6_prefix": "2600:f0fb:e400::/40", "region": "us-west-2", "service": "EC2", "network_border_group": "us-west-2-pdx-1" }, + { + "ipv6_prefix": "2631:1:4fc2::/48", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2a05:d000:800::/64", "region": "me-west-1", @@ -78508,6 +80986,18 @@ "service": "EC2", "network_border_group": "ap-southeast-5" }, + { + "ipv6_prefix": "2406:daea:a000::/40", + "region": "ap-south-1", + "service": "EC2", + "network_border_group": "ap-south-1" + }, + { + "ipv6_prefix": "2406:daea:b000::/40", + "region": "ap-south-2", + "service": "EC2", + "network_border_group": "ap-south-2" + }, { "ipv6_prefix": "2606:7b40:10ff:8000::/56", "region": "us-west-2", @@ -78562,6 +81052,12 @@ "service": "EC2", "network_border_group": "ca-west-1" }, + { + "ipv6_prefix": "2600:f0f0:8130::/48", + "region": "ap-northeast-1", + "service": "EC2", + "network_border_group": "ap-northeast-1" + }, { "ipv6_prefix": "2605:9cc0:1ff0:900::/56", "region": "us-east-1", @@ -78587,16 +81083,16 @@ "network_border_group": "eu-central-1" }, { - "ipv6_prefix": "2600:f0fb:f104::/48", - "region": "ap-northeast-1", + "ipv6_prefix": "2600:f0f1:4040::/42", + "region": "me-south-1", "service": "EC2", - "network_border_group": "ap-northeast-1" + "network_border_group": "me-south-1" }, { - "ipv6_prefix": "2400:7fc0:fd40::/48", - "region": "cn-north-1", + "ipv6_prefix": "2600:f0fb:f104::/48", + "region": "ap-northeast-1", "service": "EC2", - "network_border_group": "cn-north-1" + "network_border_group": "ap-northeast-1" }, { "ipv6_prefix": "2406:da60:9000::/40", @@ -78748,6 +81244,12 @@ "service": "EC2", "network_border_group": "ap-south-2" }, + { + "ipv6_prefix": "2406:daea:9000::/40", + "region": "ap-southeast-3", + "service": "EC2", + "network_border_group": "ap-southeast-3" + }, { "ipv6_prefix": "2600:1f60:8000::/39", "region": "us-east-1", @@ -78760,6 +81262,12 @@ "service": "EC2", "network_border_group": "sa-west-1" }, + { + "ipv6_prefix": "2600:f0f0:5::/48", + "region": "us-west-2", + "service": "EC2", + "network_border_group": "us-west-2" + }, { "ipv6_prefix": "2600:f0f0:5513::/48", "region": "us-west-2", @@ -78785,16 +81293,16 @@ "network_border_group": "GLOBAL" }, { - "ipv6_prefix": "2a05:d070:8000::/40", - "region": "eu-west-1", + "ipv6_prefix": "2631:1:4f00::/48", + "region": "us-east-1", "service": "EC2", - "network_border_group": "eu-west-1" + "network_border_group": "us-east-1" }, { - "ipv6_prefix": "2a05:d07d:9000::/40", - "region": "eu-central-2", + "ipv6_prefix": "2a05:d070:8000::/40", + "region": "eu-west-1", "service": "EC2", - "network_border_group": "eu-central-2" + "network_border_group": "eu-west-1" }, { "ipv6_prefix": "2406:da00:7000::/40", @@ -78802,12 +81310,6 @@ "service": "EC2", "network_border_group": "me-central-1" }, - { - "ipv6_prefix": "2600:1ffd:1080::/48", - "region": "ca-central-1", - "service": "EC2", - "network_border_group": "ca-central-1" - }, { "ipv6_prefix": "2600:1ffd:833b::/48", "region": "us-east-2", @@ -78916,6 +81418,12 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2606:7b40:1b0f:4100::/56", + "region": "us-east-2", + "service": "EC2", + "network_border_group": "us-east-2" + }, { "ipv6_prefix": "2a05:d000:c000::/40", "region": "eu-west-2", @@ -78988,12 +81496,6 @@ "service": "EC2", "network_border_group": "ap-southeast-5" }, - { - "ipv6_prefix": "2600:1ffd:e000::/40", - "region": "sa-east-1", - "service": "EC2", - "network_border_group": "sa-east-1" - }, { "ipv6_prefix": "2600:f0f0:40::/48", "region": "ap-south-1", @@ -79066,6 +81568,12 @@ "service": "EC2", "network_border_group": "ap-southeast-1" }, + { + "ipv6_prefix": "2600:f0f1:4440::/42", + "region": "ap-northeast-1", + "service": "EC2", + "network_border_group": "ap-northeast-1" + }, { "ipv6_prefix": "2a05:d038:8000::/40", "region": "eu-west-1", @@ -79162,12 +81670,6 @@ "service": "EC2", "network_border_group": "me-west-1" }, - { - "ipv6_prefix": "2400:7fc0:fdc0::/48", - "region": "cn-north-1", - "service": "EC2", - "network_border_group": "cn-north-1" - }, { "ipv6_prefix": "2600:1f00:8000::/40", "region": "us-east-1", @@ -79258,6 +81760,12 @@ "service": "EC2", "network_border_group": "us-east-1" }, + { + "ipv6_prefix": "2600:f0f2:701c::/48", + "region": "eu-west-3", + "service": "EC2", + "network_border_group": "eu-west-3" + }, { "ipv6_prefix": "2a05:d031:4000::/40", "region": "eu-central-1", @@ -79372,6 +81880,12 @@ "service": "EC2", "network_border_group": "us-west-2-wl1-sfo-wlz-1" }, + { + "ipv6_prefix": "2600:1fea:7400::/40", + "region": "mx-central-1", + "service": "EC2", + "network_border_group": "mx-central-1" + }, { "ipv6_prefix": "2600:1ff4:c000::/40", "region": "us-west-1", @@ -79498,6 +82012,12 @@ "service": "EC2", "network_border_group": "ap-southeast-1-sggov-sin-2" }, + { + "ipv6_prefix": "2406:daea:800::/40", + "region": "ap-southeast-5", + "service": "EC2", + "network_border_group": "ap-southeast-5" + }, { "ipv6_prefix": "2406:daf2:e000::/40", "region": "ap-east-1", @@ -79510,6 +82030,12 @@ "service": "EC2", "network_border_group": "eu-central-2" }, + { + "ipv6_prefix": "2600:f0f0:8150::/48", + "region": "sa-east-1", + "service": "EC2", + "network_border_group": "sa-east-1" + }, { "ipv6_prefix": "2600:1f70:e000::/40", "region": "sa-east-1", @@ -79588,6 +82114,12 @@ "service": "EC2", "network_border_group": "eu-central-1" }, + { + "ipv6_prefix": "2606:7b40:10ff:c0::/59", + "region": "ap-northeast-1", + "service": "EC2", + "network_border_group": "ap-northeast-1" + }, { "ipv6_prefix": "2406:da70:2000::/40", "region": "ap-northeast-2", @@ -79678,6 +82210,12 @@ "service": "EC2", "network_border_group": "ap-southeast-6" }, + { + "ipv6_prefix": "2406:daea:c000::/40", + "region": "ap-southeast-2", + "service": "EC2", + "network_border_group": "ap-southeast-2" + }, { "ipv6_prefix": "2600:1f32:6000::/40", "region": "us-east-2", @@ -79714,6 +82252,12 @@ "service": "EC2", "network_border_group": "eu-south-2" }, + { + "ipv6_prefix": "2404:c2c0:110::/48", + "region": "cn-northwest-1", + "service": "EC2", + "network_border_group": "cn-northwest-1" + }, { "ipv6_prefix": "2600:1f32:1000::/40", "region": "ca-central-1", @@ -79780,6 +82324,12 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2606:7b40:1b09:200::/56", + "region": "sa-east-1", + "service": "EC2", + "network_border_group": "sa-east-1" + }, { "ipv6_prefix": "2a05:d000:e000::/40", "region": "me-south-1", @@ -79804,6 +82354,12 @@ "service": "EC2", "network_border_group": "me-central-1" }, + { + "ipv6_prefix": "2600:f0f0:8110::/48", + "region": "eu-north-1", + "service": "EC2", + "network_border_group": "eu-north-1" + }, { "ipv6_prefix": "2406:da32:800::/40", "region": "ap-southeast-5", @@ -79870,18 +82426,24 @@ "service": "EC2", "network_border_group": "us-west-2" }, - { - "ipv6_prefix": "2600:1ffd:a400::/40", - "region": "ca-west-1", - "service": "EC2", - "network_border_group": "ca-west-1" - }, { "ipv6_prefix": "2600:f0f0:1120::/48", "region": "us-east-2", "service": "EC2", "network_border_group": "us-east-2" }, + { + "ipv6_prefix": "2600:f0f2:701f::/48", + "region": "eu-north-1", + "service": "EC2", + "network_border_group": "eu-north-1" + }, + { + "ipv6_prefix": "2a05:d06a:1000::/40", + "region": "eu-south-2", + "service": "EC2", + "network_border_group": "eu-south-2" + }, { "ipv6_prefix": "2406:da38:c800::/40", "region": "ap-east-2", @@ -79954,6 +82516,12 @@ "service": "EC2", "network_border_group": "GLOBAL" }, + { + "ipv6_prefix": "2606:7b40:10ff:20::/59", + "region": "us-east-2", + "service": "EC2", + "network_border_group": "us-east-2" + }, { "ipv6_prefix": "2631::/48", "region": "us-west-2", @@ -79990,6 +82558,12 @@ "service": "EC2", "network_border_group": "us-east-2" }, + { + "ipv6_prefix": "2406:daea:7000::/40", + "region": "me-central-1", + "service": "EC2", + "network_border_group": "me-central-1" + }, { "ipv6_prefix": "2600:1f22::/36", "region": "us-gov-west-1", @@ -80056,6 +82630,12 @@ "service": "EC2", "network_border_group": "eu-central-1" }, + { + "ipv6_prefix": "2404:c2c0:ea00::/40", + "region": "cn-northwest-1", + "service": "EC2", + "network_border_group": "cn-northwest-1" + }, { "ipv6_prefix": "2406:da12::/36", "region": "ap-northeast-2", @@ -80074,6 +82654,12 @@ "service": "EC2", "network_border_group": "ap-southeast-1" }, + { + "ipv6_prefix": "2406:daea:e000::/40", + "region": "ap-east-1", + "service": "EC2", + "network_border_group": "ap-east-1" + }, { "ipv6_prefix": "2406:daf0:8800::/40", "region": "ap-southeast-1", @@ -80176,6 +82762,18 @@ "service": "EC2", "network_border_group": "eu-west-1" }, + { + "ipv6_prefix": "2606:7b40:1b0d:c100::/56", + "region": "eu-west-3", + "service": "EC2", + "network_border_group": "eu-west-3" + }, + { + "ipv6_prefix": "2631:1:4cc0::/48", + "region": "eu-south-1", + "service": "EC2", + "network_border_group": "eu-south-1" + }, { "ipv6_prefix": "2406:da22::/36", "region": "ap-northeast-2", @@ -80206,12 +82804,6 @@ "service": "EC2", "network_border_group": "us-east-2" }, - { - "ipv6_prefix": "2600:1ffd:c000::/40", - "region": "us-west-1", - "service": "EC2", - "network_border_group": "us-west-1" - }, { "ipv6_prefix": "2600:f001::/40", "region": "us-east-2", @@ -80230,12 +82822,6 @@ "service": "EC2", "network_border_group": "eu-north-1" }, - { - "ipv6_prefix": "2a05:d07d:8000::/40", - "region": "eu-west-1", - "service": "EC2", - "network_border_group": "eu-west-1" - }, { "ipv6_prefix": "2a05:d07f:4000::/40", "region": "eu-central-1", @@ -80381,10 +82967,10 @@ "network_border_group": "ap-northeast-3" }, { - "ipv6_prefix": "2406:dafd:a000::/40", - "region": "ap-south-1", + "ipv6_prefix": "2631:1:4f40::/48", + "region": "us-east-2", "service": "EC2", - "network_border_group": "ap-south-1" + "network_border_group": "us-east-2" }, { "ipv6_prefix": "2600:1f29:8000::/36", @@ -80428,6 +83014,12 @@ "service": "EC2", "network_border_group": "ap-east-1" }, + { + "ipv6_prefix": "2406:daea:4000::/40", + "region": "ap-northeast-1", + "service": "EC2", + "network_border_group": "ap-northeast-1" + }, { "ipv6_prefix": "2406:daf3:800::/40", "region": "ap-southeast-5", @@ -80440,6 +83032,12 @@ "service": "EC2", "network_border_group": "ca-central-1" }, + { + "ipv6_prefix": "2600:1fea:a400::/40", + "region": "ca-west-1", + "service": "EC2", + "network_border_group": "ca-west-1" + }, { "ipv6_prefix": "2600:1fef:4000::/39", "region": "us-west-2", @@ -80470,12 +83068,6 @@ "service": "EC2", "network_border_group": "ap-northeast-1" }, - { - "ipv6_prefix": "2406:dafd:800::/40", - "region": "ap-southeast-5", - "service": "EC2", - "network_border_group": "ap-southeast-5" - }, { "ipv6_prefix": "2600:1ffd:80cb::/48", "region": "eu-central-1", @@ -80500,6 +83092,12 @@ "service": "EC2", "network_border_group": "ap-northeast-2" }, + { + "ipv6_prefix": "2600:f0f0:8103::/48", + "region": "ap-southeast-5", + "service": "EC2", + "network_border_group": "ap-southeast-5" + }, { "ipv6_prefix": "2620:107:4005::/48", "region": "us-west-2", @@ -80542,6 +83140,12 @@ "service": "EC2", "network_border_group": "GLOBAL" }, + { + "ipv6_prefix": "2606:7b40:1b0c:200::/56", + "region": "eu-central-1", + "service": "EC2", + "network_border_group": "eu-central-1" + }, { "ipv6_prefix": "2a01:578:3::/48", "region": "eu-west-1", @@ -80560,12 +83164,6 @@ "service": "EC2", "network_border_group": "ca-west-1" }, - { - "ipv6_prefix": "2600:1ffd:1020::/48", - "region": "ca-central-1", - "service": "EC2", - "network_border_group": "ca-central-1" - }, { "ipv6_prefix": "2600:f0f0:4::/48", "region": "eu-central-1", @@ -80590,12 +83188,6 @@ "service": "EC2", "network_border_group": "eu-south-2" }, - { - "ipv6_prefix": "2406:dafd:7000::/40", - "region": "me-central-1", - "service": "EC2", - "network_border_group": "me-central-1" - }, { "ipv6_prefix": "2600:1f16:8000::/36", "region": "us-east-2", @@ -80680,6 +83272,12 @@ "service": "EC2", "network_border_group": "ap-southeast-1" }, + { + "ipv6_prefix": "2600:f0f1:4340::/42", + "region": "ap-northeast-3", + "service": "EC2", + "network_border_group": "ap-northeast-3" + }, { "ipv6_prefix": "2600:f0f2:7016::/48", "region": "ap-northeast-1", @@ -80728,6 +83326,12 @@ "service": "EC2", "network_border_group": "ca-central-1" }, + { + "ipv6_prefix": "2600:f0f0:8105::/48", + "region": "eu-west-1", + "service": "EC2", + "network_border_group": "eu-west-1" + }, { "ipv6_prefix": "2606:7b40:1000:3000::/56", "region": "us-west-2", @@ -80776,6 +83380,12 @@ "service": "EC2", "network_border_group": "us-gov-east-1" }, + { + "ipv6_prefix": "2600:f0f2:701d::/48", + "region": "ap-northeast-2", + "service": "EC2", + "network_border_group": "ap-northeast-2" + }, { "ipv6_prefix": "2a05:d076:b000::/40", "region": "eu-central-1", @@ -80830,6 +83440,18 @@ "service": "EC2", "network_border_group": "ap-northeast-1" }, + { + "ipv6_prefix": "2600:f0f1:80::/48", + "region": "eu-west-2", + "service": "EC2", + "network_border_group": "eu-west-2" + }, + { + "ipv6_prefix": "2600:f0f1:4540::/42", + "region": "ap-southeast-2", + "service": "EC2", + "network_border_group": "ap-southeast-2" + }, { "ipv6_prefix": "2a05:d01d::/36", "region": "eu-central-1", @@ -80950,6 +83572,12 @@ "service": "EC2", "network_border_group": "me-west-1" }, + { + "ipv6_prefix": "2400:7fc0:ea00::/40", + "region": "cn-north-1", + "service": "EC2", + "network_border_group": "cn-north-1" + }, { "ipv6_prefix": "2406:da70:a000::/40", "region": "ap-south-1", @@ -80962,6 +83590,12 @@ "service": "EC2", "network_border_group": "ca-west-1" }, + { + "ipv6_prefix": "2600:1fea:c000::/40", + "region": "us-west-1", + "service": "EC2", + "network_border_group": "us-west-1" + }, { "ipv6_prefix": "2a05:d040:2000::/40", "region": "eu-west-3", @@ -80986,6 +83620,12 @@ "service": "EC2", "network_border_group": "us-west-2" }, + { + "ipv6_prefix": "2600:f0f0:8106::/48", + "region": "us-east-2", + "service": "EC2", + "network_border_group": "us-east-2" + }, { "ipv6_prefix": "2606:7b40:a3e:270::/60", "region": "us-west-2", @@ -81052,12 +83692,6 @@ "service": "EC2", "network_border_group": "ap-southeast-5" }, - { - "ipv6_prefix": "2406:dafd:4800::/40", - "region": "ap-southeast-7", - "service": "EC2", - "network_border_group": "ap-southeast-7" - }, { "ipv6_prefix": "2600:1ff3:a400::/40", "region": "ca-west-1", @@ -81082,6 +83716,42 @@ "service": "EC2", "network_border_group": "eu-north-1" }, + { + "ipv6_prefix": "2600:f0f2:7000::/44", + "region": "GLOBAL", + "service": "ROUTE53", + "network_border_group": "GLOBAL" + }, + { + "ipv6_prefix": "2600:9000:f530::/46", + "region": "GLOBAL", + "service": "ROUTE53", + "network_border_group": "GLOBAL" + }, + { + "ipv6_prefix": "2600:f0fb:f000::/44", + "region": "GLOBAL", + "service": "ROUTE53", + "network_border_group": "GLOBAL" + }, + { + "ipv6_prefix": "2600:f0f3:f000::/44", + "region": "GLOBAL", + "service": "ROUTE53", + "network_border_group": "GLOBAL" + }, + { + "ipv6_prefix": "2600:f0f0:400::/44", + "region": "GLOBAL", + "service": "ROUTE53", + "network_border_group": "GLOBAL" + }, + { + "ipv6_prefix": "2600:9000:5300::/45", + "region": "GLOBAL", + "service": "ROUTE53", + "network_border_group": "GLOBAL" + }, { "ipv6_prefix": "2600:9000:3000::/36", "region": "GLOBAL", diff --git a/wwwroot/ip-manifests/Azure.json b/wwwroot/ip-manifests/azure.json similarity index 95% rename from wwwroot/ip-manifests/Azure.json rename to wwwroot/ip-manifests/azure.json index 3f1873c..d77fc87 100644 --- a/wwwroot/ip-manifests/Azure.json +++ b/wwwroot/ip-manifests/azure.json @@ -1,12 +1,12 @@ { - "changeNumber": 372, + "changeNumber": 380, "cloud": "Public", "values": [ { "name": "ActionGroup", "id": "ActionGroup", "properties": { - "changeNumber": 52, + "changeNumber": 54, "region": "", "regionId": 0, "platform": "Azure", @@ -128,8 +128,10 @@ "40.83.170.64/32", "40.83.173.147/32", "40.121.67.30/32", + "48.193.50.96/30", "48.196.97.160/30", "48.197.94.96/30", + "48.198.97.160/30", "48.216.8.24/30", "48.219.232.24/30", "51.4.160.24/30", @@ -183,6 +185,7 @@ "172.187.32.16/30", "172.187.67.44/30", "172.191.219.248/30", + "172.194.86.168/30", "172.194.112.244/30", "172.198.114.96/30", "172.201.232.60/30", @@ -285,6 +288,7 @@ "2603:1030:1302:400::40/125", "2603:1030:1402:400::40/125", "2603:1030:1502:400::40/125", + "2603:1030:1602:3::610/125", "2603:1030:1602:400::210/125", "2603:1030:1702:2::708/125", "2603:1040:5:3::5fc/126", @@ -326,9 +330,11 @@ "2603:1040:1602:1::2e8/126", "2603:1040:1602:400::40/125", "2603:1040:1702:400::40/125", + "2603:1040:1802:5::5a0/125", "2603:1040:1802:400::40/125", "2603:1040:1a02:3::698/125", "2603:1040:1a02:400::18/125", + "2603:1040:1b02:2::708/125", "2603:1050:6:2::6f0/126", "2603:1050:6:402::178/125", "2603:1050:301:400::40/125", @@ -785,7 +791,7 @@ "name": "AzureHealthcareAPIs", "id": "AzureHealthcareAPIs", "properties": { - "changeNumber": 28, + "changeNumber": 29, "region": "", "regionId": 0, "platform": "Azure", @@ -917,6 +923,7 @@ "40.120.82.160/28", "48.196.87.32/27", "48.197.79.32/27", + "48.198.87.32/27", "48.216.20.128/27", "48.219.196.192/27", "51.11.192.32/31", @@ -1084,6 +1091,7 @@ "2603:1040:1802::420/123", "2603:1040:1904:1::100/123", "2603:1040:1a02:1::100/123", + "2603:1040:1b02:1::100/123", "2603:1050:6:2::540/123", "2603:1050:301::6c0/123", "2603:1050:403:2::380/123" @@ -1100,7 +1108,7 @@ "name": "AzureAdvancedThreatProtection", "id": "AzureAdvancedThreatProtection", "properties": { - "changeNumber": 35, + "changeNumber": 36, "region": "", "regionId": 0, "platform": "Azure", @@ -1157,6 +1165,7 @@ "40.119.9.224/29", "48.196.80.24/29", "48.197.72.24/29", + "48.198.80.24/29", "48.216.16.24/29", "48.219.192.24/29", "51.12.46.232/29", @@ -1269,6 +1278,7 @@ "2603:1040:1802:2::760/123", "2603:1040:1904::180/123", "2603:1040:1a02::180/123", + "2603:1040:1b02::180/123", "2603:1050:6:1::140/123", "2603:1050:301::180/123", "2603:1050:403::140/123" @@ -1285,7 +1295,7 @@ "name": "ApiManagement", "id": "ApiManagement", "properties": { - "changeNumber": 60, + "changeNumber": 61, "region": "", "regionId": 0, "platform": "Azure", @@ -1435,6 +1445,7 @@ "40.121.13.26/32", "48.196.86.16/28", "48.197.78.16/28", + "48.198.86.16/28", "48.216.19.176/28", "48.219.195.176/28", "48.220.16.2/31", @@ -1649,6 +1660,7 @@ "2603:1040:1802::2c0/124", "2603:1040:1904::740/124", "2603:1040:1a02::740/124", + "2603:1040:1b02::740/124", "2603:1050:6:402::140/124", "2603:1050:301::520/124", "2603:1050:403:400::2a0/124" @@ -1665,7 +1677,7 @@ "name": "AppConfiguration", "id": "AppConfiguration", "properties": { - "changeNumber": 72, + "changeNumber": 73, "region": "", "regionId": 0, "platform": "Azure", @@ -1940,6 +1952,7 @@ "40.120.75.128/27", "48.196.92.0/26", "48.197.84.0/26", + "48.198.92.0/26", "48.215.144.192/27", "48.216.8.224/27", "48.216.26.0/26", @@ -2390,6 +2403,7 @@ "2603:1040:1904:c00::20/123", "2603:1040:1a02:1::600/122", "2603:1040:1a02:400::40/123", + "2603:1040:1b02:1::600/122", "2603:1050:6:402::2e0/123", "2603:1050:6:802::220/123", "2603:1050:6:c02::220/123", @@ -2411,7 +2425,7 @@ "name": "AppService", "id": "AppService", "properties": { - "changeNumber": 57, + "changeNumber": 58, "region": "", "regionId": 0, "platform": "Azure", @@ -3029,6 +3043,7 @@ "40.127.196.56/32", "48.196.93.0/24", "48.197.85.0/24", + "48.198.93.0/24", "48.216.27.0/24", "48.219.202.0/24", "51.4.130.0/24", @@ -3703,6 +3718,7 @@ "2603:1040:1802:1::400/120", "2603:1040:1904:2::/120", "2603:1040:1a02:2::/120", + "2603:1040:1b02:2::/120", "2603:1050:6:3::/118", "2603:1050:6:402::a0/123", "2603:1050:6:802::a0/123", @@ -3724,7 +3740,7 @@ "name": "AppServiceManagement", "id": "AppServiceManagement", "properties": { - "changeNumber": 68, + "changeNumber": 69, "region": "", "regionId": 0, "platform": "Azure", @@ -3875,6 +3891,7 @@ "40.127.3.19/32", "48.196.94.192/26", "48.197.86.192/26", + "48.198.94.192/26", "48.215.155.64/29", "48.216.28.192/26", "48.216.60.0/29", @@ -4228,6 +4245,7 @@ "2603:1040:1802:1::740/122", "2603:1040:1904:2::3c0/122", "2603:1040:1a02:2::3c0/122", + "2603:1040:1b02:2::2c0/122", "2603:1050:6:2::500/123", "2603:1050:6:402::100/122", "2603:1050:6:802::100/122", @@ -4250,7 +4268,7 @@ "name": "AzureArcInfrastructure", "id": "AzureArcInfrastructure", "properties": { - "changeNumber": 44, + "changeNumber": 45, "region": "", "regionId": 0, "platform": "Azure", @@ -4499,6 +4517,7 @@ "40.124.65.160/31", "48.196.92.188/30", "48.197.86.164/30", + "48.198.92.188/30", "48.216.8.52/32", "48.216.28.144/30", "48.216.48.142/32", @@ -4724,6 +4743,7 @@ "2603:1040:1802:1::710/124", "2603:1040:1904:2::380/124", "2603:1040:1a02:2::380/124", + "2603:1040:1b02:2::1b0/124", "2603:1050:301:2::200/124" ], "networkFeatures": [ @@ -4738,15 +4758,37 @@ "name": "AzureAttestation", "id": "AzureAttestation", "properties": { - "changeNumber": 39, + "changeNumber": 41, "region": "", "regionId": 0, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.144.15.72/29", + "4.145.10.168/29", + "4.159.236.184/29", + "4.172.85.24/29", + "4.176.24.176/29", + "4.177.29.184/29", + "4.185.224.248/29", + "4.195.110.184/29", + "4.199.42.232/29", + "4.199.198.248/29", + "4.209.250.176/29", + "4.217.214.72/29", + "4.220.236.240/29", + "4.221.45.232/29", + "4.223.182.184/29", + "4.226.77.128/29", + "4.226.197.72/29", "4.232.28.24/30", + "4.238.11.112/29", + "4.241.53.192/29", + "4.243.143.8/29", + "4.247.186.56/29", "9.160.40.20/30", "9.205.32.20/30", + "9.235.70.112/29", "13.66.145.224/30", "13.69.109.140/30", "13.69.233.128/30", @@ -4775,17 +4817,27 @@ "20.49.127.244/30", "20.51.8.204/30", "20.51.20.80/30", + "20.51.53.8/29", "20.52.72.44/30", "20.53.0.104/30", "20.53.47.64/30", "20.53.56.4/30", + "20.58.72.32/29", + "20.59.214.128/29", "20.61.99.100/30", "20.62.129.148/30", + "20.63.252.136/29", "20.65.130.92/30", "20.72.21.144/30", "20.72.30.180/30", + "20.91.44.16/29", + "20.111.117.248/29", "20.150.174.132/30", "20.150.244.32/30", + "20.167.183.152/29", + "20.170.241.200/29", + "20.172.72.240/29", + "20.174.245.112/29", "20.187.197.228/30", "20.189.225.84/30", "20.191.161.220/30", @@ -4797,7 +4849,9 @@ "20.193.96.12/30", "20.194.72.148/30", "20.195.146.64/30", + "20.200.5.104/29", "20.215.0.44/30", + "20.215.120.112/29", "20.217.40.44/30", "20.217.248.20/30", "23.98.109.52/30", @@ -4814,16 +4868,24 @@ "40.89.121.168/30", "40.120.8.176/30", "40.120.75.60/30", + "48.192.143.112/29", + "48.195.234.216/29", "48.196.80.20/30", "48.197.72.20/30", + "48.198.80.20/30", + "48.199.12.8/29", + "48.200.63.32/29", "48.216.16.20/30", "48.219.192.20/30", + "48.223.29.136/29", "51.12.46.224/30", "51.12.198.4/30", "51.13.128.64/30", "51.13.136.184/30", "51.53.27.240/30", "51.53.171.240/30", + "51.58.49.24/29", + "51.59.56.192/29", "51.107.53.52/30", "51.107.128.36/30", "51.107.192.152/30", @@ -4847,13 +4909,22 @@ "52.172.116.0/30", "52.231.23.116/30", "52.231.151.68/30", + "52.238.33.184/29", "57.151.208.20/30", + "57.159.158.32/29", "68.210.160.20/30", "68.211.19.184/30", + "68.211.31.176/29", "68.221.84.152/30", "70.153.152.20/30", + "70.156.172.240/29", + "70.157.78.240/29", "74.7.40.20/30", "74.7.176.20/30", + "74.225.41.64/29", + "74.225.110.136/29", + "74.243.172.232/29", + "85.211.94.232/29", "102.37.64.120/30", "102.37.80.52/30", "102.133.126.132/30", @@ -4862,11 +4933,19 @@ "104.46.179.240/30", "104.214.164.108/30", "134.138.64.20/30", + "135.235.62.96/29", "158.23.100.152/30", + "167.105.220.112/29", "168.61.140.108/30", + "172.170.180.48/29", + "172.175.111.120/29", "172.194.64.20/30", + "172.195.50.24/29", "172.198.80.20/30", "172.204.152.20/30", + "172.204.255.208/29", + "172.209.100.136/29", + "172.215.123.104/29", "191.233.51.220/30", "191.233.207.212/30", "191.238.72.72/30", @@ -4926,6 +5005,7 @@ "2603:1040:1802::2e0/124", "2603:1040:1904::760/124", "2603:1040:1a02::760/124", + "2603:1040:1b02::760/124", "2603:1050:301::540/124" ], "networkFeatures": [ @@ -4940,7 +5020,7 @@ "name": "GuestAndHybridManagement", "id": "GuestAndHybridManagement", "properties": { - "changeNumber": 58, + "changeNumber": 59, "region": "", "regionId": 0, "platform": "Azure", @@ -5288,6 +5368,7 @@ "40.120.87.32/28", "48.196.86.96/27", "48.197.78.96/27", + "48.198.86.96/27", "48.216.20.64/27", "48.219.196.64/27", "50.85.242.158/31", @@ -5835,6 +5916,7 @@ "2603:1040:1802::400/123", "2603:1040:1904:1::80/123", "2603:1040:1a02:1::80/123", + "2603:1040:1b02:1::80/123", "2603:1050:6::6a0/123", "2603:1050:6:7::70/124", "2603:1050:6:7::180/122", @@ -5861,7 +5943,7 @@ "name": "AzureBackup", "id": "AzureBackup", "properties": { - "changeNumber": 63, + "changeNumber": 64, "region": "", "regionId": 0, "platform": "Azure", @@ -6063,6 +6145,8 @@ "48.196.86.128/26", "48.197.78.80/28", "48.197.78.128/26", + "48.198.86.80/28", + "48.198.86.128/26", "48.215.77.0/26", "48.216.20.0/26", "48.219.196.0/26", @@ -6373,6 +6457,7 @@ "2603:1040:1802::380/121", "2603:1040:1904:1::/121", "2603:1040:1a02:1::/121", + "2603:1040:1b02:1::/121", "2603:1050:6:402::200/121", "2603:1050:6:802::180/121", "2603:1050:6:c02::180/121", @@ -6391,7 +6476,7 @@ "name": "AzureBotService", "id": "AzureBotService", "properties": { - "changeNumber": 29, + "changeNumber": 30, "region": "", "regionId": 0, "platform": "Azure", @@ -6472,6 +6557,7 @@ "40.89.16.64/30", "48.196.80.16/30", "48.197.72.16/30", + "48.198.80.16/30", "48.216.16.16/30", "48.219.192.16/30", "51.12.40.64/26", @@ -6596,6 +6682,7 @@ "2603:1040:1802:2::740/123", "2603:1040:1904::20/123", "2603:1040:1a02::20/123", + "2603:1040:1b02::20/123", "2603:1050:6:1::20/123", "2603:1050:301::20/123", "2603:1050:403::20/123" @@ -6612,7 +6699,7 @@ "name": "AzureCognitiveSearch", "id": "AzureCognitiveSearch", "properties": { - "changeNumber": 33, + "changeNumber": 34, "region": "", "regionId": 0, "platform": "Azure", @@ -6717,6 +6804,7 @@ "40.119.11.0/26", "48.196.80.192/26", "48.197.72.192/26", + "48.198.80.192/26", "48.216.16.192/26", "48.219.192.192/26", "51.12.41.64/26", @@ -6882,6 +6970,7 @@ "2603:1040:1802:3::/121", "2603:1040:1904::100/121", "2603:1040:1a02::100/121", + "2603:1040:1b02::100/121", "2603:1050:6:1::180/121", "2603:1050:301::100/121", "2603:1050:403::180/121" @@ -6898,7 +6987,7 @@ "name": "AzureConnectors", "id": "AzureConnectors", "properties": { - "changeNumber": 60, + "changeNumber": 61, "region": "", "regionId": 0, "platform": "Azure", @@ -7201,6 +7290,7 @@ "40.125.2.230/32", "48.196.92.192/26", "48.197.84.192/26", + "48.198.92.192/26", "48.216.26.192/26", "48.219.203.0/26", "51.4.131.0/26", @@ -7504,6 +7594,7 @@ "2603:1040:1802:3::380/124", "2603:1040:1904:2::100/122", "2603:1040:1a02:2::100/122", + "2603:1040:1b02:2::140/122", "2603:1050:6:402::180/122", "2603:1050:301:1::6c0/122", "2603:1050:403:400::2c0/122" @@ -7520,7 +7611,7 @@ "name": "AzureContainerRegistry", "id": "AzureContainerRegistry", "properties": { - "changeNumber": 95, + "changeNumber": 98, "region": "", "regionId": 0, "platform": "Azure", @@ -7845,10 +7936,13 @@ "40.120.74.16/29", "40.120.77.0/25", "40.124.64.0/25", + "48.193.49.192/26", "48.196.84.192/26", "48.196.96.128/26", "48.197.76.192/26", "48.197.88.128/26", + "48.198.84.192/26", + "48.198.96.128/26", "48.215.4.128/26", "48.215.144.64/26", "48.216.8.64/26", @@ -8156,6 +8250,9 @@ "2603:1010:404:402::580/122", "2603:1010:404:402::600/121", "2603:1010:502::560/125", + "2603:1010:502:5::418/125", + "2603:1010:502:5::430/124", + "2603:1010:502:5::460/123", "2603:1010:502:400::48/125", "2603:1010:502:400::100/121", "2603:1010:502:800::8/125", @@ -8172,6 +8269,9 @@ "2603:1020:5:c02::90/125", "2603:1020:5:c02::400/121", "2603:1020:104:3::368/125", + "2603:1020:104:6::588/125", + "2603:1020:104:6::590/124", + "2603:1020:104:6::5a0/123", "2603:1020:104:403::8/125", "2603:1020:104:403::80/121", "2603:1020:104:800::8/125", @@ -8298,6 +8398,9 @@ "2603:1020:1302:c00::48/125", "2603:1020:1302:c00::180/121", "2603:1020:1403::580/125", + "2603:1020:1403:7::160/123", + "2603:1020:1403:7::200/124", + "2603:1020:1403:7::210/125", "2603:1020:1403:400::8/125", "2603:1020:1403:400::200/121", "2603:1020:1403:800::8/125", @@ -8305,6 +8408,9 @@ "2603:1020:1403:c00::48/125", "2603:1020:1403:c00::100/121", "2603:1020:1502::3e0/125", + "2603:1020:1502:3::6e0/123", + "2603:1020:1502:3::780/124", + "2603:1020:1502:3::790/125", "2603:1020:1502:400::8/125", "2603:1020:1502:400::80/121", "2603:1020:1502:800::8/125", @@ -8313,6 +8419,9 @@ "2603:1020:1502:c00::80/121", "2603:1020:1602::3e0/125", "2603:1020:1602:4::100/121", + "2603:1020:1602:4::480/123", + "2603:1020:1602:4::4a0/124", + "2603:1020:1602:4::4b0/125", "2603:1020:1602:400::8/125", "2603:1020:1602:400::80/121", "2603:1020:1602:800::8/125", @@ -8417,6 +8526,9 @@ "2603:1030:807:1000::8/125", "2603:1030:902::560/125", "2603:1030:902:4::180/121", + "2603:1030:902:4::660/123", + "2603:1030:902:4::700/124", + "2603:1030:902:4::710/125", "2603:1030:902:400::8/125", "2603:1030:902:400::100/121", "2603:1030:a07:9::10/125", @@ -8461,22 +8573,37 @@ "2603:1030:1005:402::600/121", "2603:1030:1102::3e0/125", "2603:1030:1102:3::780/121", + "2603:1030:1102:4::4f8/125", + "2603:1030:1102:4::540/123", + "2603:1030:1102:4::560/124", "2603:1030:1102:400::8/125", "2603:1030:1102:400::80/121", "2603:1030:1202::3e0/125", "2603:1030:1202:4::180/121", + "2603:1030:1202:4::580/123", + "2603:1030:1202:4::5a0/124", + "2603:1030:1202:4::5b0/125", "2603:1030:1202:400::8/125", "2603:1030:1202:400::80/121", "2603:1030:1302::3e0/125", "2603:1030:1302:4::200/121", + "2603:1030:1302:4::4a8/125", + "2603:1030:1302:4::4b0/124", + "2603:1030:1302:4::540/123", "2603:1030:1302:400::8/125", "2603:1030:1302:400::80/121", "2603:1030:1402::700/125", "2603:1030:1402:4::280/121", + "2603:1030:1402:4::508/125", + "2603:1030:1402:4::510/124", + "2603:1030:1402:4::540/123", "2603:1030:1402:400::8/125", "2603:1030:1402:400::80/121", "2603:1030:1502::700/125", "2603:1030:1502:4::100/121", + "2603:1030:1502:4::4e8/125", + "2603:1030:1502:4::4f0/124", + "2603:1030:1502:4::580/123", "2603:1030:1502:400::8/125", "2603:1030:1502:400::80/121", "2603:1030:1602::5c0/125", @@ -8624,6 +8751,9 @@ "2603:1040:1503:400::48/125", "2603:1040:1503:400::280/121", "2603:1040:1602::560/125", + "2603:1040:1602:4::5c0/123", + "2603:1040:1602:4::5e0/124", + "2603:1040:1602:4::5f0/125", "2603:1040:1602:400::8/125", "2603:1040:1602:400::100/121", "2603:1040:1602:800::18/125", @@ -8632,9 +8762,16 @@ "2603:1040:1602:c00::80/121", "2603:1040:1702::3e0/125", "2603:1040:1702:4::200/121", + "2603:1040:1702:4::570/124", + "2603:1040:1702:4::600/123", + "2603:1040:1702:4::620/125", "2603:1040:1702:400::8/125", "2603:1040:1702:400::80/121", "2603:1040:1802::280/125", + "2603:1040:1802:4::6a8/125", + "2603:1040:1802:4::6b0/124", + "2603:1040:1802:4::6c0/123", + "2603:1040:1802:5::480/121", "2603:1040:1802:400::8/125", "2603:1040:1802:400::100/121", "2603:1040:1802:800::8/125", @@ -8643,12 +8780,17 @@ "2603:1040:1802:c00::80/121", "2603:1040:1904::700/125", "2603:1040:1904:2::580/121", + "2603:1040:1904:4::188/125", + "2603:1040:1904:4::300/123", + "2603:1040:1904:4::320/124", "2603:1040:1904:400::8/125", "2603:1040:1904:800::8/125", "2603:1040:1904:c00::8/125", "2603:1040:1a02::700/125", "2603:1040:1a02:2::580/121", "2603:1040:1a02:400::8/125", + "2603:1040:1b02::700/125", + "2603:1040:1b02:2::580/121", "2603:1050:6:3::4c0/122", "2603:1050:6:402::90/125", "2603:1050:6:402::340/122", @@ -8659,6 +8801,9 @@ "2603:1050:6:c02::90/125", "2603:1050:6:c02::400/121", "2603:1050:301::3e0/125", + "2603:1050:301:4::4b0/124", + "2603:1050:301:4::4c0/123", + "2603:1050:301:4::4e0/125", "2603:1050:301:400::8/125", "2603:1050:301:400::80/121", "2603:1050:301:800::8/125", @@ -8682,7 +8827,7 @@ "name": "AzureCosmosDB", "id": "AzureCosmosDB", "properties": { - "changeNumber": 81, + "changeNumber": 83, "region": "", "regionId": 0, "platform": "Azure", @@ -8697,6 +8842,7 @@ "4.190.131.128/25", "4.194.225.0/25", "4.194.225.128/26", + "4.199.44.192/27", "4.232.26.64/27", "4.232.42.64/26", "4.255.28.232/32", @@ -9060,6 +9206,8 @@ "48.196.84.64/26", "48.197.76.32/27", "48.197.76.64/26", + "48.198.84.32/27", + "48.198.84.64/26", "48.216.19.0/26", "48.219.195.0/26", "48.219.209.160/27", @@ -9475,6 +9623,7 @@ "2603:1040:1802::240/123", "2603:1040:1904::5c0/123", "2603:1040:1a02::5c0/123", + "2603:1040:1b02::5c0/123", "2603:1050:6:402::c0/122", "2603:1050:6:802::c0/122", "2603:1050:6:c02::c0/122", @@ -9494,7 +9643,7 @@ "name": "AzureDataExplorerManagement", "id": "AzureDataExplorerManagement", "properties": { - "changeNumber": 50, + "changeNumber": 53, "region": "", "regionId": 0, "platform": "Azure", @@ -9540,6 +9689,7 @@ "20.46.13.240/28", "20.46.146.7/32", "20.51.6.240/28", + "20.51.53.160/28", "20.59.81.128/28", "20.72.27.128/28", "20.74.195.16/28", @@ -9603,8 +9753,11 @@ "40.91.74.95/32", "40.119.3.195/32", "40.119.203.252/32", + "48.195.238.128/28", "48.196.89.144/28", "48.197.81.144/28", + "48.198.89.144/28", + "48.202.151.64/28", "48.216.22.128/28", "48.219.198.192/28", "51.12.20.48/28", @@ -9613,6 +9766,7 @@ "51.12.203.192/28", "51.53.30.128/28", "51.53.174.128/28", + "51.59.58.0/28", "51.104.8.112/28", "51.107.59.160/28", "51.107.98.201/32", @@ -9798,6 +9952,7 @@ "2603:1040:1802::760/123", "2603:1040:1904:1::440/123", "2603:1040:1a02:1::440/123", + "2603:1040:1b02:1::440/123", "2603:1050:6::600/121", "2603:1050:6:402::150/124", "2603:1050:301:1::1c0/123", @@ -9854,7 +10009,7 @@ "name": "AzureDatabricks", "id": "AzureDatabricks", "properties": { - "changeNumber": 49, + "changeNumber": 51, "region": "", "regionId": 0, "platform": "Azure", @@ -10155,8 +10310,10 @@ "40.127.8.48/29", "40.127.8.136/29", "40.127.147.196/32", + "48.193.49.0/26", "48.196.81.0/26", "48.197.73.0/26", + "48.198.81.0/26", "48.210.191.80/28", "48.210.191.96/29", "48.215.77.176/28", @@ -10500,8 +10657,10 @@ "2603:1040:1702::1a0/123", "2603:1040:1702:3::540/122", "2603:1040:1802:3::80/123", + "2603:1040:1802:5::40/122", "2603:1040:1904::1c0/122", "2603:1040:1a02::1c0/122", + "2603:1040:1b02::1c0/122", "2603:1050:6:1::160/123", "2603:1050:301::1a0/123", "2603:1050:403::160/123" @@ -10518,12 +10677,14 @@ "name": "AzureDevOps", "id": "AzureDevOps", "properties": { - "changeNumber": 8, + "changeNumber": 9, "region": "", "regionId": 0, "platform": "Azure", "systemService": "AzureDevOps", "addressPrefixes": [ + "4.188.8.0/27", + "4.247.191.228/30", "20.37.158.0/23", "20.37.194.0/24", "20.39.13.0/26", @@ -10544,6 +10705,8 @@ "40.80.187.0/24", "40.82.252.0/24", "40.119.10.0/24", + "48.223.55.140/30", + "48.223.55.160/27", "51.104.26.0/24", "52.150.138.0/24", "52.228.82.0/24", @@ -10823,7 +10986,7 @@ "name": "AzureDigitalTwins", "id": "AzureDigitalTwins", "properties": { - "changeNumber": 51, + "changeNumber": 52, "region": "", "regionId": 0, "platform": "Azure", @@ -10974,6 +11137,8 @@ "48.196.86.32/27", "48.197.76.152/29", "48.197.78.32/27", + "48.198.84.152/29", + "48.198.86.32/27", "48.216.19.192/27", "48.219.195.192/27", "48.219.208.240/29", @@ -11192,6 +11357,7 @@ "2603:1040:1802::300/121", "2603:1040:1904::780/121", "2603:1040:1a02::780/121", + "2603:1040:1b02::780/121", "2603:1050:301::580/121" ], "networkFeatures": [ @@ -11206,7 +11372,7 @@ "name": "AzureEventGrid", "id": "AzureEventGrid", "properties": { - "changeNumber": 37, + "changeNumber": 38, "region": "", "regionId": 0, "platform": "Azure", @@ -11442,6 +11608,7 @@ "40.127.251.144/28", "48.196.81.128/25", "48.197.73.128/25", + "48.198.81.128/25", "48.216.17.128/25", "48.219.193.128/25", "51.4.0.217/32", @@ -11671,6 +11838,7 @@ "2603:1040:1802:3::180/121", "2603:1040:1904::480/121", "2603:1040:1a02::480/121", + "2603:1040:1b02::480/121", "2603:1050:6:1::380/121", "2603:1050:301::280/121", "2603:1050:403::380/121" @@ -11687,13 +11855,17 @@ "name": "EventHub", "id": "EventHub", "properties": { - "changeNumber": 85, + "changeNumber": 87, "region": "", "regionId": 0, "platform": "Azure", "systemService": "AzureEventHub", "addressPrefixes": [ "4.150.33.0/24", + "4.172.80.0/25", + "4.177.24.0/24", + "4.177.25.0/26", + "4.186.6.64/26", "4.190.144.128/26", "4.206.228.192/26", "4.232.29.0/24", @@ -11906,8 +12078,12 @@ "40.120.84.0/24", "40.124.65.64/26", "40.125.103.251/32", + "48.195.224.128/25", + "48.195.236.0/23", "48.196.88.0/24", "48.197.80.0/24", + "48.198.88.0/24", + "48.199.1.128/25", "48.216.8.128/26", "48.216.21.0/24", "48.219.197.0/24", @@ -11984,6 +12160,7 @@ "52.236.186.0/26", "52.246.154.64/26", "52.246.159.0/26", + "52.255.16.0/23", "57.151.152.128/26", "57.151.213.0/24", "65.52.250.32/27", @@ -12029,6 +12206,9 @@ "104.211.81.0/28", "104.211.146.32/27", "104.214.18.128/27", + "131.163.111.208/29", + "131.163.111.216/30", + "131.163.111.224/27", "134.138.72.0/24", "134.149.88.0/23", "158.23.11.64/26", @@ -12036,6 +12216,9 @@ "158.23.123.64/26", "158.23.195.64/26", "168.61.143.128/26", + "172.170.168.0/25", + "172.175.14.128/25", + "172.175.104.0/23", "172.185.82.0/23", "172.187.65.64/26", "172.191.248.0/24", @@ -12265,6 +12448,7 @@ "2603:1030:1702:1::200/120", "2603:1040:5:1::240/122", "2603:1040:5:3::780/121", + "2603:1040:5:15::400/120", "2603:1040:5:402::1c0/123", "2603:1040:5:802::160/123", "2603:1040:5:c02::160/123", @@ -12320,6 +12504,7 @@ "2603:1040:1802::500/120", "2603:1040:1904:1::200/120", "2603:1040:1a02:1::200/120", + "2603:1040:1b02:1::200/120", "2603:1050:6:1::240/122", "2603:1050:6:2::200/120", "2603:1050:6:402::1c0/123", @@ -13112,7 +13297,7 @@ "name": "AzureKeyVault", "id": "AzureKeyVault", "properties": { - "changeNumber": 69, + "changeNumber": 70, "region": "", "regionId": 0, "platform": "Azure", @@ -13307,6 +13492,8 @@ "48.196.89.232/29", "48.197.81.216/30", "48.197.81.224/29", + "48.198.89.224/30", + "48.198.89.232/29", "48.215.144.12/30", "48.216.12.136/30", "48.216.22.216/30", @@ -13814,6 +14001,7 @@ "2603:1040:1904:c00::18/125", "2603:1040:1a02:1::428/125", "2603:1040:1a02:400::80/125", + "2603:1040:1b02:1::4e0/125", "2603:1050:6::340/125", "2603:1050:6:2::6e4/126", "2603:1050:6:2::6e8/125", @@ -13883,7 +14071,7 @@ "name": "AzureMachineLearning", "id": "AzureMachineLearning", "properties": { - "changeNumber": 52, + "changeNumber": 53, "region": "", "regionId": 0, "platform": "Azure", @@ -14036,6 +14224,7 @@ "40.119.8.80/28", "48.196.81.64/27", "48.197.73.64/27", + "48.198.81.64/27", "48.211.42.128/27", "48.211.42.160/28", "48.216.17.0/27", @@ -14220,6 +14409,7 @@ "2603:1040:1802:3::c0/122", "2603:1040:1904::400/122", "2603:1040:1a02::400/122", + "2603:1040:1b02::400/122", "2603:1050:6:1::2c0/122", "2603:1050:301::200/122", "2603:1050:403::2c0/122" @@ -14236,7 +14426,7 @@ "name": "AzureMachineLearningInference", "id": "AzureMachineLearningInference", "properties": { - "changeNumber": 19, + "changeNumber": 20, "region": "", "regionId": 0, "platform": "Azure", @@ -14361,6 +14551,7 @@ "40.120.87.0/27", "48.196.81.96/27", "48.197.73.96/27", + "48.198.81.96/27", "48.216.17.32/27", "48.219.193.32/27", "51.12.72.224/27", @@ -14481,6 +14672,7 @@ "2603:1040:1802:3::100/122", "2603:1040:1904::440/122", "2603:1040:1a02::440/122", + "2603:1040:1b02::440/122", "2603:1050:6:2::6f8/125", "2603:1050:301::240/122", "2603:1050:403::138/125" @@ -14497,16 +14689,57 @@ "name": "AzureManagedGrafana", "id": "AzureManagedGrafana", "properties": { - "changeNumber": 10, + "changeNumber": 13, "region": "", "regionId": 0, "platform": "Azure", "systemService": "AzureManagedGrafana", "addressPrefixes": [ + "4.145.16.28/30", + "4.145.16.48/28", + "4.161.8.16/28", + "4.161.8.32/30", + "4.165.104.212/30", + "4.165.109.16/28", + "4.172.91.60/30", + "4.172.91.80/28", + "4.176.26.184/30", + "4.176.26.192/28", + "4.177.31.220/30", + "4.185.227.56/30", + "4.185.227.112/28", + "4.185.231.100/30", + "4.185.231.112/28", + "4.191.81.28/30", + "4.195.143.56/30", + "4.195.143.128/28", + "4.199.208.172/30", + "4.199.208.176/28", + "4.217.214.220/30", "4.218.246.30/31", "4.218.246.32/32", + "4.219.20.48/28", + "4.220.239.212/30", + "4.220.239.224/28", + "4.221.221.196/30", + "4.221.221.208/28", + "4.226.252.116/30", + "4.226.252.128/28", + "4.230.120.48/28", "4.232.42.3/32", "4.232.48.102/31", + "4.238.14.164/30", + "4.238.14.176/28", + "4.241.55.8/30", + "4.241.55.32/28", + "4.243.158.88/30", + "4.243.158.112/28", + "4.247.188.164/30", + "4.247.188.176/28", + "9.160.70.20/30", + "9.160.70.32/28", + "9.235.169.36/30", + "9.235.169.48/28", "20.6.137.178/31", "20.6.137.180/32", "20.9.156.214/31", @@ -14525,24 +14758,48 @@ "20.24.4.168/32", "20.26.17.251/32", "20.26.18.124/31", + "20.45.149.200/30", + "20.45.149.208/28", "20.50.93.107/32", "20.50.93.108/31", + "20.51.55.128/28", + "20.51.55.144/30", + "20.58.79.92/30", + "20.58.79.112/28", + "20.91.89.148/30", + "20.91.89.160/28", "20.91.147.65/32", "20.91.147.66/31", "20.100.7.47/32", "20.100.21.118/31", + "20.111.71.88/30", + "20.111.71.96/28", "20.111.115.126/32", "20.111.117.160/29", "20.164.154.162/31", "20.164.154.164/32", "20.166.40.54/31", "20.166.40.116/32", + "20.167.212.80/28", + "20.167.212.96/30", + "20.170.249.148/30", + "20.170.249.160/28", + "20.172.90.116/30", + "20.172.90.192/28", + "20.173.60.128/28", + "20.173.60.144/30", "20.175.5.44/31", "20.175.5.46/32", + "20.200.12.40/30", + "20.200.12.64/28", "20.204.198.34/31", "20.204.198.36/32", "20.213.196.244/31", "20.213.196.246/32", + "20.215.126.164/30", + "20.215.126.176/28", + "20.216.91.228/30", + "20.216.91.240/28", "20.218.190.100/31", "20.218.190.102/32", "20.220.1.122/32", @@ -14561,95 +14818,307 @@ "20.233.132.204/32", "20.236.151.78/31", "20.236.151.80/32", + "20.244.208.240/28", + "20.244.209.0/30", + "48.193.52.64/29", + "48.193.52.80/28", + "48.195.243.80/28", + "48.196.105.8/29", + "48.196.105.32/28", + "48.197.95.248/29", + "48.197.97.112/28", + "48.198.105.48/29", + "48.198.105.64/28", + "48.200.122.44/30", + "48.200.122.48/28", + "48.209.122.100/30", + "48.209.124.112/28", + "48.219.8.164/30", + "48.219.8.176/28", "48.220.60.11/32", "48.220.63.16/31", + "48.223.50.160/28", + "51.4.153.184/30", + "51.4.154.16/28", + "51.59.63.80/28", + "51.59.63.96/30", "51.142.130.45/32", "51.142.130.46/31", "51.142.131.209/32", "51.142.131.216/31", "52.148.40.60/31", "52.148.40.62/32", + "52.185.221.184/30", + "52.185.221.192/28", + "52.239.25.188/30", + "52.240.192.160/28", + "52.240.192.176/30", + "52.255.26.120/30", + "52.255.26.224/28", + "57.156.5.48/28", + "57.156.5.64/30", + "57.158.19.144/28", + "57.159.168.100/30", + "57.159.168.112/28", + "68.210.59.152/30", + "68.210.59.160/28", "68.220.37.120/31", "68.220.37.122/32", "70.156.77.156/31", "70.156.77.158/32", "70.156.77.192/30", "70.156.77.196/31", + "70.157.162.76/30", + "70.157.162.96/28", + "72.145.17.240/28", + "72.145.28.16/30", + "72.147.11.164/30", + "72.152.153.32/30", + "74.161.236.16/28", + "74.161.236.32/30", + "74.225.43.244/30", + "74.225.44.0/28", + "74.225.114.208/28", + "74.225.114.224/30", "74.242.188.220/31", "74.242.188.222/32", + "85.211.234.224/28", + "85.211.234.240/30", "98.66.128.32/31", "98.66.128.34/32", "128.203.48.24/31", + "134.138.216.0/28", + "134.138.216.16/30", + "158.158.129.76/30", + "158.158.129.144/28", + "167.105.250.44/30", + "167.105.250.64/28", + "172.165.75.216/30", + "172.165.76.64/28", + "172.175.149.36/30", + "172.175.150.80/28", + "172.184.49.48/28", + "172.192.184.104/30", + "172.192.184.128/28", + "172.194.87.240/29", + "172.194.89.0/28", + "172.195.54.180/30", + "172.195.54.192/28", + "172.196.61.108/30", + "172.196.61.128/28", + "172.209.112.240/28", + "172.209.113.0/30", "172.213.201.4/32", "172.213.201.6/31", + "2603:1000:4:7::158/126", + "2603:1000:4:7::380/124", "2603:1000:104:3::1e2/127", "2603:1000:104:3::1e8/128", + "2603:1000:104:a::1b0/124", + "2603:1000:104:a::720/126", "2603:1010:6:4::440/127", "2603:1010:6:4::442/128", + "2603:1010:6:d::2f4/126", + "2603:1010:6:d::3a0/124", + "2603:1010:207:4::150/124", + "2603:1010:207:4::160/126", + "2603:1010:304:a::264/126", + "2603:1010:304:a::270/124", + "2603:1010:404:8::98/126", + "2603:1010:404:8::a0/124", + "2603:1010:502:5::4b0/124", + "2603:1010:502:5::520/126", "2603:1020:5:9::280/127", "2603:1020:5:9::282/128", + "2603:1020:5:1a::7a4/126", + "2603:1020:5:1a::7c0/124", + "2603:1020:104:6::584/126", + "2603:1020:104:7::390/124", "2603:1020:206:b::a6/127", "2603:1020:206:b::ac/128", + "2603:1020:206:21::670/124", + "2603:1020:206:21::7a0/126", "2603:1020:605:3::a2/127", "2603:1020:605:3::a8/128", + "2603:1020:605:a::4fb/128", + "2603:1020:605:b::288/126", + "2603:1020:605:b::28c/127", + "2603:1020:605:b::290/124", "2603:1020:705:3::222/127", "2603:1020:705:3::230/128", + "2603:1020:705:14::398/126", + "2603:1020:705:14::3b0/124", "2603:1020:805:3::204/126", "2603:1020:805:3::208/127", + "2603:1020:805:d::348/126", + "2603:1020:805:d::400/124", "2603:1020:905:9::124/126", "2603:1020:905:9::130/127", + "2603:1020:905:9::4f4/126", + "2603:1020:905:9::4f8/127", + "2603:1020:905:9::4fa/128", + "2603:1020:905:9::540/124", "2603:1020:a04:7::4c/127", "2603:1020:a04:7::4e/128", + "2603:1020:a04:9::d0/124", + "2603:1020:a04:9::500/126", + "2603:1020:b04:7::7d8/126", + "2603:1020:b04:9::40/124", "2603:1020:c04:1::100/127", "2603:1020:c04:1::102/128", + "2603:1020:c04:a::418/126", + "2603:1020:c04:a::450/124", + "2603:1020:c04:a::79c/126", + "2603:1020:c04:a::7c0/124", + "2603:1020:d04:9::538/126", + "2603:1020:d04:9::700/124", "2603:1020:e04:3::4f6/127", "2603:1020:e04:3::4fc/128", + "2603:1020:e04:b::394/126", + "2603:1020:e04:b::3a0/124", + "2603:1020:f04:9::548/126", + "2603:1020:f04:9::550/124", "2603:1020:1004:3::212/127", "2603:1020:1004:3::214/128", + "2603:1020:1004:c::230/124", + "2603:1020:1004:c::2a0/126", + "2603:1020:1104:6::6f8/126", + "2603:1020:1104:7::720/124", "2603:1020:1204:1::204/127", "2603:1020:1204:1::206/128", "2603:1020:1204:3::56b/128", "2603:1020:1204:3::608/127", + "2603:1020:1204:7::35c/126", + "2603:1020:1204:7::420/124", + "2603:1020:1302:5::5d4/126", + "2603:1020:1302:5::780/124", "2603:1020:1403:4::17d/128", "2603:1020:1403:4::17e/127", + "2603:1020:1403:7::280/124", + "2603:1020:1403:7::290/126", + "2603:1020:1502:3::664/126", + "2603:1020:1502:5::220/124", + "2603:1020:1602:4::3c4/126", + "2603:1020:1602:4::540/124", "2603:1030:f:8::420/127", "2603:1030:f:8::422/128", + "2603:1030:f:f::3d8/126", + "2603:1030:f:f::400/124", "2603:1030:10:b::1a8/127", "2603:1030:10:b::1aa/128", + "2603:1030:10:1f::14/126", + "2603:1030:10:1f::60/124", "2603:1030:210:d::2a8/127", "2603:1030:210:d::2aa/128", + "2603:1030:210:2d::290/124", + "2603:1030:210:2d::2c0/126", "2603:1030:40b:6::660/127", "2603:1030:40b:6::662/128", + "2603:1030:40b:10::124/126", + "2603:1030:40b:10::130/124", "2603:1030:40c:b::2ac/127", "2603:1030:40c:b::2ae/128", + "2603:1030:40c:24::a8/126", + "2603:1030:40c:24::b0/124", "2603:1030:504:7::260/127", "2603:1030:504:7::262/128", + "2603:1030:504:14::2ec/126", + "2603:1030:504:14::400/124", + "2603:1030:608:14::404/126", + "2603:1030:608:14::410/124", + "2603:1030:702:7::a8/126", + "2603:1030:702:7::b0/124", "2603:1030:807:7::4c0/127", "2603:1030:807:7::4c2/128", + "2603:1030:807:15::36c/126", + "2603:1030:807:15::460/124", "2603:1030:a07:b::530/127", "2603:1030:a07:b::532/128", + "2603:1030:a07:20::6cc/126", + "2603:1030:a07:20::6d0/124", "2603:1030:b04:3::472/127", "2603:1030:b04:3::474/128", + "2603:1030:b04:d::47c/126", + "2603:1030:b04:e::160/124", "2603:1030:c06:a::370/127", "2603:1030:c06:a::372/128", + "2603:1030:c06:20::440/124", + "2603:1030:c06:20::450/126", "2603:1030:f05:4::224/127", "2603:1030:f05:4::226/128", + "2603:1030:f05:d::38/126", + "2603:1030:f05:d::50/124", "2603:1030:1005::128/127", "2603:1030:1005::12a/128", + "2603:1030:1005:b::6cc/126", + "2603:1030:1005:b::6d0/124", + "2603:1030:1102:4::570/124", + "2603:1030:1102:4::660/126", + "2603:1030:1602:4::400/123", + "2603:1030:1702:4::460/123", "2603:1040:5:3::5b2/127", "2603:1040:5:3::5ec/128", + "2603:1040:5:16::268/126", + "2603:1040:5:16::270/124", "2603:1040:207:6::c0/127", "2603:1040:207:6::c2/128", + "2603:1040:207:10::618/126", + "2603:1040:207:10::630/124", "2603:1040:407:7::80/127", "2603:1040:407:7::82/128", + "2603:1040:407:e::250/124", + "2603:1040:407:e::260/126", + "2603:1040:606:b::580/124", + "2603:1040:606:b::590/126", + "2603:1040:806:8::310/124", + "2603:1040:806:8::320/126", "2603:1040:904:3::29c/127", "2603:1040:904:3::29e/128", + "2603:1040:904:8::470/124", + "2603:1040:904:8::4a0/126", "2603:1040:a06:3::250/127", "2603:1040:a06:3::252/128", + "2603:1040:a06:c::3d0/124", + "2603:1040:a06:c::400/126", + "2603:1040:b04:8::12c/126", + "2603:1040:b04:8::430/124", + "2603:1040:c06:b::220/124", + "2603:1040:c06:b::230/126", + "2603:1040:d04:7::14c/126", + "2603:1040:d04:7::2b0/124", + "2603:1040:e05:9::458/126", + "2603:1040:e05:9::660/124", "2603:1040:f05:7::3c/127", "2603:1040:f05:7::3e/128", + "2603:1040:f05:c::50/124", + "2603:1040:f05:c::60/126", + "2603:1040:1002:8::428/126", + "2603:1040:1002:8::430/124", + "2603:1040:1104:6::608/126", + "2603:1040:1104:6::610/124", + "2603:1040:1202:5::598/126", + "2603:1040:1202:5::620/124", + "2603:1040:1302:6::718/126", + "2603:1040:1302:6::7a0/124", + "2603:1040:1402:5::53c/126", + "2603:1040:1402:8::340/124", + "2603:1040:1602:4::5fc/126", + "2603:1040:1602:4::750/124", + "2603:1040:1702:4::564/126", + "2603:1040:1702:4::630/124", + "2603:1040:1802:4::728/126", + "2603:1040:1802:4::730/124", + "2603:1040:1802:5::680/123", + "2603:1040:1a02:4::460/123", + "2603:1040:1b02:4::4a0/123", "2603:1050:6:3::480/127", - "2603:1050:6:3::482/128" + "2603:1050:6:3::482/128", + "2603:1050:6:b::314/126", + "2603:1050:6:b::340/124", + "2603:1050:301:4::51c/126", + "2603:1050:301:4::5a0/124", + "2603:1050:403:7::5e0/124", + "2603:1050:403:7::5f0/126" ], "networkFeatures": [ "NSG", @@ -14663,7 +15132,7 @@ "name": "AzureMonitor", "id": "AzureMonitor", "properties": { - "changeNumber": 167, + "changeNumber": 173, "region": "", "regionId": 0, "platform": "Azure", @@ -14671,15 +15140,25 @@ "addressPrefixes": [ "4.144.10.32/27", "4.144.10.64/26", + "4.145.8.112/28", + "4.145.16.160/28", "4.145.79.224/27", "4.149.98.72/29", "4.149.105.176/29", "4.158.131.160/27", "4.158.131.192/26", + "4.159.235.208/28", + "4.161.10.112/28", + "4.165.111.96/28", "4.172.75.0/24", + "4.172.83.112/28", + "4.172.95.192/28", "4.174.145.0/27", "4.174.145.64/26", + "4.176.24.16/28", + "4.176.30.32/28", "4.176.48.0/24", + "4.177.29.144/28", "4.178.131.0/26", "4.181.24.32/27", "4.181.24.64/26", @@ -14689,41 +15168,66 @@ "4.184.2.128/26", "4.185.34.128/26", "4.185.34.192/27", + "4.185.224.224/28", + "4.185.231.176/28", "4.186.1.0/24", "4.187.64.64/27", "4.187.91.32/27", "4.187.91.64/26", + "4.188.8.112/28", "4.189.204.0/24", "4.190.142.192/27", "4.190.143.128/26", "4.190.147.0/29", "4.190.147.16/28", "4.190.147.48/29", + "4.191.84.192/28", "4.192.252.224/27", "4.192.253.128/26", "4.195.7.0/26", "4.195.7.64/27", + "4.195.110.160/28", + "4.196.130.224/28", "4.198.43.32/27", "4.198.43.64/26", "4.198.160.88/29", "4.198.162.0/29", + "4.199.44.144/28", "4.199.83.204/31", "4.199.90.136/29", "4.199.90.240/28", "4.199.130.64/27", "4.199.196.192/27", "4.199.196.224/28", + "4.199.208.240/28", + "4.199.209.16/28", "4.201.211.64/26", "4.201.211.128/27", + "4.201.241.48/28", + "4.201.241.144/28", "4.203.122.64/27", "4.203.122.128/26", "4.207.185.0/24", "4.207.252.128/27", "4.207.252.192/26", + "4.209.249.192/26", "4.213.26.192/27", "4.213.29.64/26", + "4.216.1.176/28", + "4.216.2.16/28", + "4.217.214.16/28", "4.220.142.192/27", "4.220.152.128/26", + "4.220.236.224/28", + "4.220.240.16/28", + "4.221.45.192/28", + "4.221.222.48/28", + "4.223.182.144/28", + "4.226.76.224/28", + "4.226.250.64/28", + "4.226.252.176/28", + "4.230.123.96/28", + "4.231.242.128/26", "4.232.52.64/27", "4.232.54.0/26", "4.232.98.110/31", @@ -14741,16 +15245,23 @@ "4.236.114.96/28", "4.237.170.160/27", "4.237.173.128/26", + "4.238.11.96/28", + "4.238.15.0/28", "4.239.77.0/26", "4.239.77.64/27", "4.240.149.32/27", "4.240.149.64/26", + "4.241.51.16/28", "4.243.42.64/27", "4.243.44.128/26", "4.243.139.224/27", "4.243.140.0/28", + "4.243.153.128/28", + "4.243.158.192/28", "4.244.170.0/27", "4.244.170.32/28", + "4.244.175.112/28", + "4.247.186.32/28", "4.248.99.64/27", "4.248.99.128/26", "4.250.1.104/29", @@ -14761,6 +15272,10 @@ "9.160.53.216/30", "9.160.56.0/26", "9.160.58.132/30", + "9.160.66.176/28", + "9.160.70.96/27", + "9.160.70.128/27", + "9.160.70.160/28", "9.160.84.32/29", "9.160.84.48/28", "9.160.90.136/29", @@ -14774,6 +15289,9 @@ "9.205.45.216/30", "9.205.48.0/26", "9.205.50.56/30", + "9.205.59.96/28", + "9.205.62.0/26", + "9.205.62.64/28", "9.205.74.136/29", "9.205.74.240/28", "9.205.98.136/29", @@ -14782,6 +15300,10 @@ "9.205.114.240/28", "9.235.22.224/27", "9.235.23.0/28", + "9.235.70.80/28", + "9.235.170.208/28", + "9.235.171.24/29", + "9.235.171.32/28", "13.65.96.175/32", "13.65.206.67/32", "13.65.211.125/32", @@ -14925,6 +15447,7 @@ "13.93.236.73/32", "13.94.39.13/32", "20.6.62.0/24", + "20.6.185.208/28", "20.9.155.144/28", "20.14.121.192/27", "20.14.121.240/28", @@ -14982,6 +15505,7 @@ "20.36.125.224/27", "20.36.144.166/31", "20.36.150.0/29", + "20.37.59.32/28", "20.37.71.0/27", "20.37.74.232/29", "20.37.74.240/28", @@ -15079,6 +15603,7 @@ "20.45.123.116/30", "20.45.125.224/28", "20.45.127.64/29", + "20.45.150.80/28", "20.45.208.32/29", "20.46.10.224/27", "20.46.12.196/30", @@ -15124,6 +15649,8 @@ "20.51.9.0/26", "20.51.17.64/27", "20.51.33.0/24", + "20.51.41.192/26", + "20.51.48.192/26", "20.52.64.24/29", "20.52.64.32/27", "20.52.65.96/28", @@ -15139,10 +15666,14 @@ "20.53.60.224/31", "20.53.63.96/29", "20.58.66.96/27", + "20.58.72.16/28", + "20.58.79.176/28", "20.58.120.0/26", "20.59.81.12/31", + "20.59.214.64/26", "20.61.99.64/27", "20.62.132.0/25", + "20.63.252.80/28", "20.65.1.64/28", "20.65.132.0/26", "20.66.2.192/26", @@ -15158,9 +15689,12 @@ "20.83.192.192/29", "20.83.195.120/29", "20.87.86.208/28", + "20.88.80.0/27", "20.89.1.32/29", "20.91.12.240/29", "20.91.13.0/27", + "20.91.44.0/28", + "20.91.89.192/28", "20.91.102.96/27", "20.91.112.0/26", "20.91.146.64/27", @@ -15171,6 +15705,8 @@ "20.100.7.0/27", "20.100.7.48/28", "20.111.2.192/27", + "20.111.68.240/28", + "20.111.71.160/28", "20.111.72.96/27", "20.111.78.0/29", "20.111.78.8/30", @@ -15204,6 +15740,8 @@ "20.166.40.64/28", "20.167.131.24/29", "20.167.131.80/30", + "20.167.183.208/28", + "20.167.212.144/28", "20.168.163.200/29", "20.168.167.16/29", "20.168.190.160/27", @@ -15212,6 +15750,12 @@ "20.170.175.192/27", "20.170.231.112/28", "20.170.241.64/27", + "20.170.248.32/28", + "20.170.249.240/28", + "20.172.72.80/28", + "20.172.117.0/28", + "20.173.60.224/28", + "20.174.245.64/28", "20.175.2.254/31", "20.175.5.128/29", "20.175.5.136/31", @@ -15271,6 +15815,8 @@ "20.195.82.160/27", "20.195.154.32/29", "20.199.203.80/29", + "20.200.5.48/28", + "20.200.12.128/28", "20.200.162.168/29", "20.200.166.138/31", "20.200.166.140/30", @@ -15319,9 +15865,13 @@ "20.215.29.160/28", "20.215.76.160/27", "20.215.76.192/26", + "20.215.120.80/28", + "20.215.127.16/28", "20.215.158.128/29", "20.215.158.144/28", "20.215.168.224/27", + "20.216.92.16/28", + "20.216.92.48/28", "20.217.9.0/27", "20.217.40.40/31", "20.217.44.250/31", @@ -15348,6 +15898,7 @@ "20.241.112.224/29", "20.241.119.32/28", "20.244.198.224/27", + "20.244.209.32/28", "23.96.28.38/32", "23.96.252.161/32", "23.96.252.216/32", @@ -15431,6 +15982,9 @@ "40.74.249.98/32", "40.75.34.40/29", "40.75.35.64/29", + "40.75.147.224/27", + "40.75.149.224/27", + "40.75.151.0/26", "40.76.29.55/32", "40.76.53.225/32", "40.77.17.183/32", @@ -15560,9 +16114,14 @@ "40.127.84.197/32", "40.127.144.141/32", "48.192.43.0/24", + "48.193.48.80/28", + "48.193.48.96/27", + "48.193.48.144/28", + "48.193.48.160/27", "48.194.1.84/30", "48.194.1.88/29", "48.194.2.0/24", + "48.195.230.64/26", "48.196.100.64/28", "48.196.100.80/31", "48.196.100.96/27", @@ -15571,6 +16130,14 @@ "48.197.92.0/31", "48.197.92.32/27", "48.197.92.64/27", + "48.198.101.192/28", + "48.198.101.208/31", + "48.198.101.224/27", + "48.198.102.0/27", + "48.199.6.0/26", + "48.199.135.192/26", + "48.200.60.192/26", + "48.202.71.0/26", "48.215.146.8/29", "48.215.146.112/28", "48.215.167.96/27", @@ -15581,21 +16148,29 @@ "48.216.33.4/30", "48.216.33.48/29", "48.216.33.192/26", + "48.219.9.32/27", + "48.219.9.64/27", "48.219.203.242/31", "48.219.205.208/29", "48.219.205.216/30", "48.219.208.0/26", "48.219.210.0/30", + "48.219.221.128/26", "48.219.236.48/29", "48.219.236.96/28", "48.221.170.8/29", "48.221.170.112/28", "48.223.21.160/27", "48.223.21.192/26", + "48.223.29.192/28", + "48.223.56.32/28", "51.4.131.242/31", "51.4.133.208/29", "51.4.133.216/30", "51.4.136.0/26", + "51.4.150.240/28", + "51.4.154.48/28", + "51.4.154.64/26", "51.4.164.48/29", "51.4.164.96/28", "51.11.97.96/27", @@ -15657,6 +16232,8 @@ "51.57.106.64/26", "51.58.25.224/27", "51.58.26.0/28", + "51.58.31.112/28", + "51.59.56.160/28", "51.103.203.200/29", "51.103.205.176/28", "51.104.8.104/29", @@ -15868,6 +16445,7 @@ "52.185.132.101/32", "52.185.132.170/32", "52.185.215.171/32", + "52.185.216.64/26", "52.186.121.41/32", "52.186.126.31/32", "52.188.247.144/28", @@ -15910,6 +16488,9 @@ "52.236.189.88/29", "52.237.34.41/32", "52.237.157.70/32", + "52.238.33.64/26", + "52.238.33.128/27", + "52.240.193.64/26", "52.240.244.144/29", "52.240.244.236/31", "52.240.245.64/28", @@ -15922,6 +16503,7 @@ "52.246.157.16/28", "52.246.158.160/29", "52.247.202.90/32", + "52.249.21.192/26", "52.250.228.8/29", "52.250.228.16/28", "52.250.228.32/31", @@ -15938,6 +16520,10 @@ "57.153.246.192/26", "57.154.128.96/29", "57.155.35.64/26", + "57.156.5.112/28", + "57.156.5.128/27", + "57.156.5.176/28", + "57.156.5.192/27", "65.52.2.145/32", "65.52.5.76/32", "65.52.122.208/32", @@ -15945,6 +16531,12 @@ "65.52.250.240/28", "68.154.137.88/29", "68.154.140.80/28", + "68.154.151.96/27", + "68.154.151.128/27", + "68.210.30.192/28", + "68.210.59.224/27", + "68.210.60.16/28", + "68.210.60.32/27", "68.210.154.184/29", "68.210.156.48/28", "68.210.172.150/31", @@ -15962,6 +16554,7 @@ "68.211.15.32/27", "68.211.15.64/27", "68.211.20.248/30", + "68.211.31.144/28", "68.211.154.184/29", "68.211.156.48/28", "68.211.170.224/29", @@ -15986,6 +16579,7 @@ "68.221.149.160/28", "68.221.157.64/29", "68.221.157.80/28", + "70.153.90.160/28", "70.153.166.192/29", "70.153.166.200/30", "70.153.166.204/31", @@ -15997,8 +16591,11 @@ "70.153.203.16/28", "70.153.219.0/29", "70.153.219.16/28", + "70.156.172.224/28", + "70.157.78.144/28", "70.157.90.8/29", "70.157.90.112/28", + "70.157.162.144/28", "72.152.228.64/26", "72.152.228.128/26", "72.153.208.8/29", @@ -16010,19 +16607,26 @@ "74.7.56.88/30", "74.7.56.92/31", "74.7.56.128/26", + "74.7.65.192/26", "74.7.83.32/29", "74.7.83.48/28", "74.7.192.128/28", "74.7.192.144/31", "74.7.192.160/27", "74.7.192.192/27", + "74.7.201.192/26", "74.7.218.224/29", "74.7.218.240/28", "74.161.189.192/26", "74.161.190.0/27", + "74.161.238.224/28", "74.162.220.32/27", "74.162.220.64/26", "74.224.208.66/31", + "74.225.41.48/28", + "74.225.44.96/28", + "74.225.110.144/28", + "74.225.115.0/28", "74.240.192.64/26", "74.240.192.128/27", "74.242.4.14/31", @@ -16034,6 +16638,11 @@ "74.243.7.0/26", "74.243.21.0/29", "74.243.21.16/28", + "74.243.172.240/28", + "85.211.140.176/28", + "85.211.235.160/27", + "85.211.235.208/28", + "85.211.235.224/27", "98.66.146.96/27", "98.70.128.0/26", "102.37.64.128/27", @@ -16116,8 +16725,10 @@ "134.138.82.152/30", "134.138.82.156/31", "134.138.82.192/26", + "134.138.94.192/26", "134.138.98.136/29", "134.138.98.240/28", + "134.138.212.16/28", "135.116.174.224/27", "135.116.175.0/26", "135.149.221.64/26", @@ -16126,6 +16737,7 @@ "135.225.42.192/26", "135.235.60.96/27", "135.235.60.128/28", + "135.235.62.80/28", "137.116.82.175/32", "137.116.146.215/32", "137.116.151.139/32", @@ -16151,10 +16763,14 @@ "158.23.205.64/26", "158.158.61.192/27", "158.158.61.224/28", + "158.158.131.80/28", "167.105.106.8/29", "167.105.106.112/28", "167.105.144.192/27", "167.105.145.0/26", + "167.105.220.96/28", + "167.105.250.104/29", + "167.105.250.112/28", "168.61.142.0/27", "168.61.179.178/32", "168.61.239.96/27", @@ -16165,10 +16781,17 @@ "172.160.223.224/27", "172.164.215.64/27", "172.164.238.64/26", + "172.165.84.176/28", "172.169.155.0/24", + "172.170.16.192/26", + "172.170.178.64/26", "172.173.8.80/28", "172.173.44.224/27", "172.173.45.0/26", + "172.175.111.64/27", + "172.175.111.96/28", + "172.175.178.208/28", + "172.175.179.32/27", "172.178.163.16/29", "172.178.163.24/30", "172.178.163.32/27", @@ -16182,6 +16805,7 @@ "172.187.35.192/26", "172.187.86.96/27", "172.187.86.192/26", + "172.192.184.208/28", "172.194.81.104/29", "172.194.82.224/29", "172.194.82.232/31", @@ -16190,6 +16814,11 @@ "172.194.112.224/28", "172.195.21.16/28", "172.195.21.32/27", + "172.195.23.112/28", + "172.195.54.240/28", + "172.196.61.176/28", + "172.196.61.192/27", + "172.196.62.0/27", "172.198.96.216/29", "172.198.98.160/29", "172.198.98.168/31", @@ -16211,6 +16840,7 @@ "172.204.195.16/28", "172.204.211.0/29", "172.204.211.16/28", + "172.204.252.112/28", "172.205.152.16/28", "172.205.153.24/29", "172.207.65.64/27", @@ -16219,6 +16849,8 @@ "172.209.15.64/26", "172.209.100.0/27", "172.209.100.32/28", + "172.209.100.144/28", + "172.209.113.48/28", "172.209.231.0/26", "172.209.231.64/27", "172.210.218.224/29", @@ -16261,6 +16893,9 @@ "2603:1000:4:2::500/121", "2603:1000:4:2::7c0/123", "2603:1000:4:5::/122", + "2603:1000:4:7::e0/124", + "2603:1000:4:7::200/120", + "2603:1000:4:7::3c0/123", "2603:1000:4:402::500/121", "2603:1000:104::4c0/122", "2603:1000:104::600/122", @@ -16269,6 +16904,9 @@ "2603:1000:104:2::80/121", "2603:1000:104:6::/122", "2603:1000:104:6::40/123", + "2603:1000:104:9::540/124", + "2603:1000:104:a::600/120", + "2603:1000:104:a::7a0/123", "2603:1000:104:402::500/121", "2603:1000:104:802::480/121", "2603:1000:104:c02::480/121", @@ -16280,6 +16918,9 @@ "2603:1010:6:1::280/122", "2603:1010:6:7::/122", "2603:1010:6:7::40/123", + "2603:1010:6:c::7f0/124", + "2603:1010:6:e::100/120", + "2603:1010:6:e::480/123", "2603:1010:6:402::500/121", "2603:1010:6:802::480/121", "2603:1010:6:802::500/121", @@ -16292,6 +16933,9 @@ "2603:1010:101:6::/122", "2603:1010:101:402::500/121", "2603:1010:207:1::180/121", + "2603:1010:207:3::210/124", + "2603:1010:207:4::/120", + "2603:1010:207:4::340/123", "2603:1010:300::35/128", "2603:1010:300::88/128", "2603:1010:304::780/121", @@ -16300,6 +16944,10 @@ "2603:1010:304:5::380/122", "2603:1010:304:5::500/121", "2603:1010:304:5::7e0/123", + "2603:1010:304:9::500/124", + "2603:1010:304:a::300/120", + "2603:1010:304:a::520/124", + "2603:1010:304:a::540/123", "2603:1010:304:402::500/121", "2603:1010:400::79/128", "2603:1010:404::780/121", @@ -16308,6 +16956,8 @@ "2603:1010:404:5::420/123", "2603:1010:404:5::440/122", "2603:1010:404:5::600/121", + "2603:1010:404:7::450/124", + "2603:1010:404:8::e0/123", "2603:1010:404:402::500/121", "2603:1010:501:8::10/127", "2603:1010:502:2::4a0/123", @@ -16315,6 +16965,8 @@ "2603:1010:502:2::640/123", "2603:1010:502:2::680/121", "2603:1010:502:2::700/121", + "2603:1010:502:5::310/124", + "2603:1010:502:5::5a0/123", "2603:1020:5::60/123", "2603:1020:5::1c0/122", "2603:1020:5::300/123", @@ -16324,6 +16976,9 @@ "2603:1020:5:b::40/122", "2603:1020:5:b::120/123", "2603:1020:5:b::140/123", + "2603:1020:5:1a::240/122", + "2603:1020:5:1b::100/120", + "2603:1020:5:1b::300/122", "2603:1020:5:402::500/121", "2603:1020:5:802::480/121", "2603:1020:5:c02::480/121", @@ -16333,6 +16988,8 @@ "2603:1020:104:3::340/123", "2603:1020:104:3::380/121", "2603:1020:104:3::400/121", + "2603:1020:104:6::4e0/124", + "2603:1020:104:7::3c0/123", "2603:1020:200::682f:a517/128", "2603:1020:200::682f:a52a/128", "2603:1020:200::682f:a6f1/128", @@ -16345,6 +17002,9 @@ "2603:1020:206:10::40/122", "2603:1020:206:10::120/123", "2603:1020:206:10::140/123", + "2603:1020:206:21::380/122", + "2603:1020:206:22::/120", + "2603:1020:206:22::3c0/122", "2603:1020:206:402::500/121", "2603:1020:206:802::480/121", "2603:1020:206:c00::100/121", @@ -16360,6 +17020,9 @@ "2603:1020:605:3::/121", "2603:1020:605:7::400/123", "2603:1020:605:7::440/122", + "2603:1020:605:a::5d0/124", + "2603:1020:605:b::600/120", + "2603:1020:605:b::700/123", "2603:1020:605:402::500/121", "2603:1020:700:1::a4/128", "2603:1020:702:1d::2/128", @@ -16372,6 +17035,9 @@ "2603:1020:705:1::280/122", "2603:1020:705:8::260/123", "2603:1020:705:a::200/122", + "2603:1020:705:14::280/124", + "2603:1020:705:15::/120", + "2603:1020:705:15::420/123", "2603:1020:705:402::500/121", "2603:1020:705:802::480/121", "2603:1020:705:c02::480/121", @@ -16383,6 +17049,9 @@ "2603:1020:805:1::280/122", "2603:1020:805:3::3c0/123", "2603:1020:805:7::/122", + "2603:1020:805:d::130/124", + "2603:1020:805:d::500/120", + "2603:1020:805:d::7a0/123", "2603:1020:805:402::500/121", "2603:1020:805:802::480/121", "2603:1020:805:c02::480/121", @@ -16392,6 +17061,8 @@ "2603:1020:905:5::700/121", "2603:1020:905:6::e0/123", "2603:1020:905:6::100/122", + "2603:1020:905:9::1f0/124", + "2603:1020:905:9::700/123", "2603:1020:905:402::500/121", "2603:1020:a01:24::8/128", "2603:1020:a04::60/123", @@ -16402,6 +17073,9 @@ "2603:1020:a04:1::280/122", "2603:1020:a04:3::7e0/123", "2603:1020:a04:7::/122", + "2603:1020:a04:8::590/124", + "2603:1020:a04:9::5c0/123", + "2603:1020:a04:9::600/120", "2603:1020:a04:402::500/121", "2603:1020:a04:800::100/121", "2603:1020:a04:c02::480/121", @@ -16411,6 +17085,8 @@ "2603:1020:b04:1::300/121", "2603:1020:b04:2::500/121", "2603:1020:b04:6::60/123", + "2603:1020:b04:7::360/124", + "2603:1020:b04:9::80/123", "2603:1020:b04:402::500/121", "2603:1020:c01:2::b/128", "2603:1020:c01:2::e/128", @@ -16422,6 +17098,9 @@ "2603:1020:c04:1::280/122", "2603:1020:c04:5::5c0/122", "2603:1020:c04:5::600/122", + "2603:1020:c04:a::160/124", + "2603:1020:c04:a::500/120", + "2603:1020:c04:b::20/123", "2603:1020:c04:402::500/121", "2603:1020:c04:800::100/121", "2603:1020:c04:c02::480/121", @@ -16432,6 +17111,9 @@ "2603:1020:d04:5::400/122", "2603:1020:d04:5::580/121", "2603:1020:d04:5::7c0/123", + "2603:1020:d04:9::2a0/124", + "2603:1020:d04:9::400/120", + "2603:1020:d04:9::740/123", "2603:1020:d04:402::500/121", "2603:1020:e04::60/123", "2603:1020:e04::1c0/122", @@ -16441,6 +17123,9 @@ "2603:1020:e04:1::280/122", "2603:1020:e04:4::6e0/123", "2603:1020:e04:4::700/122", + "2603:1020:e04:b::a0/124", + "2603:1020:e04:c::/120", + "2603:1020:e04:c::180/123", "2603:1020:e04:402::500/121", "2603:1020:e04:802::480/121", "2603:1020:e04:c00::80/121", @@ -16450,6 +17135,8 @@ "2603:1020:f04:6::400/122", "2603:1020:f04:6::580/121", "2603:1020:f04:6::7c0/123", + "2603:1020:f04:9::220/124", + "2603:1020:f04:9::580/123", "2603:1020:f04:402::500/121", "2603:1020:1001:6::1/128", "2603:1020:1004::280/122", @@ -16459,6 +17146,9 @@ "2603:1020:1004:3::300/121", "2603:1020:1004:6::c0/123", "2603:1020:1004:6::100/122", + "2603:1020:1004:c::110/124", + "2603:1020:1004:c::700/120", + "2603:1020:1004:d::80/123", "2603:1020:1004:400::420/123", "2603:1020:1004:400::4a0/123", "2603:1020:1004:400::580/121", @@ -16474,6 +17164,8 @@ "2603:1020:1104:2::480/121", "2603:1020:1104:2::740/123", "2603:1020:1104:2::780/122", + "2603:1020:1104:6::6e0/124", + "2603:1020:1104:7::7a0/123", "2603:1020:1104:400::440/123", "2603:1020:1104:400::480/121", "2603:1020:1200:4::10/128", @@ -16484,6 +17176,9 @@ "2603:1020:1204:2::400/120", "2603:1020:1204:3::5a0/123", "2603:1020:1204:3::5c0/122", + "2603:1020:1204:7::130/124", + "2603:1020:1204:7::500/120", + "2603:1020:1204:7::620/123", "2603:1020:1300:4::a/127", "2603:1020:1302:1::5e0/123", "2603:1020:1302:2::/122", @@ -16492,17 +17187,29 @@ "2603:1020:1302:2::680/121", "2603:1020:1302:3::180/123", "2603:1020:1302:3::1c0/122", + "2603:1020:1302:5::3e0/124", + "2603:1020:1302:5::600/120", + "2603:1020:1302:5::7e0/123", "2603:1020:1402:7::13/128", "2603:1020:1402:7::14/128", "2603:1020:1403:2::/123", "2603:1020:1403:2::40/122", "2603:1020:1403:2::380/121", "2603:1020:1403:2::400/120", + "2603:1020:1403:7::110/124", + "2603:1020:1403:7::300/120", + "2603:1020:1403:7::440/123", "2603:1020:1501:f::10/127", "2603:1020:1502:2::480/121", "2603:1020:1502:2::500/120", + "2603:1020:1502:3::670/124", + "2603:1020:1502:5::260/123", + "2603:1020:1601:8::f/128", + "2603:1020:1601:8::18/128", "2603:1020:1602:2::480/121", "2603:1020:1602:2::500/120", + "2603:1020:1602:4::3d0/124", + "2603:1020:1602:4::580/123", "2603:1030:7::25/128", "2603:1030:7::d4/128", "2603:1030:7::155/128", @@ -16532,6 +17239,8 @@ "2603:1030:f:2::300/121", "2603:1030:f:a::c0/123", "2603:1030:f:a::100/122", + "2603:1030:f:e::3d0/124", + "2603:1030:f:f::500/120", "2603:1030:f:400::d00/121", "2603:1030:10::60/123", "2603:1030:10::1c0/122", @@ -16541,6 +17250,9 @@ "2603:1030:10:1::280/122", "2603:1030:10:d::4a0/123", "2603:1030:10:d::4c0/122", + "2603:1030:10:1e::280/122", + "2603:1030:10:1f::100/120", + "2603:1030:10:1f::440/122", "2603:1030:10:402::500/121", "2603:1030:10:802::480/121", "2603:1030:10:c02::480/121", @@ -16569,6 +17281,9 @@ "2603:1030:210:c::180/121", "2603:1030:210:f::5e0/123", "2603:1030:210:11::240/122", + "2603:1030:210:2c::500/122", + "2603:1030:210:2d::400/120", + "2603:1030:210:2e::80/122", "2603:1030:210:402::500/121", "2603:1030:210:802::480/121", "2603:1030:210:c00::100/121", @@ -16612,6 +17327,9 @@ "2603:1030:40b:2::300/121", "2603:1030:40b:8::640/123", "2603:1030:40b:8::680/122", + "2603:1030:40b:f::4c0/124", + "2603:1030:40b:10::500/120", + "2603:1030:40b:10::780/123", "2603:1030:40b:400::d00/121", "2603:1030:40b:800::400/121", "2603:1030:40b:c00::480/121", @@ -16624,6 +17342,11 @@ "2603:1030:40c:1::280/122", "2603:1030:40c:11::2c0/123", "2603:1030:40c:11::300/122", + "2603:1030:40c:23::1a0/123", + "2603:1030:40c:23::300/124", + "2603:1030:40c:24::200/120", + "2603:1030:40c:24::3f0/124", + "2603:1030:40c:24::440/122", "2603:1030:40c:402::500/121", "2603:1030:40c:802::480/121", "2603:1030:40c:c02::400/121", @@ -16644,6 +17367,9 @@ "2603:1030:504:2::760/126", "2603:1030:504:8::5c0/123", "2603:1030:504:9::140/122", + "2603:1030:504:14::130/124", + "2603:1030:504:15::/120", + "2603:1030:504:15::1c0/123", "2603:1030:504:402::500/121", "2603:1030:504:802::400/121", "2603:1030:504:c02::100/123", @@ -16655,6 +17381,9 @@ "2603:1030:608:1::300/121", "2603:1030:608:8::80/123", "2603:1030:608:8::c0/122", + "2603:1030:608:13::400/122", + "2603:1030:608:14::200/120", + "2603:1030:608:14::480/122", "2603:1030:608:402::500/121", "2603:1030:608:802::80/121", "2603:1030:608:c00::300/121", @@ -16663,6 +17392,9 @@ "2603:1030:702:2::40/122", "2603:1030:702:2::380/121", "2603:1030:702:2::400/120", + "2603:1030:702:6::6e0/124", + "2603:1030:702:7::100/120", + "2603:1030:702:7::220/123", "2603:1030:800:5::bfee:a0d4/128", "2603:1030:800:5::bfee:a1fc/128", "2603:1030:800:5::bfee:a2d3/128", @@ -16683,6 +17415,9 @@ "2603:1030:807:1::280/122", "2603:1030:807:9::200/123", "2603:1030:807:9::240/122", + "2603:1030:807:15::280/122", + "2603:1030:807:16::/120", + "2603:1030:807:16::200/122", "2603:1030:807:402::500/121", "2603:1030:807:802::480/121", "2603:1030:807:c02::480/121", @@ -16698,6 +17433,11 @@ "2603:1030:a07:9::320/123", "2603:1030:a07:e::a0/123", "2603:1030:a07:e::100/122", + "2603:1030:a07:20::440/122", + "2603:1030:a07:20::480/123", + "2603:1030:a07:21::300/120", + "2603:1030:a07:22::220/123", + "2603:1030:a07:22::240/122", "2603:1030:a07:402::380/121", "2603:1030:a07:800::/121", "2603:1030:a07:c00::300/121", @@ -16712,6 +17452,7 @@ "2603:1030:b00::4db/128", "2603:1030:b00::50d/128", "2603:1030:b00:13::190/128", + "2603:1030:b00:28::61/128", "2603:1030:b00:29::d/128", "2603:1030:b00:29::7e/128", "2603:1030:b04::780/121", @@ -16719,6 +17460,9 @@ "2603:1030:b04:1::300/121", "2603:1030:b04:6::780/123", "2603:1030:b04:6::7c0/122", + "2603:1030:b04:e::/122", + "2603:1030:b04:f::100/120", + "2603:1030:b04:f::2c0/122", "2603:1030:b04:402::500/121", "2603:1030:c02:2::285/128", "2603:1030:c02:2::2da/128", @@ -16727,6 +17471,7 @@ "2603:1030:c02:2::4e1/128", "2603:1030:c02:5::1d2/128", "2603:1030:c02:6::9/128", + "2603:1030:c02:6::19/128", "2603:1030:c02:6::1d/128", "2603:1030:c02:6::6b/128", "2603:1030:c06:1::280/122", @@ -16735,6 +17480,9 @@ "2603:1030:c06:2::300/121", "2603:1030:c06:c::320/123", "2603:1030:c06:d::/122", + "2603:1030:c06:20::240/122", + "2603:1030:c06:21::/120", + "2603:1030:c06:21::300/122", "2603:1030:c06:400::d00/121", "2603:1030:c06:802::400/121", "2603:1030:c06:c02::480/121", @@ -16752,6 +17500,9 @@ "2603:1030:f05:1::280/122", "2603:1030:f05:4::5a0/123", "2603:1030:f05:4::5c0/122", + "2603:1030:f05:c::40/124", + "2603:1030:f05:d::100/120", + "2603:1030:f05:d::3e0/123", "2603:1030:f05:402::500/121", "2603:1030:f05:802::480/121", "2603:1030:f05:c02::480/121", @@ -16762,6 +17513,9 @@ "2603:1030:1005:3::6a0/123", "2603:1030:1005:3::6c0/122", "2603:1030:1005:3::780/121", + "2603:1030:1005:b::80/124", + "2603:1030:1005:b::700/120", + "2603:1030:1005:c::180/123", "2603:1030:1005:402::500/121", "2603:1030:1102:2::3e0/123", "2603:1030:1102:2::4c0/122", @@ -16798,6 +17552,9 @@ "2603:1040:5:1::280/122", "2603:1040:5:8::5c0/123", "2603:1040:5:9::200/122", + "2603:1040:5:15::3f0/124", + "2603:1040:5:16::100/120", + "2603:1040:5:16::2e0/123", "2603:1040:5:402::500/121", "2603:1040:5:802::480/121", "2603:1040:5:c02::480/121", @@ -16806,6 +17563,9 @@ "2603:1040:207:1::300/121", "2603:1040:207:6::380/123", "2603:1040:207:6::3c0/122", + "2603:1040:207:f::6e0/124", + "2603:1040:207:11::/120", + "2603:1040:207:11::300/123", "2603:1040:207:402::500/121", "2603:1040:207:800::300/121", "2603:1040:207:c00::300/121", @@ -16817,6 +17577,9 @@ "2603:1040:407:1::280/122", "2603:1040:407:7::420/123", "2603:1040:407:7::440/122", + "2603:1040:407:b::5c0/124", + "2603:1040:407:e::300/120", + "2603:1040:407:e::4e0/123", "2603:1040:407:402::500/121", "2603:1040:407:802::480/121", "2603:1040:407:c00::100/121", @@ -16827,6 +17590,9 @@ "2603:1040:606:3::600/123", "2603:1040:606:3::780/121", "2603:1040:606:6::400/122", + "2603:1040:606:9::7d0/124", + "2603:1040:606:b::400/120", + "2603:1040:606:b::5e0/123", "2603:1040:606:402::500/121", "2603:1040:606:800::300/121", "2603:1040:606:c00::/121", @@ -16846,6 +17612,9 @@ "2603:1040:904:1::280/122", "2603:1040:904:3::680/123", "2603:1040:904:3::6c0/122", + "2603:1040:904:7::7b0/124", + "2603:1040:904:8::500/120", + "2603:1040:904:8::660/123", "2603:1040:904:402::500/121", "2603:1040:904:800::100/121", "2603:1040:904:c02::480/121", @@ -16857,6 +17626,9 @@ "2603:1040:a06:1::280/122", "2603:1040:a06:7::e0/123", "2603:1040:a06:7::100/122", + "2603:1040:a06:c::280/124", + "2603:1040:a06:c::500/120", + "2603:1040:a06:d::20/123", "2603:1040:a06:402::500/121", "2603:1040:a06:802::480/121", "2603:1040:a06:c02::480/121", @@ -16867,6 +17639,8 @@ "2603:1040:b04:5::300/123", "2603:1040:b04:5::340/122", "2603:1040:b04:5::480/121", + "2603:1040:b04:8::110/124", + "2603:1040:b04:8::4a0/123", "2603:1040:b04:402::500/121", "2603:1040:c06::780/121", "2603:1040:c06:1::280/123", @@ -16874,6 +17648,9 @@ "2603:1040:c06:6::500/121", "2603:1040:c06:6::600/123", "2603:1040:c06:6::640/122", + "2603:1040:c06:a::5a0/124", + "2603:1040:c06:b::100/120", + "2603:1040:c06:b::2a0/123", "2603:1040:c06:402::500/121", "2603:1040:d01:4::7/128", "2603:1040:d04::280/122", @@ -16883,6 +17660,9 @@ "2603:1040:d04:3::60/126", "2603:1040:d04:3::5c0/123", "2603:1040:d04:3::600/122", + "2603:1040:d04:7::150/124", + "2603:1040:d04:7::2e0/123", + "2603:1040:d04:7::300/120", "2603:1040:d04:400::420/123", "2603:1040:d04:400::580/121", "2603:1040:d04:800::400/121", @@ -16896,6 +17676,9 @@ "2603:1040:e05:6::380/122", "2603:1040:e05:6::3c0/123", "2603:1040:e05:6::680/122", + "2603:1040:e05:9::d0/124", + "2603:1040:e05:9::500/120", + "2603:1040:e05:9::6e0/123", "2603:1040:e05:402::80/121", "2603:1040:f05::60/123", "2603:1040:f05::1c0/122", @@ -16905,6 +17688,9 @@ "2603:1040:f05:1::280/122", "2603:1040:f05:3::760/123", "2603:1040:f05:3::780/122", + "2603:1040:f05:b::700/124", + "2603:1040:f05:c::100/120", + "2603:1040:f05:c::280/123", "2603:1040:f05:402::500/121", "2603:1040:f05:802::480/121", "2603:1040:f05:c02::480/121", @@ -16917,6 +17703,9 @@ "2603:1040:1002:2::700/121", "2603:1040:1002:5::360/123", "2603:1040:1002:5::5c0/122", + "2603:1040:1002:7::6c0/124", + "2603:1040:1002:8::300/120", + "2603:1040:1002:8::460/123", "2603:1040:1101:2::3/128", "2603:1040:1104:1::160/123", "2603:1040:1104:1::180/122", @@ -16924,6 +17713,8 @@ "2603:1040:1104:1::580/121", "2603:1040:1104:5::200/123", "2603:1040:1104:5::240/122", + "2603:1040:1104:6::4b0/124", + "2603:1040:1104:6::640/123", "2603:1040:1104:400::460/123", "2603:1040:1201:2::14/128", "2603:1040:1202:1::6c0/122", @@ -16933,12 +17724,15 @@ "2603:1040:1202:2::540/123", "2603:1040:1202:2::700/121", "2603:1040:1202:3::4c0/122", + "2603:1040:1202:5::1d0/124", "2603:1040:1301:4::b/128", "2603:1040:1302:1::100/120", "2603:1040:1302:1::200/123", "2603:1040:1302:2::540/123", "2603:1040:1302:2::680/121", "2603:1040:1302:3::540/122", + "2603:1040:1302:6::2e0/124", + "2603:1040:1302:7::20/123", "2603:1040:1401:4::c/127", "2603:1040:1401:11::3/128", "2603:1040:1402:1::5e0/123", @@ -16948,6 +17742,8 @@ "2603:1040:1402:2::5e0/123", "2603:1040:1402:2::600/122", "2603:1040:1402:3::180/121", + "2603:1040:1402:5::420/124", + "2603:1040:1402:8::200/120", "2603:1040:1503:2::a0/123", "2603:1040:1503:2::c0/122", "2603:1040:1503:2::200/122", @@ -16961,15 +17757,21 @@ "2603:1040:1602:2::500/122", "2603:1040:1602:2::580/121", "2603:1040:1602:2::600/121", + "2603:1040:1602:4::560/124", + "2603:1040:1602:4::780/123", "2603:1040:1701:d::d/128", "2603:1040:1702:2::480/121", "2603:1040:1702:2::500/120", + "2603:1040:1702:4::530/124", + "2603:1040:1702:4::6e0/123", "2603:1040:1801:8::e/128", "2603:1040:1801:8::11/128", "2603:1040:1802:2::240/122", "2603:1040:1802:2::300/122", "2603:1040:1802:2::380/121", "2603:1040:1802:2::400/121", + "2603:1040:1802:4::590/124", + "2603:1040:1802:5::/123", "2603:1040:1904:2::760/123", "2603:1040:1904:3::40/122", "2603:1040:1904:3::100/123", @@ -16979,6 +17781,9 @@ "2603:1040:1a02:3::280/122", "2603:1040:1a02:3::2c0/123", "2603:1040:1a02:3::300/120", + "2603:1040:1b02:3::2c0/122", + "2603:1040:1b02:3::380/122", + "2603:1040:1b02:3::400/120", "2603:1050:1:3::26/128", "2603:1050:6::60/123", "2603:1050:6::1c0/122", @@ -16988,6 +17793,9 @@ "2603:1050:6:1::280/122", "2603:1050:6:7::/122", "2603:1050:6:7::40/123", + "2603:1050:6:a::460/124", + "2603:1050:6:b::400/120", + "2603:1050:6:b::720/123", "2603:1050:6:402::580/121", "2603:1050:6:402::600/121", "2603:1050:6:802::480/121", @@ -16999,6 +17807,8 @@ "2603:1050:301:2::4c0/122", "2603:1050:301:2::580/123", "2603:1050:301:2::600/120", + "2603:1050:301:4::390/124", + "2603:1050:301:4::5e0/123", "2603:1050:400:2::1a/128", "2603:1050:403::280/122", "2603:1050:403:1::80/121", @@ -17006,6 +17816,8 @@ "2603:1050:403:1::300/121", "2603:1050:403:2::7e0/123", "2603:1050:403:5::/122", + "2603:1050:403:7::2e0/124", + "2603:1050:403:7::660/123", "2603:1050:403:400::580/121", "2a01:111:f100:1000::9d37:d5f5/128", "2a01:111:f100:1002::4134:d975/128", @@ -17280,7 +18092,7 @@ "name": "AzurePortal", "id": "AzurePortal", "properties": { - "changeNumber": 33, + "changeNumber": 35, "region": "", "regionId": 0, "platform": "Azure", @@ -17292,26 +18104,11 @@ "9.160.58.128/30", "9.205.45.224/27", "9.205.50.20/30", - "13.67.35.35/32", - "13.67.35.77/32", - "13.68.130.251/32", - "13.68.235.98/32", "13.69.112.176/28", - "13.69.126.92/32", - "13.71.190.228/32", "13.73.249.32/27", "13.73.249.160/28", "13.73.255.248/29", - "13.77.1.236/32", "13.77.55.208/28", - "13.77.202.2/32", - "13.78.49.187/32", - "13.78.132.155/32", - "13.78.230.142/32", - "13.88.220.109/32", - "13.88.222.0/32", - "13.90.156.71/32", - "13.92.138.76/32", "20.17.58.128/27", "20.17.126.224/27", "20.21.39.64/27", @@ -17416,12 +18213,10 @@ "23.98.104.128/30", "23.98.108.44/31", "23.98.108.168/29", - "23.102.65.134/32", "40.64.128.128/27", "40.64.132.88/30", "40.64.132.96/28", "40.64.135.88/29", - "40.65.114.234/32", "40.67.48.124/30", "40.67.49.128/27", "40.67.50.192/27", @@ -17441,21 +18236,16 @@ "40.80.191.200/30", "40.82.253.224/27", "40.84.85.224/27", - "40.84.132.239/32", - "40.84.228.255/32", "40.89.18.160/27", "40.89.20.132/30", "40.89.23.232/29", - "40.113.117.57/32", - "40.114.78.132/32", - "40.114.236.251/32", - "40.117.86.243/32", - "40.117.237.78/32", "40.119.9.236/30", "48.196.97.244/30", "48.196.98.224/27", "48.197.89.196/30", "48.197.90.224/27", + "48.198.97.244/30", + "48.198.101.96/27", "48.211.4.192/27", "48.216.28.164/30", "48.216.48.32/27", @@ -17498,12 +18288,8 @@ "51.137.162.160/27", "51.137.164.80/30", "51.137.167.152/29", - "51.140.69.25/32", - "51.140.138.84/32", "51.140.149.64/28", "51.143.208.192/29", - "51.145.3.27/32", - "51.145.21.195/32", "52.136.49.160/27", "52.136.51.72/30", "52.136.52.232/29", @@ -17518,19 +18304,10 @@ "52.150.152.16/28", "52.150.152.224/27", "52.150.156.232/29", - "52.161.101.86/32", - "52.163.207.80/32", "52.172.112.152/29", - "52.172.181.227/32", - "52.172.190.71/32", - "52.172.191.4/32", - "52.172.215.87/32", - "52.228.24.159/32", "52.228.83.160/27", "52.228.84.84/30", "52.228.84.96/28", - "52.233.66.46/32", - "52.243.76.246/32", "57.151.221.224/27", "57.151.228.84/30", "57.153.246.128/27", @@ -17554,18 +18331,10 @@ "102.133.217.192/27", "102.133.218.56/30", "102.133.221.0/29", - "104.41.216.228/32", - "104.42.195.92/32", "104.46.178.96/29", - "104.211.89.213/32", - "104.211.101.116/32", - "104.214.117.155/32", - "104.215.120.160/32", - "104.215.146.128/32", "134.138.82.8/30", "134.138.82.160/27", "135.224.40.0/27", - "137.116.247.179/32", "158.23.112.0/27", "172.194.81.60/30", "172.194.82.192/27", @@ -17578,7 +18347,6 @@ "191.234.136.48/30", "191.234.139.144/29", "191.235.227.160/27", - "213.199.128.226/32", "2603:1000:4::700/121", "2603:1000:104::200/121", "2603:1000:104::400/121", @@ -17678,6 +18446,7 @@ "2603:1040:1802:2::280/121", "2603:1040:1904:3::80/121", "2603:1040:1a02:3::200/121", + "2603:1040:1b02:3::300/121", "2603:1050:6::100/121", "2603:1050:6:1::680/121", "2603:1050:301:2::500/121", @@ -17695,7 +18464,7 @@ "name": "AzureResourceManager", "id": "AzureResourceManager", "properties": { - "changeNumber": 60, + "changeNumber": 61, "region": "", "regionId": 0, "platform": "Azure", @@ -17832,6 +18601,7 @@ "40.120.80.0/23", "48.196.90.0/23", "48.197.82.0/23", + "48.198.90.0/23", "48.216.24.0/23", "48.219.200.0/23", "51.4.128.0/23", @@ -18070,6 +18840,7 @@ "2603:1040:1802:1::200/120", "2603:1040:1904:1::500/120", "2603:1040:1a02:1::500/120", + "2603:1040:1b02:1::500/120", "2603:1050:6::180/122", "2603:1050:6:402::280/122", "2603:1050:301:1::400/120", @@ -18088,7 +18859,7 @@ "name": "Sql", "id": "Sql", "properties": { - "changeNumber": 95, + "changeNumber": 96, "region": "", "regionId": 0, "platform": "Azure", @@ -18717,6 +19488,8 @@ "48.197.92.96/27", "48.197.92.128/27", "48.197.92.192/26", + "48.198.102.64/26", + "48.198.102.128/26", "48.215.76.192/26", "48.215.144.48/29", "48.215.144.224/27", @@ -19587,6 +20360,8 @@ "2603:1040:1904:3::280/121", "2603:1040:1a02:3::400/123", "2603:1040:1a02:3::480/121", + "2603:1040:1b02:3::3e0/123", + "2603:1040:1b02:3::500/121", "2603:1050:6::320/123", "2603:1050:6::380/121", "2603:1050:6:2::780/121", @@ -19617,7 +20392,7 @@ "name": "AzureSecurityCenter", "id": "AzureSecurityCenter", "properties": { - "changeNumber": 12, + "changeNumber": 13, "region": "", "regionId": 0, "platform": "Azure", @@ -19671,10 +20446,22 @@ "4.243.96.0/22", "4.243.100.0/24", "4.253.63.64/26", + "9.160.66.136/30", + "9.160.66.208/28", + "9.160.67.128/25", + "9.160.68.0/24", + "9.160.69.0/26", + "9.160.69.64/27", "9.223.161.0/24", "9.223.162.0/23", "9.223.164.0/25", "9.223.164.128/27", + "9.235.70.152/30", + "9.235.70.160/27", + "9.235.70.192/26", + "9.235.71.0/24", + "9.235.168.0/25", + "9.235.168.128/28", "13.66.145.192/27", "13.69.233.64/27", "13.70.79.32/27", @@ -19703,10 +20490,22 @@ "20.167.166.0/23", "20.167.168.0/22", "20.167.172.0/24", + "20.173.57.8/30", + "20.173.57.16/28", + "20.173.57.32/27", + "20.173.57.64/26", + "20.173.57.128/25", + "20.173.58.0/24", "20.189.171.64/27", "20.192.184.128/27", "20.192.238.224/27", "20.193.206.160/27", + "20.215.122.24/30", + "20.215.122.32/27", + "20.215.122.64/26", + "20.215.123.0/24", + "20.215.124.0/25", + "20.215.124.128/28", "20.218.50.32/27", "20.218.51.0/24", "20.218.52.0/22", @@ -19740,6 +20539,12 @@ "50.85.247.128/25", "51.12.101.128/27", "51.12.205.64/27", + "51.58.49.60/30", + "51.58.49.64/26", + "51.58.49.128/25", + "51.58.50.0/24", + "51.58.51.0/27", + "51.58.51.32/28", "51.107.128.64/27", "51.107.192.96/27", "51.116.245.224/27", @@ -19756,6 +20561,11 @@ "57.152.113.128/26", "57.152.114.0/24", "57.153.216.0/24", + "57.156.1.176/28", + "57.156.1.192/26", + "57.156.2.0/24", + "57.156.3.0/25", + "57.156.3.128/27", "57.158.34.96/27", "57.158.34.128/26", "57.158.35.0/24", @@ -19774,8 +20584,26 @@ "57.159.132.0/22", "57.159.136.0/23", "57.159.138.0/24", + "68.210.30.216/30", + "68.210.30.240/28", + "68.210.56.160/27", + "68.210.56.192/26", + "68.210.57.0/24", + "68.210.58.0/25", + "68.211.31.220/30", "68.218.139.64/26", "68.218.140.0/24", + "70.153.92.140/30", + "70.153.92.160/27", + "70.153.92.192/26", + "70.153.93.0/24", + "70.153.94.0/25", + "70.153.94.128/28", + "70.156.174.4/30", + "70.156.174.16/28", + "70.156.174.32/27", + "70.156.174.64/26", + "70.156.175.0/24", "72.155.32.32/27", "72.155.32.64/26", "72.155.33.0/24", @@ -19829,6 +20657,12 @@ "85.210.105.0/26", "85.210.197.0/25", "85.210.198.0/23", + "85.211.140.136/30", + "85.211.143.176/28", + "85.211.143.192/26", + "85.211.232.0/24", + "85.211.233.0/25", + "85.211.233.128/27", "98.70.194.32/27", "98.70.194.128/25", "98.70.195.0/24", @@ -19902,6 +20736,7 @@ "135.235.24.0/22", "135.235.28.0/27", "135.237.168.0/24", + "158.158.128.0/25", "168.61.140.64/27", "172.179.36.0/24", "172.179.37.0/26", @@ -19921,6 +20756,18 @@ "172.189.120.0/22", "172.189.124.0/23", "172.189.126.0/24", + "172.195.50.60/30", + "172.195.50.64/26", + "172.195.50.128/25", + "172.195.51.0/24", + "172.195.52.0/27", + "172.195.52.32/28", + "172.196.57.128/25", + "172.196.58.0/24", + "172.196.59.0/26", + "172.196.59.64/27", + "172.196.59.96/28", + "172.204.255.248/30", "172.208.162.0/24", "172.208.172.128/26", "172.208.173.128/25", @@ -19958,48 +20805,76 @@ "name": "AzureSentinel", "id": "AzureSentinel", "properties": { - "changeNumber": 42, + "changeNumber": 47, "region": "", "regionId": 0, "platform": "Azure", "systemService": "AzureSentinel", "addressPrefixes": [ + "4.145.12.240/28", "4.149.249.208/28", "4.149.254.64/30", + "4.159.233.48/28", + "4.165.109.0/28", "4.171.25.188/30", "4.171.25.224/28", "4.171.52.22/31", + "4.172.91.64/28", + "4.173.70.128/28", + "4.176.27.96/28", + "4.176.52.240/28", "4.181.55.52/31", + "4.185.36.224/28", + "4.185.227.240/28", + "4.186.5.160/28", "4.186.93.128/27", "4.187.64.116/30", "4.187.70.176/28", "4.187.109.192/27", "4.190.136.160/28", "4.190.136.176/30", + "4.191.81.128/27", + "4.195.107.208/28", + "4.195.143.160/27", "4.195.243.224/27", + "4.199.42.32/28", "4.200.173.114/31", "4.200.251.228/30", "4.200.254.80/28", + "4.201.213.160/28", "4.207.244.32/28", "4.207.244.48/29", "4.207.244.64/28", "4.208.183.168/29", "4.208.183.192/28", "4.208.183.208/29", + "4.209.236.96/27", "4.213.24.20/30", "4.213.25.96/28", + "4.217.209.224/28", + "4.219.20.32/28", "4.220.137.4/30", "4.220.137.112/28", "4.220.173.230/31", + "4.221.41.80/28", + "4.221.220.32/28", "4.226.56.22/31", + "4.226.72.112/28", + "4.226.197.16/28", + "4.230.120.32/28", + "4.231.240.16/30", "4.232.40.176/29", "4.232.100.4/30", "4.232.100.64/28", + "4.232.208.23/32", "4.235.51.86/31", "4.237.173.66/31", "4.237.173.68/30", "4.237.173.120/29", "4.237.173.192/28", + "4.238.13.128/27", + "4.241.48.208/28", + "4.241.55.16/28", "4.243.83.164/31", "4.250.22.168/29", "4.250.22.176/28", @@ -20009,40 +20884,66 @@ "9.160.47.168/29", "9.205.39.168/29", "20.9.156.0/30", + "20.11.235.7/32", "20.17.63.80/29", "20.17.63.192/28", "20.17.63.208/30", "20.17.120.48/29", "20.21.84.144/29", + "20.21.200.13/32", + "20.24.243.246/32", + "20.27.232.228/32", "20.39.27.232/32", + "20.41.165.96/28", "20.47.137.94/32", "20.47.148.149/32", + "20.48.128.36/32", "20.50.88.196/30", + "20.52.212.85/32", "20.54.195.136/32", + "20.58.122.192/28", + "20.71.8.176/32", + "20.74.12.78/32", "20.85.194.2/32", + "20.91.44.64/27", "20.91.127.182/31", + "20.91.180.165/32", + "20.104.139.150/32", "20.105.244.62/31", "20.105.245.80/32", + "20.106.115.163/32", "20.111.77.80/29", "20.111.81.64/31", + "20.111.119.224/28", "20.113.254.56/29", "20.113.254.180/30", "20.113.254.224/28", + "20.117.35.8/32", "20.125.7.18/31", "20.125.7.24/32", "20.167.131.8/29", "20.167.131.148/30", "20.167.131.192/28", + "20.172.114.136/30", "20.174.231.234/31", + "20.174.241.96/27", "20.175.7.232/30", "20.175.7.240/28", "20.190.1.84/32", + "20.193.17.32/32", + "20.194.17.254/32", + "20.194.150.139/32", + "20.197.113.87/32", + "20.197.219.106/32", + "20.199.186.58/32", + "20.199.224.193/32", "20.200.166.144/29", "20.200.167.44/30", "20.200.167.48/28", "20.203.91.136/29", "20.203.93.144/28", "20.203.93.192/30", + "20.206.42.6/32", "20.207.174.164/30", "20.207.175.48/28", "20.207.175.104/29", @@ -20056,6 +20957,7 @@ "20.213.227.144/29", "20.213.228.4/30", "20.213.228.80/28", + "20.214.16.88/32", "20.215.74.32/28", "20.215.74.48/30", "20.215.168.168/29", @@ -20063,31 +20965,55 @@ "20.217.34.22/32", "20.217.34.30/32", "20.217.55.152/29", + "20.217.134.116/32", "20.217.161.64/28", "20.217.161.80/30", "20.217.163.200/30", "20.217.163.208/28", "20.217.255.168/29", + "20.218.40.0/32", "20.218.50.4/31", + "20.221.223.151/32", "20.232.92.128/30", "20.232.92.132/31", "20.232.92.134/32", "20.232.93.192/29", + "20.235.31.38/32", + "20.235.186.96/28", + "20.236.156.238/32", "20.237.82.201/32", + "40.64.106.65/32", + "40.75.146.76/32", + "40.75.146.80/28", + "40.75.146.160/29", + "40.75.146.192/26", + "40.80.86.109/32", "40.84.76.48/28", "40.84.76.192/27", "40.84.76.224/29", "40.84.76.232/30", "40.91.119.186/32", + "40.117.14.185/32", "40.119.155.184/32", + "40.123.207.43/32", + "40.126.210.189/32", + "40.127.239.99/32", + "48.192.137.176/28", + "48.195.220.208/28", "48.196.89.248/29", "48.197.81.240/29", + "48.198.89.248/29", + "48.199.8.96/27", + "48.199.132.4/30", + "48.202.150.32/29", "48.209.116.224/27", "48.214.114.176/28", "48.214.114.192/28", "48.215.92.232/31", "48.216.26.104/29", "48.219.199.168/29", + "48.223.25.112/28", + "48.223.54.32/28", "50.85.238.172/30", "50.85.238.220/31", "50.85.238.222/32", @@ -20097,25 +21023,38 @@ "51.4.139.67/32", "51.4.143.96/28", "51.4.143.112/29", + "51.4.150.192/27", + "51.4.153.128/27", + "51.11.168.197/32", + "51.12.7.21/32", + "51.13.75.153/32", + "51.13.144.151/32", "51.53.40.24/29", "51.53.40.128/28", "51.53.43.116/30", "51.53.136.32/29", "51.53.136.128/28", "51.53.139.88/30", + "51.58.29.48/28", + "51.58.56.96/27", + "51.58.56.156/30", + "51.59.63.112/28", "51.120.182.208/29", "51.142.135.16/29", "52.143.28.87/32", "52.143.73.213/32", "52.147.135.113/32", "52.147.135.157/32", + "52.158.170.36/32", "52.172.87.8/29", "52.188.218.53/32", "52.191.100.52/32", "52.224.133.70/32", "52.224.133.253/32", "52.224.188.169/32", + "52.238.16.48/28", "52.242.47.152/29", + "52.251.70.29/32", "57.151.216.176/29", "57.152.113.24/30", "57.152.113.32/28", @@ -20186,10 +21125,12 @@ "74.243.65.180/30", "74.243.65.184/30", "74.243.66.224/27", + "74.243.172.176/28", "74.243.224.108/30", "74.243.225.176/28", "74.243.225.224/28", "74.243.225.240/30", + "102.133.139.160/32", "104.208.197.204/30", "104.208.197.224/27", "104.208.199.0/30", @@ -20201,6 +21142,7 @@ "128.203.32.0/28", "128.203.32.16/30", "130.107.0.16/31", + "131.163.111.96/28", "132.164.237.192/28", "132.164.237.208/29", "132.164.237.216/30", @@ -20214,10 +21156,12 @@ "135.18.135.144/28", "135.18.135.160/30", "135.18.135.164/31", + "135.116.175.224/28", "135.119.2.4/30", "135.119.2.16/28", "135.119.2.32/29", "135.119.2.40/31", + "135.171.186.128/28", "135.225.179.228/31", "135.232.169.124/31", "135.233.200.32/30", @@ -20226,10 +21170,14 @@ "158.23.108.32/29", "158.23.108.200/30", "158.23.108.224/28", + "172.170.198.64/27", + "172.173.60.154/31", + "172.175.10.0/28", "172.179.33.76/30", "172.179.34.64/28", "172.182.174.204/30", "172.182.175.144/28", + "172.184.49.32/28", "172.184.49.124/30", "172.186.6.146/31", "172.186.6.200/29", @@ -20266,11 +21214,13 @@ "172.205.69.96/29", "172.205.69.104/31", "172.209.40.108/31", + "172.209.102.224/27", "172.212.128.160/28", "172.212.232.24/29", "172.212.234.224/27", "172.212.235.0/28", "172.212.235.16/30", + "172.215.123.176/28", "2603:1010:207::4b0/124", "2603:1010:304:5::130/124", "2603:1010:404:5::3a0/124", @@ -20311,6 +21261,7 @@ "2603:1040:1802:1::620/124", "2603:1040:1904:2::160/124", "2603:1040:1a02:2::160/124", + "2603:1040:1b02:1::4f0/124", "2603:1050:301:1::370/124" ], "networkFeatures": [ @@ -20325,7 +21276,7 @@ "name": "ServiceBus", "id": "ServiceBus", "properties": { - "changeNumber": 77, + "changeNumber": 78, "region": "", "regionId": 0, "platform": "Azure", @@ -20573,6 +21524,7 @@ "40.124.65.0/26", "48.196.89.0/25", "48.197.81.0/25", + "48.198.89.0/25", "48.210.2.0/23", "48.216.8.16/29", "48.216.8.32/28", @@ -21027,6 +21979,7 @@ "2603:1040:1802::600/121", "2603:1040:1904:1::180/121", "2603:1040:1a02:1::180/121", + "2603:1040:1b02:1::180/121", "2603:1050:6::700/120", "2603:1050:6:1::220/123", "2603:1050:6:402::170/125", @@ -21254,7 +22207,7 @@ "name": "AzureSiteRecovery", "id": "AzureSiteRecovery", "properties": { - "changeNumber": 47, + "changeNumber": 48, "region": "", "regionId": 0, "platform": "Azure", @@ -21425,6 +22378,7 @@ "40.123.219.238/32", "48.196.80.0/28", "48.197.72.0/28", + "48.198.80.0/28", "48.216.16.0/28", "48.218.255.144/29", "48.219.192.0/28", @@ -21758,6 +22712,7 @@ "2603:1040:1802:2::4e0/123", "2603:1040:1904::/123", "2603:1040:1a02::/123", + "2603:1040:1b02::/123", "2603:1050:6:1::/123", "2603:1050:6:402::2d0/125", "2603:1050:6:802::158/125", @@ -21778,12 +22733,13 @@ "name": "AzureSphere", "id": "AzureSphere", "properties": { - "changeNumber": 3, + "changeNumber": 4, "region": "", "regionId": 0, "platform": "Azure", "systemService": "AzureSphereSecureService_Prod", "addressPrefixes": [ + "4.207.188.96/27", "20.40.225.168/29", "20.48.196.224/29", "20.49.118.104/29", @@ -21807,6 +22763,8 @@ "20.195.65.224/29", "20.195.72.224/29", "40.89.23.248/29", + "48.195.160.192/27", + "48.223.25.0/27", "51.138.210.136/29", "51.143.209.136/29", "52.136.185.144/29", @@ -21815,9 +22773,11 @@ "52.147.112.136/29", "52.150.157.184/29", "52.172.116.8/29", + "52.190.166.32/27", "104.46.179.248/29", "172.169.153.84/30", "172.169.153.88/29", + "172.199.129.32/27", "191.238.72.64/29" ], "networkFeatures": [ @@ -21830,7 +22790,7 @@ "name": "AzureSpringCloud", "id": "AzureSpringCloud", "properties": { - "changeNumber": 22, + "changeNumber": 24, "region": "", "regionId": 0, "platform": "Azure", @@ -22075,6 +23035,7 @@ "40.119.233.230/32", "48.196.85.0/24", "48.197.77.0/24", + "48.198.85.0/24", "48.216.18.0/24", "48.219.194.0/24", "51.12.16.0/24", @@ -22438,7 +23399,6 @@ "52.191.228.91/32", "52.191.239.43/32", "52.224.17.124/32", - "52.224.17.219/32", "52.224.18.31/32", "52.224.20.104/32", "52.224.25.144/32", @@ -22598,6 +23558,7 @@ "2603:1040:1802::100/120", "2603:1040:1904::600/120", "2603:1040:1a02::600/120", + "2603:1040:1b02::600/120", "2603:1050:6::200/120", "2603:1050:301::400/120", "2603:1050:403::700/120" @@ -22654,7 +23615,7 @@ "name": "Storage", "id": "Storage", "properties": { - "changeNumber": 53, + "changeNumber": 54, "region": "", "regionId": 0, "platform": "Azure", @@ -23230,6 +24191,7 @@ "2603:1040:1803::/48", "2603:1040:1905::/48", "2603:1040:1a03::/48", + "2603:1040:1b03::/48", "2603:1050:7::/48", "2603:1050:302::/48", "2603:1050:404::/48" @@ -23839,7 +24801,7 @@ "name": "VideoIndexer", "id": "VideoIndexer", "properties": { - "changeNumber": 23, + "changeNumber": 24, "region": "", "regionId": 0, "platform": "Azure", @@ -23965,6 +24927,7 @@ "40.80.96.16/31", "48.196.87.252/30", "48.197.81.132/30", + "48.198.87.252/30", "48.216.22.144/30", "48.219.198.208/30", "51.12.73.93/32", @@ -24065,6 +25028,7 @@ "2603:1040:1802::750/124", "2603:1040:1904:1::430/124", "2603:1040:1a02:1::430/124", + "2603:1040:1b02:1::410/124", "2603:1050:301:1::1b0/124" ], "networkFeatures": [ @@ -24283,7 +25247,7 @@ "name": "BatchNodeManagement", "id": "BatchNodeManagement", "properties": { - "changeNumber": 32, + "changeNumber": 33, "region": "", "regionId": 0, "platform": "Azure", @@ -24464,6 +25428,7 @@ "40.122.166.234/32", "48.196.84.0/27", "48.197.76.0/27", + "48.198.84.0/27", "48.216.17.64/27", "48.219.193.64/27", "51.12.41.192/27", @@ -24739,6 +25704,7 @@ "2603:1040:1802::/122", "2603:1040:1904::500/122", "2603:1040:1a02::500/122", + "2603:1040:1b02::500/122", "2603:1050:6:1::340/122", "2603:1050:301::300/122", "2603:1050:403::340/122" @@ -24755,7 +25721,7 @@ "name": "ChaosStudio", "id": "ChaosStudio", "properties": { - "changeNumber": 9, + "changeNumber": 10, "region": "", "regionId": 0, "platform": "Azure", @@ -24815,6 +25781,8 @@ "20.125.157.4/30", "20.164.152.72/29", "20.166.47.172/30", + "20.174.245.82/31", + "20.174.245.84/30", "20.175.6.240/29", "20.192.175.32/30", "20.195.87.50/31", @@ -24893,7 +25861,7 @@ "name": "CognitiveServicesFrontend", "id": "CognitiveServicesFrontend", "properties": { - "changeNumber": 21, + "changeNumber": 22, "region": "", "regionId": 0, "platform": "Azure", @@ -24947,6 +25915,7 @@ "40.120.87.224/28", "48.196.100.176/28", "48.197.92.160/28", + "48.198.102.48/28", "48.216.34.16/28", "48.219.208.192/28", "51.4.136.192/28", @@ -25043,6 +26012,7 @@ "2603:1040:1802:2::580/121", "2603:1040:1904:3::300/121", "2603:1040:1a02:3::500/121", + "2603:1040:1b02:3::580/121", "2603:1050:6:2::580/121", "2603:1050:301:2::780/121" ], @@ -25056,7 +26026,7 @@ "name": "CognitiveServicesManagement", "id": "CognitiveServicesManagement", "properties": { - "changeNumber": 79, + "changeNumber": 80, "region": "", "regionId": 0, "platform": "Azure", @@ -25760,6 +26730,10 @@ "48.197.90.128/26", "48.197.90.192/28", "48.197.92.8/29", + "48.198.101.32/27", + "48.198.101.64/27", + "48.198.101.128/26", + "48.198.101.216/29", "48.216.28.176/28", "48.216.33.32/28", "48.216.33.56/29", @@ -26533,6 +27507,9 @@ "2603:1040:1a02:2::4d8/125", "2603:1040:1a02:3::140/122", "2603:1040:1a02:3::180/121", + "2603:1040:1b02:2::718/125", + "2603:1040:1b02:3::200/121", + "2603:1040:1b02:3::280/122", "2603:1050:6::80/122", "2603:1050:6:1::640/122", "2603:1050:301:2::228/125", @@ -26547,11 +27524,37 @@ ] } }, + { + "name": "CopilotActions", + "id": "CopilotActions", + "properties": { + "changeNumber": 1, + "region": "", + "regionId": 0, + "platform": "Azure", + "systemService": "CopilotActions", + "addressPrefixes": [ + "4.150.77.36/30", + "4.150.77.40/29", + "4.207.44.208/29", + "4.243.137.96/29", + "130.213.78.208/29", + "135.171.143.8/29", + "172.194.130.40/29" + ], + "networkFeatures": [ + "NSG", + "API", + "UDR", + "FW" + ] + } + }, { "name": "DataFactory", "id": "DataFactory", "properties": { - "changeNumber": 87, + "changeNumber": 90, "region": "", "regionId": 0, "platform": "Azure", @@ -26875,6 +27878,9 @@ "48.197.89.112/28", "48.197.89.160/27", "48.197.91.0/24", + "48.198.97.224/28", + "48.198.100.0/24", + "48.198.101.0/27", "48.209.130.96/28", "48.209.130.112/29", "48.210.4.0/27", @@ -27033,6 +28039,7 @@ "74.242.37.32/27", "74.242.188.224/27", "74.243.20.176/28", + "74.243.172.128/27", "74.248.90.128/27", "85.210.193.192/27", "98.70.130.88/29", @@ -27482,11 +28489,13 @@ "2603:1040:1802:2::98/125", "2603:1040:1802:2::100/121", "2603:1040:1802:2::4b0/124", + "2603:1040:1802:5::700/121", "2603:1040:1802:400::f0/124", "2603:1040:1802:800::70/124", "2603:1040:1802:c00::70/124", "2603:1040:1904:2::600/120", "2603:1040:1a02:3::/120", + "2603:1040:1b02:3::100/120", "2603:1050:6:1::480/121", "2603:1050:6:1::500/122", "2603:1050:6:1::700/121", @@ -27516,7 +28525,7 @@ "name": "Dynamics365BusinessCentral", "id": "Dynamics365BusinessCentral", "properties": { - "changeNumber": 16, + "changeNumber": 17, "region": "", "regionId": 0, "platform": "Azure", @@ -27592,6 +28601,7 @@ "104.208.176.0/25", "131.163.42.0/26", "131.189.7.0/25", + "134.112.79.128/25", "134.149.137.0/24", "172.187.64.0/24", "172.188.155.128/25", @@ -27618,6 +28628,9 @@ "2603:1020:f04:7::80/121", "2603:1020:1004:6::300/121", "2603:1020:1104:5::80/121", + "2603:1020:1204:6::680/121", + "2603:1020:1204:6::700/121", + "2603:1020:1302:5::400/121", "2603:1030:10:15::500/120", "2603:1030:210:12::600/119", "2603:1030:40c:12::400/119", @@ -27685,20 +28698,13 @@ "name": "EOPExternalPublishedIPs", "id": "EOPExternalPublishedIPs", "properties": { - "changeNumber": 31, + "changeNumber": 32, "region": "", "regionId": 0, "platform": "Azure", "systemService": "EOPExtPublished", "addressPrefixes": [ - "40.92.0.0/15", - "40.95.1.0/24", - "40.95.6.0/24", - "40.95.12.0/24", - "40.95.28.0/24", - "40.95.118.0/23", - "40.95.120.0/21", - "40.95.128.0/23", + "40.92.0.0/14", "40.107.0.0/16", "52.100.0.0/14", "104.47.0.1/32", @@ -27807,7 +28813,7 @@ "name": "GatewayManager", "id": "GatewayManager", "properties": { - "changeNumber": 41, + "changeNumber": 42, "region": "", "regionId": 0, "platform": "Azure", @@ -27964,6 +28970,7 @@ "40.124.139.174/32", "48.196.80.64/26", "48.197.72.64/26", + "48.198.80.64/26", "48.216.16.64/26", "48.219.192.64/26", "51.12.40.192/26", @@ -28125,6 +29132,7 @@ "2603:1040:1802:2::700/122", "2603:1040:1904::40/122", "2603:1040:1a02::40/122", + "2603:1040:1b02::40/122", "2603:1050:6:1::40/122", "2603:1050:301::40/122", "2603:1050:403::40/122" @@ -28188,7 +29196,7 @@ "name": "HDInsight", "id": "HDInsight", "properties": { - "changeNumber": 53, + "changeNumber": 54, "region": "", "regionId": 0, "platform": "Azure", @@ -28290,6 +29298,7 @@ "40.89.157.135/32", "48.196.89.216/29", "48.197.81.208/29", + "48.198.89.216/29", "48.216.22.208/29", "48.219.199.16/29", "51.12.17.48/29", @@ -28484,6 +29493,7 @@ "2603:1040:1802:1::110/124", "2603:1040:1904:1::4d0/124", "2603:1040:1a02:1::4d0/124", + "2603:1040:1b02:1::4d0/124", "2603:1050:6:402::320/124", "2603:1050:301:1::360/124", "2603:1050:403:400::420/124" @@ -28500,7 +29510,7 @@ "name": "LogicApps", "id": "LogicApps", "properties": { - "changeNumber": 61, + "changeNumber": 63, "region": "", "regionId": 0, "platform": "Azure", @@ -29607,10 +30617,13 @@ "40.127.240.183/32", "40.127.242.159/32", "40.127.242.203/32", + "48.193.52.192/27", "48.196.101.112/28", "48.196.102.96/27", "48.197.94.0/28", "48.197.94.32/27", + "48.198.102.240/28", + "48.198.103.224/27", "48.216.12.32/28", "48.216.12.64/27", "48.216.48.80/28", @@ -30398,12 +31411,15 @@ "2603:1040:1702:400::330/124", "2603:1040:1702:400::340/123", "2603:1040:1802:3::340/123", + "2603:1040:1802:5::7c0/123", "2603:1040:1802:400::360/123", "2603:1040:1802:400::380/123", "2603:1040:1904:4::10/124", "2603:1040:1904:4::80/123", "2603:1040:1a02:3::680/124", "2603:1040:1a02:3::6a0/123", + "2603:1040:1b02:3::760/124", + "2603:1040:1b02:3::780/123", "2603:1050:6:402::3c0/124", "2603:1050:6:402::3e0/123", "2603:1050:301:3::5a0/124", @@ -30421,11 +31437,58 @@ ] } }, + { + "name": "M365LighthouseProd", + "id": "M365LighthouseProd", + "properties": { + "changeNumber": 1, + "region": "", + "regionId": 0, + "platform": "Azure", + "systemService": "M365LighthouseProd", + "addressPrefixes": [ + "4.195.177.248/29", + "4.195.178.0/31", + "20.91.113.180/31", + "20.91.113.192/29", + "40.84.108.110/31", + "40.84.109.32/29", + "48.209.78.6/31", + "48.209.78.32/29", + "48.210.97.154/31", + "48.210.97.192/29", + "48.211.37.134/31", + "48.211.37.168/29", + "57.154.86.78/31", + "57.154.86.80/29", + "68.218.185.84/31", + "68.218.185.88/29", + "74.226.43.80/29", + "74.226.43.88/31", + "128.24.142.136/30", + "128.24.142.144/28", + "128.251.81.190/31", + "128.251.81.232/29", + "130.107.7.102/31", + "130.107.61.32/29", + "130.131.135.56/29", + "130.131.135.96/31", + "135.225.65.6/31", + "135.225.65.24/29" + ], + "networkFeatures": [ + "NSG", + "API", + "UDR", + "FW" + ] + } + }, { "name": "M365ManagementActivityApi", "id": "M365ManagementActivityApi", "properties": { - "changeNumber": 21, + "changeNumber": 24, "region": "", "regionId": 0, "platform": "Azure", @@ -30439,7 +31502,9 @@ "4.190.132.38/31", "4.190.132.70/31", "4.194.228.24/30", + "4.196.129.12/30", "4.232.106.8/31", + "9.205.75.56/31", "13.69.109.192/29", "13.69.233.40/29", "13.71.175.136/31", @@ -30457,6 +31522,7 @@ "20.44.10.196/30", "20.44.19.8/30", "20.45.126.96/29", + "20.45.148.232/30", "20.53.0.36/31", "20.91.11.154/31", "20.91.14.98/31", @@ -30499,6 +31565,7 @@ "40.117.25.242/31", "40.117.28.98/31", "40.120.75.56/31", + "48.202.69.246/31", "51.12.33.52/31", "51.12.33.58/31", "51.12.169.72/31", @@ -30522,6 +31589,7 @@ "52.188.247.120/29", "52.231.23.12/31", "52.231.148.204/31", + "57.154.128.254/31", "68.210.26.0/31", "68.210.156.114/31", "68.211.152.58/31", @@ -30544,6 +31612,8 @@ "191.233.207.28/31", "2603:1000:4::2ac/127", "2603:1000:104::66c/127", + "2603:1010:6:e::ec/126", + "2603:1010:207:3::7a4/126", "2603:1010:304::2ac/127", "2603:1010:404::2ac/127", "2603:1020:5:4::25a/127", @@ -30599,7 +31669,7 @@ "name": "M365ManagementActivityApiWebhook", "id": "M365ManagementActivityApiWebhook", "properties": { - "changeNumber": 23, + "changeNumber": 26, "region": "", "regionId": 0, "platform": "Azure", @@ -30612,7 +31682,9 @@ "4.171.27.10/31", "4.190.132.40/31", "4.194.228.28/30", + "4.196.129.16/30", "4.232.106.10/31", + "9.205.75.58/31", "9.235.19.172/31", "13.67.15.8/29", "13.69.109.200/29", @@ -30632,6 +31704,7 @@ "20.44.10.200/29", "20.44.19.56/29", "20.45.126.104/29", + "20.45.148.236/30", "20.52.72.32/29", "20.53.0.96/30", "20.53.55.172/31", @@ -30679,6 +31752,7 @@ "40.117.28.100/31", "40.120.8.168/29", "40.120.64.192/29", + "48.202.69.244/31", "51.11.97.88/29", "51.12.33.54/31", "51.12.33.56/31", @@ -30704,6 +31778,7 @@ "52.231.151.56/29", "52.240.244.152/29", "52.242.47.106/31", + "57.154.131.8/31", "68.210.156.112/31", "68.210.183.110/31", "68.211.29.190/31", @@ -30731,6 +31806,8 @@ "191.233.207.200/29", "2603:1000:4:2::5c0/127", "2603:1000:104:3::1e0/127", + "2603:1010:6:e::f0/126", + "2603:1010:207:3::7a8/126", "2603:1010:304::2ae/127", "2603:1010:404::2ae/127", "2603:1010:502:4::624/127", @@ -30794,7 +31871,7 @@ "name": "Marketplace", "id": "Marketplace", "properties": { - "changeNumber": 4, + "changeNumber": 7, "region": "", "regionId": 0, "platform": "Azure", @@ -30857,6 +31934,8 @@ "20.125.164.96/30", "20.164.159.148/30", "20.164.159.152/32", + "20.172.117.36/30", + "20.172.117.48/28", "20.187.194.240/28", "20.189.109.224/30", "20.189.171.0/26", @@ -30892,6 +31971,10 @@ "40.113.176.144/28", "40.113.176.224/30", "40.119.11.184/29", + "48.192.89.88/29", + "48.192.89.96/27", + "48.192.90.0/24", + "48.192.91.4/30", "52.140.108.72/30", "52.140.108.144/28", "52.150.152.80/29", @@ -30907,7 +31990,9 @@ "128.85.92.24/29", "128.85.92.32/27", "135.225.43.40/29", - "168.61.140.32/28" + "168.61.140.32/28", + "172.175.149.16/28", + "172.175.149.32/30" ], "networkFeatures": [ "NSG", @@ -31016,12 +32101,26 @@ "name": "MicrosoftCloudAppSecurity", "id": "MicrosoftCloudAppSecurity", "properties": { - "changeNumber": 12, + "changeNumber": 13, "region": "", "regionId": 0, "platform": "Azure", "systemService": "MicrosoftCloudAppSecurity", "addressPrefixes": [ + "4.153.214.151/32", + "4.153.214.156/31", + "4.153.214.162/31", + "4.153.214.170/31", + "4.153.214.174/31", + "4.153.214.186/31", + "4.153.214.188/31", + "4.153.214.228/31", + "4.153.214.234/31", + "4.153.214.240/31", + "4.153.215.66/31", + "4.153.215.68/31", + "4.153.215.76/31", + "4.153.215.88/31", "4.174.144.81/32", "4.174.144.82/31", "4.174.144.84/30", @@ -31031,11 +32130,20 @@ "4.178.134.40/29", "4.178.134.64/26", "4.178.134.128/25", + "4.180.55.239/32", "4.180.85.108/32", + "4.180.89.202/32", + "4.180.92.135/32", "4.192.252.174/31", "4.192.252.176/28", "4.192.252.192/29", "4.192.252.200/30", + "4.194.97.213/32", + "4.194.97.243/32", + "4.194.98.36/32", + "4.194.98.51/32", + "4.197.50.82/32", + "4.197.50.98/32", "4.198.66.78/32", "4.198.66.90/32", "4.198.66.92/32", @@ -31045,6 +32153,8 @@ "4.198.66.126/32", "4.198.66.135/32", "4.198.154.86/32", + "4.199.4.56/32", + "4.199.4.94/32", "4.203.121.92/30", "4.203.121.96/28", "4.203.121.112/29", @@ -31056,10 +32166,44 @@ "4.204.19.64/30", "4.205.74.7/32", "4.205.74.15/32", + "4.205.225.60/32", + "4.205.228.57/32", + "4.205.228.61/32", + "4.205.229.25/32", "4.207.251.128/25", "4.207.252.0/27", "4.207.252.32/28", "4.207.252.48/30", + "4.208.80.40/32", + "4.208.80.132/32", + "4.208.81.209/32", + "4.208.81.254/32", + "4.208.83.48/32", + "4.208.83.252/32", + "4.208.84.125/32", + "4.208.84.135/32", + "4.208.84.137/32", + "4.208.84.173/32", + "4.208.84.174/32", + "4.208.84.202/32", + "4.208.84.218/32", + "4.208.85.9/32", + "4.208.85.13/32", + "4.208.85.35/32", + "4.208.85.38/32", + "4.208.85.40/32", + "4.208.85.43/32", + "4.208.85.53/32", + "4.208.85.61/32", + "4.208.85.83/32", + "4.208.85.97/32", + "4.208.85.104/32", + "4.208.85.113/32", + "4.208.85.118/32", + "4.210.151.239/32", + "4.211.203.169/32", + "4.211.203.229/32", + "4.211.205.90/32", "4.213.28.74/31", "4.213.28.76/30", "4.213.28.80/28", @@ -31067,6 +32211,7 @@ "4.213.106.240/28", "4.213.107.0/25", "4.213.107.128/29", + "4.224.61.207/32", "4.226.24.1/32", "4.226.24.5/32", "4.226.24.6/32", @@ -31089,6 +32234,9 @@ "4.229.68.64/28", "4.231.129.246/32", "4.231.129.248/32", + "4.231.211.174/32", + "4.231.211.178/32", + "4.231.231.106/32", "4.234.34.86/32", "4.234.34.91/32", "4.234.34.92/32", @@ -31097,8 +32245,79 @@ "4.234.34.182/32", "4.234.34.186/32", "4.234.34.202/32", + "4.234.118.145/32", + "4.234.119.52/32", + "4.234.119.55/32", + "4.234.119.56/32", + "4.234.119.68/32", + "4.234.119.72/32", + "4.234.119.75/32", + "4.234.119.89/32", + "4.234.119.90/32", + "4.234.119.93/32", + "4.234.119.94/32", + "4.234.119.96/32", + "4.234.119.108/32", + "4.234.119.121/32", + "4.234.119.123/32", + "4.234.119.124/32", + "4.234.119.126/32", + "4.234.146.138/31", + "4.234.146.142/32", + "4.234.207.171/32", + "4.234.207.176/32", + "4.234.207.186/32", + "4.234.207.189/32", + "4.234.207.193/32", + "4.234.207.195/32", + "4.234.207.199/32", + "4.234.207.201/32", + "4.234.207.203/32", + "4.234.207.209/32", + "4.234.207.219/32", + "4.234.207.224/32", + "4.234.207.226/32", + "4.245.184.192/32", + "4.245.189.46/32", + "4.246.50.94/32", + "4.246.147.156/32", + "4.246.150.66/32", + "4.246.151.143/32", + "4.246.164.1/32", + "4.246.164.16/32", + "4.246.178.203/32", + "4.247.146.233/32", + "4.247.147.47/32", + "4.247.147.52/32", + "4.247.147.60/32", "4.248.98.186/31", "4.248.98.192/29", + "4.250.138.232/32", + "4.250.138.235/32", + "4.250.138.249/32", + "4.250.139.28/32", + "4.250.139.146/32", + "4.250.139.205/32", + "4.250.139.207/32", + "4.250.139.216/32", + "4.250.139.248/32", + "4.250.140.0/32", + "4.250.140.17/32", + "4.250.140.73/32", + "4.250.140.125/32", + "4.250.140.167/32", + "4.250.140.169/32", + "4.250.140.178/32", + "4.250.140.231/32", + "4.250.140.235/32", + "4.250.140.252/32", + "4.250.140.254/32", + "4.250.141.57/32", + "4.250.141.61/32", + "4.250.141.72/32", + "4.250.141.90/32", + "4.250.141.94/32", + "4.250.141.110/32", "4.251.224.184/29", "4.251.231.56/31", "4.251.231.80/28", @@ -31106,7 +32325,28 @@ "4.252.149.40/29", "4.252.149.64/28", "4.252.149.128/25", + "4.255.138.74/32", + "4.255.144.104/32", + "4.255.146.128/32", + "4.255.147.5/32", + "4.255.160.17/32", + "4.255.161.37/32", + "4.255.162.19/32", + "4.255.169.151/32", + "4.255.169.215/32", + "4.255.192.31/32", + "4.255.192.94/32", + "4.255.193.22/32", + "4.255.216.225/32", "4.255.218.227/32", + "4.255.219.16/32", + "4.255.225.20/32", + "4.255.225.35/32", + "13.64.16.129/32", + "13.64.16.130/31", + "13.64.16.132/30", + "13.64.16.136/31", + "13.64.16.138/32", "13.64.26.88/32", "13.64.28.87/32", "13.64.29.32/32", @@ -31115,10 +32355,16 @@ "13.64.30.117/32", "13.64.30.118/32", "13.64.31.116/32", + "13.64.186.156/32", + "13.64.186.167/32", + "13.64.186.181/32", + "13.64.187.15/32", + "13.64.187.17/32", "13.64.196.27/32", "13.64.198.19/32", "13.64.198.97/32", "13.64.199.41/32", + "13.64.238.253/32", "13.64.252.115/32", "13.66.134.18/32", "13.66.142.80/28", @@ -31128,15 +32374,71 @@ "13.66.210.205/32", "13.67.10.192/28", "13.67.48.221/32", + "13.67.131.12/32", + "13.67.131.233/32", + "13.67.132.9/32", + "13.67.132.162/32", + "13.67.133.80/32", + "13.67.133.167/32", + "13.67.134.82/32", + "13.67.134.233/32", + "13.67.137.155/32", + "13.67.142.200/32", + "13.67.177.139/32", + "13.67.178.24/32", + "13.67.178.45/32", + "13.67.178.119/32", + "13.67.178.125/32", + "13.67.178.140/32", + "13.67.178.146/32", + "13.67.178.172/32", + "13.67.178.175/32", + "13.67.178.191/32", + "13.67.178.216/32", + "13.67.178.218/32", + "13.67.178.247/32", + "13.67.213.93/32", + "13.67.213.103/32", + "13.68.76.47/32", + "13.68.142.7/32", + "13.68.142.30/32", + "13.68.142.34/32", + "13.68.142.49/32", + "13.68.142.68/32", + "13.68.142.71/32", + "13.68.142.76/32", + "13.68.142.87/32", + "13.68.142.123/32", + "13.68.142.214/32", + "13.68.210.15/32", "13.69.67.96/28", + "13.69.81.118/32", "13.69.107.96/28", "13.69.190.115/32", "13.69.230.48/28", + "13.69.255.22/32", "13.70.74.160/27", + "13.70.193.21/32", + "13.70.193.23/32", + "13.70.193.54/32", + "13.70.193.120/32", + "13.70.193.125/32", "13.71.175.0/27", "13.71.196.192/27", "13.73.242.224/27", + "13.74.66.73/32", "13.74.108.176/28", + "13.74.120.169/32", + "13.74.120.187/32", + "13.74.120.207/32", + "13.74.121.38/32", + "13.74.121.55/32", + "13.74.122.62/32", + "13.74.122.94/32", + "13.74.122.124/32", + "13.74.124.198/32", + "13.74.125.250/32", + "13.74.127.169/32", "13.74.168.152/32", "13.75.39.128/27", "13.76.43.73/32", @@ -31148,41 +32450,154 @@ "13.77.160.162/32", "13.77.163.148/32", "13.77.165.61/32", + "13.78.164.187/32", + "13.78.176.17/32", + "13.78.177.204/32", + "13.78.177.243/32", + "13.78.177.245/32", + "13.78.177.248/32", + "13.78.177.250/32", + "13.78.178.196/32", + "13.78.183.147/32", + "13.78.183.154/32", + "13.78.183.161/32", + "13.78.183.162/32", + "13.78.183.194/32", + "13.78.183.203/32", + "13.78.183.215/32", + "13.78.183.219/32", + "13.78.183.221/32", + "13.78.183.223/32", + "13.78.190.216/32", "13.78.225.156/32", + "13.79.130.20/32", "13.80.7.94/32", "13.80.22.71/32", "13.80.125.22/32", + "13.81.70.12/32", "13.81.123.49/32", + "13.81.123.253/32", "13.81.204.189/32", + "13.81.209.46/32", + "13.81.209.51/32", + "13.81.209.72/32", + "13.81.209.74/32", + "13.81.209.90/32", + "13.81.209.120/32", "13.81.212.71/32", + "13.81.212.241/32", + "13.81.213.20/32", + "13.81.214.24/32", + "13.82.128.29/32", + "13.82.128.58/31", + "13.82.130.119/32", + "13.82.130.239/32", + "13.82.130.247/32", + "13.82.131.4/32", + "13.82.131.129/32", + "13.82.131.188/32", + "13.82.135.51/32", + "13.82.135.167/32", + "13.82.135.187/32", + "13.82.135.198/32", + "13.83.13.102/32", + "13.83.55.150/32", + "13.83.86.230/32", "13.86.1.5/32", + "13.86.154.103/32", + "13.86.155.23/32", + "13.86.156.71/32", + "13.86.156.125/32", + "13.86.156.215/32", + "13.86.157.8/32", + "13.86.157.143/32", + "13.86.157.196/32", + "13.86.157.226/32", + "13.86.157.235/32", + "13.86.157.236/32", "13.86.176.189/32", "13.86.176.211/32", "13.86.219.224/27", "13.86.235.202/32", "13.86.239.236/32", + "13.87.201.31/32", + "13.88.12.151/32", + "13.88.14.203/32", + "13.88.153.73/32", + "13.88.154.223/32", + "13.88.169.60/32", + "13.88.169.86/32", + "13.88.169.140/32", + "13.88.169.142/32", + "13.88.169.154/32", + "13.88.169.161/32", + "13.88.169.190/32", + "13.88.174.223/32", + "13.88.176.110/32", + "13.88.177.58/32", + "13.88.177.81/32", + "13.88.177.149/32", + "13.88.177.172/32", + "13.88.177.200/32", + "13.88.181.242/32", + "13.88.181.247/32", + "13.88.182.8/32", + "13.88.182.11/32", + "13.88.182.59/32", + "13.88.182.72/32", + "13.88.182.75/32", + "13.88.183.60/32", + "13.88.183.144/32", + "13.88.183.220/32", "13.88.224.38/32", "13.88.224.211/32", "13.88.224.222/32", "13.88.226.74/32", "13.88.227.7/32", "13.89.178.0/28", + "13.89.206.157/32", + "13.89.206.180/31", + "13.89.206.201/32", + "13.89.206.244/31", + "13.89.206.248/31", + "13.89.206.252/32", + "13.89.207.57/32", + "13.90.61.62/32", + "13.90.78.178/32", + "13.90.90.138/32", + "13.90.90.213/32", + "13.90.92.202/32", + "13.90.202.4/32", + "13.91.18.254/32", "13.91.61.249/32", + "13.91.63.30/32", "13.91.91.243/32", "13.91.98.185/32", + "13.91.162.201/32", "13.93.32.114/32", "13.93.113.192/32", + "13.93.180.150/32", + "13.93.183.128/32", "13.93.196.52/32", + "13.93.208.115/32", + "13.93.213.236/32", "13.93.216.68/32", "13.93.233.42/32", + "13.94.104.20/32", + "13.94.104.195/32", + "13.94.105.134/31", + "13.94.105.181/32", + "13.94.108.37/32", "13.94.118.57/32", "13.94.119.133/32", + "13.94.119.137/32", "13.94.119.139/32", "13.94.119.142/32", "13.94.119.158/32", "13.94.119.163/32", "13.94.119.173/32", "13.94.119.179/32", + "13.94.252.39/32", "13.95.1.33/32", "13.95.29.177/32", "13.95.30.46/32", @@ -31190,6 +32605,10 @@ "20.3.226.231/32", "20.4.196.150/32", "20.4.196.158/32", + "20.4.235.160/32", + "20.4.235.220/32", + "20.4.236.147/32", + "20.5.98.114/32", "20.7.96.98/32", "20.7.101.234/32", "20.7.102.40/32", @@ -31197,7 +32616,9 @@ "20.7.102.52/32", "20.7.102.54/32", "20.7.102.59/32", + "20.7.201.146/32", "20.9.204.0/25", + "20.10.130.214/32", "20.11.210.40/32", "20.12.128.152/32", "20.12.128.213/32", @@ -31208,8 +32629,22 @@ "20.14.38.222/32", "20.14.38.249/32", "20.15.114.156/32", + "20.16.146.100/32", + "20.16.148.115/32", + "20.16.148.134/32", + "20.16.148.186/32", + "20.16.148.239/32", + "20.16.149.20/32", + "20.16.156.66/32", + "20.16.156.73/32", + "20.16.224.113/32", + "20.19.97.64/32", + "20.19.98.239/32", + "20.19.99.17/32", "20.22.87.7/32", + "20.22.197.89/32", "20.23.66.82/32", + "20.23.198.34/32", "20.23.198.95/32", "20.23.198.119/32", "20.23.198.132/32", @@ -31217,10 +32652,19 @@ "20.23.198.198/32", "20.23.198.244/32", "20.23.199.120/32", + "20.24.11.193/32", "20.24.14.233/32", + "20.24.111.211/32", "20.26.34.120/32", "20.26.179.11/32", "20.26.179.32/32", + "20.31.11.50/32", + "20.31.11.61/32", + "20.31.253.108/32", + "20.31.253.111/32", + "20.31.253.241/32", + "20.36.0.108/32", + "20.36.179.218/32", "20.36.220.93/32", "20.36.222.59/32", "20.36.222.60/32", @@ -31259,21 +32703,42 @@ "20.44.72.217/32", "20.44.73.253/32", "20.45.3.127/32", + "20.48.252.223/32", + "20.48.253.250/32", + "20.49.154.244/32", + "20.52.42.71/32", + "20.52.42.88/32", + "20.52.42.103/32", + "20.52.48.3/32", "20.54.22.195/32", "20.57.54.192/28", "20.58.119.224/28", + "20.59.107.42/32", + "20.61.115.29/32", "20.64.193.51/32", "20.64.198.144/29", "20.64.198.152/31", "20.66.8.42/32", "20.67.137.212/32", "20.67.141.157/32", + "20.67.174.121/32", + "20.67.174.122/32", + "20.67.174.230/32", "20.68.122.206/32", "20.68.124.199/32", "20.69.33.38/32", "20.69.33.177/32", + "20.70.76.207/32", + "20.70.92.207/32", "20.71.203.39/32", + "20.72.220.20/32", "20.73.240.208/28", + "20.74.26.252/32", + "20.74.73.84/32", + "20.74.73.102/32", + "20.74.73.111/32", + "20.74.73.116/32", + "20.74.73.118/32", "20.74.94.42/32", "20.74.94.73/32", "20.74.94.109/32", @@ -31284,6 +32749,9 @@ "20.74.95.102/32", "20.74.114.253/32", "20.74.115.131/32", + "20.75.35.99/32", + "20.75.36.108/32", + "20.75.36.138/32", "20.76.151.201/32", "20.76.198.36/32", "20.76.198.91/32", @@ -31293,11 +32761,15 @@ "20.76.199.32/32", "20.76.199.49/32", "20.76.199.126/32", + "20.81.62.249/32", + "20.81.63.102/32", + "20.81.63.110/32", "20.85.63.177/32", "20.85.63.178/31", "20.85.63.180/30", "20.85.63.184/31", "20.85.63.186/32", + "20.85.132.139/32", "20.90.9.64/32", "20.90.49.200/32", "20.90.50.109/32", @@ -31307,9 +32779,19 @@ "20.90.53.162/32", "20.90.202.115/32", "20.92.8.154/32", + "20.92.28.74/32", "20.92.29.167/32", "20.93.194.151/32", "20.93.234.6/32", + "20.94.202.208/31", + "20.94.202.212/31", + "20.94.203.0/31", + "20.94.203.4/31", + "20.94.203.8/31", + "20.94.203.22/31", + "20.94.203.32/31", + "20.94.203.46/31", + "20.94.203.202/32", "20.96.83.110/32", "20.96.87.32/32", "20.96.151.144/29", @@ -31327,10 +32809,15 @@ "20.101.251.166/32", "20.103.48.225/32", "20.104.25.35/32", + "20.104.80.97/32", + "20.104.84.184/32", + "20.105.50.43/32", "20.106.80.235/32", "20.106.81.123/32", "20.106.103.34/32", "20.107.160.31/32", + "20.107.200.159/32", + "20.107.201.215/32", "20.108.77.49/32", "20.108.77.50/31", "20.108.77.52/30", @@ -31351,10 +32838,13 @@ "20.108.140.44/32", "20.108.140.55/32", "20.108.140.64/32", + "20.108.151.45/32", + "20.111.23.234/32", "20.111.40.153/32", "20.111.79.110/31", "20.112.52.80/29", "20.112.52.88/31", + "20.114.237.80/32", "20.115.170.112/29", "20.115.170.120/31", "20.115.170.128/29", @@ -31364,13 +32854,22 @@ "20.115.249.164/30", "20.115.249.168/31", "20.115.249.170/32", + "20.116.67.152/32", "20.118.145.8/32", "20.118.150.70/32", + "20.118.160.96/32", + "20.118.178.95/32", + "20.118.179.32/32", + "20.118.180.58/32", + "20.120.28.100/32", "20.121.150.131/32", + "20.121.182.157/32", "20.124.57.114/32", "20.124.59.116/32", "20.124.59.146/32", + "20.124.125.37/32", "20.125.76.39/32", + "20.126.7.61/32", "20.126.142.34/32", "20.126.142.38/32", "20.126.142.41/32", @@ -31385,17 +32884,64 @@ "20.150.153.110/32", "20.150.153.126/32", "20.150.157.146/32", + "20.150.157.211/32", "20.150.158.183/32", "20.160.197.20/32", + "20.160.200.26/32", + "20.160.201.249/32", + "20.160.202.5/32", + "20.160.202.9/32", + "20.160.207.88/32", + "20.160.207.234/32", + "20.160.207.247/32", + "20.161.14.15/32", + "20.162.89.46/32", + "20.162.91.242/32", + "20.162.91.246/32", + "20.162.91.248/32", + "20.162.91.251/32", + "20.162.92.10/32", + "20.162.92.34/32", + "20.162.92.38/32", + "20.162.92.49/32", + "20.162.92.51/32", + "20.162.92.69/32", + "20.162.92.70/32", + "20.162.92.79/32", + "20.162.92.85/32", + "20.162.92.105/32", + "20.162.92.113/32", + "20.162.92.116/32", + "20.162.92.141/32", + "20.162.92.167/32", + "20.162.92.186/32", + "20.162.92.204/32", + "20.162.92.239/32", + "20.162.92.240/32", + "20.162.92.253/32", + "20.162.92.255/32", + "20.162.93.13/32", "20.163.100.176/32", "20.165.143.148/32", "20.165.143.180/32", + "20.165.199.244/32", + "20.165.199.247/32", + "20.165.216.32/32", + "20.165.217.37/32", + "20.165.224.30/32", + "20.165.224.128/32", + "20.165.224.181/32", + "20.165.225.66/32", + "20.165.232.199/32", + "20.165.234.25/32", "20.165.240.156/32", "20.165.240.158/32", "20.165.241.40/32", "20.165.241.61/32", "20.165.243.11/32", "20.165.243.57/32", + "20.166.122.152/32", + "20.166.122.229/32", "20.166.182.159/32", "20.166.182.163/32", "20.166.182.165/32", @@ -31405,7 +32951,15 @@ "20.166.182.204/32", "20.166.184.36/32", "20.166.184.39/32", + "20.166.230.171/32", + "20.166.230.184/32", + "20.166.230.192/32", + "20.166.244.38/32", "20.168.249.164/32", + "20.169.209.255/32", + "20.169.246.183/32", + "20.170.36.122/32", + "20.170.36.209/32", "20.175.140.128/32", "20.175.140.185/32", "20.175.140.191/32", @@ -31416,6 +32970,10 @@ "20.175.143.233/32", "20.175.151.166/32", "20.175.151.201/32", + "20.175.155.221/32", + "20.175.157.44/32", + "20.175.157.255/32", + "20.184.14.171/32", "20.184.57.4/32", "20.184.57.218/32", "20.184.58.46/32", @@ -31426,16 +32984,36 @@ "20.184.63.158/32", "20.184.63.216/32", "20.184.63.232/32", + "20.185.148.189/32", + "20.185.148.249/32", + "20.185.149.7/32", + "20.185.149.37/32", + "20.185.149.122/32", + "20.185.149.159/32", + "20.185.149.185/32", + "20.185.149.202/32", + "20.185.149.206/32", + "20.185.149.208/32", + "20.185.181.28/32", + "20.187.50.88/32", + "20.187.53.13/32", "20.187.114.178/32", "20.187.116.207/32", + "20.187.120.211/32", "20.188.72.248/32", "20.190.6.224/32", "20.190.7.24/32", "20.190.7.233/32", "20.190.7.239/32", + "20.190.8.13/32", + "20.190.8.21/32", + "20.190.8.196/32", "20.190.20.133/32", "20.190.102.146/32", "20.190.251.164/32", + "20.191.83.23/32", + "20.191.83.144/32", + "20.191.109.188/32", "20.193.131.246/31", "20.193.131.248/32", "20.193.131.250/32", @@ -31461,23 +33039,60 @@ "20.204.236.115/32", "20.204.236.147/32", "20.204.236.213/32", + "20.204.251.239/32", "20.205.119.72/32", "20.206.75.66/32", "20.206.229.223/32", "20.206.231.146/32", "20.211.237.204/32", + "20.213.24.76/32", + "20.213.31.166/32", + "20.218.181.177/32", + "20.218.182.135/32", + "20.219.160.169/32", + "20.219.210.31/32", + "20.219.210.182/32", + "20.219.213.154/32", "20.219.218.134/32", "20.219.226.117/32", "20.219.226.224/32", "20.220.128.26/32", "20.221.93.52/32", "20.221.93.63/32", + "20.221.114.243/32", + "20.221.115.81/32", + "20.221.115.101/32", + "20.223.173.77/32", + "20.223.173.134/32", + "20.223.173.172/32", + "20.223.238.244/32", + "20.226.65.185/32", "20.226.100.200/32", "20.227.120.240/28", "20.227.121.128/25", "20.227.125.0/29", "20.228.186.154/32", + "20.229.66.33/32", + "20.229.66.58/32", + "20.229.66.60/32", "20.229.66.63/32", + "20.229.90.40/32", + "20.229.90.50/32", + "20.229.90.63/32", + "20.229.90.66/32", + "20.229.90.71/32", + "20.229.100.222/32", + "20.231.83.98/32", + "20.231.84.58/32", + "20.231.84.71/32", + "20.231.84.75/32", + "20.231.84.87/32", + "20.231.221.127/32", + "20.231.223.70/32", + "20.231.223.77/32", + "20.231.223.78/32", + "20.232.27.65/32", + "20.232.137.89/32", "20.232.228.47/32", "20.232.228.80/32", "20.232.228.85/32", @@ -31486,6 +33101,12 @@ "20.232.228.143/32", "20.232.228.153/32", "20.232.229.26/32", + "20.234.102.149/32", + "20.234.102.216/32", + "20.234.199.217/32", + "20.234.199.218/32", + "20.234.199.228/32", + "20.234.199.249/32", "20.235.81.243/32", "20.235.115.136/32", "20.237.16.198/31", @@ -31494,12 +33115,29 @@ "20.237.23.162/32", "20.237.121.229/32", "20.237.122.187/32", + "20.238.91.220/32", "20.239.26.193/32", "20.239.27.66/32", "20.239.119.245/32", + "20.241.209.31/32", + "20.242.80.35/32", + "20.242.83.183/32", + "20.242.130.137/32", + "20.242.133.240/31", + "20.245.20.237/32", + "20.245.22.60/32", + "20.245.22.80/32", + "20.245.22.99/32", + "20.245.22.117/32", "20.245.63.76/32", "20.245.106.190/32", "20.245.106.217/32", + "20.245.124.138/32", + "20.245.124.190/32", + "20.245.135.225/32", + "20.245.224.228/32", + "20.245.224.234/32", + "20.245.224.250/32", "20.250.239.92/32", "20.250.239.107/32", "20.250.239.131/32", @@ -31510,6 +33148,30 @@ "20.250.239.193/32", "20.250.239.210/32", "20.252.24.241/32", + "20.253.131.82/32", + "20.253.152.1/32", + "20.253.153.93/32", + "20.253.153.175/32", + "20.253.185.152/32", + "20.253.202.136/32", + "20.253.202.155/32", + "20.253.202.164/32", + "20.253.203.68/32", + "20.253.203.71/32", + "20.253.203.104/32", + "20.253.203.148/32", + "20.253.203.162/32", + "20.253.203.167/32", + "20.253.203.178/32", + "20.253.203.218/32", + "20.253.203.229/32", + "20.253.203.234/32", + "20.253.204.18/32", + "20.253.204.42/32", + "20.253.204.52/32", + "20.253.204.69/32", + "20.253.228.46/32", + "20.253.229.11/32", "20.253.255.128/32", "20.253.255.130/32", "20.253.255.134/32", @@ -31517,13 +33179,34 @@ "20.253.255.146/32", "20.253.255.153/32", "20.253.255.157/32", + "20.254.135.150/32", + "20.254.148.98/31", + "20.254.148.126/32", + "20.254.151.234/32", + "20.254.167.71/32", "20.254.168.148/32", "20.254.173.207/32", "20.254.174.189/32", + "20.254.250.3/32", + "20.254.250.8/30", + "20.254.250.24/30", + "20.254.250.36/32", + "20.255.128.79/32", + "20.255.128.143/32", "23.97.54.160/32", "23.97.55.165/32", + "23.97.155.253/32", + "23.97.206.58/32", + "23.97.231.71/32", "23.98.83.96/28", + "23.99.136.70/32", + "23.99.140.238/32", + "23.100.36.80/32", "23.100.67.153/32", + "23.100.96.86/32", + "23.100.96.219/32", + "23.100.97.128/32", + "23.100.103.168/32", "23.101.201.123/32", "40.65.169.46/32", "40.65.169.97/32", @@ -31590,9 +33273,55 @@ "40.70.0.255/32", "40.70.29.49/32", "40.70.29.200/32", + "40.70.42.29/32", + "40.70.42.116/32", + "40.70.42.119/32", + "40.70.43.72/32", + "40.70.43.128/32", + "40.70.43.238/32", + "40.70.45.68/32", + "40.70.45.98/32", + "40.70.45.103/32", + "40.70.45.160/32", + "40.70.45.162/32", + "40.70.45.164/32", + "40.70.45.170/32", + "40.70.45.173/32", + "40.70.45.175/32", + "40.70.45.179/32", + "40.70.45.181/32", + "40.70.45.184/32", + "40.70.45.194/32", + "40.70.45.203/32", + "40.70.45.211/32", + "40.70.45.212/32", + "40.70.45.214/32", + "40.70.45.216/32", + "40.70.45.218/32", + "40.70.45.222/32", + "40.70.45.247/32", "40.70.148.112/28", "40.70.184.90/32", "40.71.14.16/28", + "40.71.43.67/32", + "40.71.114.4/32", + "40.71.114.81/32", + "40.71.120.58/32", + "40.71.120.126/32", + "40.71.121.55/32", + "40.71.122.28/32", + "40.71.123.128/32", + "40.71.125.234/32", + "40.71.160.53/32", + "40.71.160.87/32", + "40.71.161.1/32", + "40.71.161.45/32", + "40.71.165.147/32", + "40.71.165.156/32", + "40.71.166.47/32", + "40.71.167.104/32", + "40.71.167.123/32", + "40.71.207.129/32", "40.74.1.235/32", "40.74.6.204/32", "40.76.78.217/32", @@ -31709,7 +33438,19 @@ "40.82.187.223/32", "40.82.190.163/32", "40.82.191.58/32", + "40.83.10.91/32", + "40.83.10.185/32", + "40.83.14.26/32", + "40.83.14.64/32", + "40.83.14.124/32", + "40.83.14.204/32", + "40.83.182.65/32", + "40.83.183.7/32", + "40.83.183.17/32", + "40.83.183.233/32", + "40.83.183.239/32", "40.83.194.192/28", + "40.83.202.10/32", "40.84.2.83/32", "40.84.4.93/32", "40.84.4.119/32", @@ -31718,6 +33459,13 @@ "40.84.91.224/27", "40.84.95.128/28", "40.84.96.0/24", + "40.86.64.83/32", + "40.86.64.87/32", + "40.86.64.88/32", + "40.86.71.78/32", + "40.86.71.103/32", + "40.86.71.120/32", + "40.86.71.127/32", "40.89.136.227/32", "40.89.137.101/32", "40.89.142.184/32", @@ -31734,6 +33482,12 @@ "40.90.220.190/32", "40.90.220.196/32", "40.90.222.64/32", + "40.91.70.79/32", + "40.91.70.114/31", + "40.91.70.182/32", + "40.91.70.192/31", + "40.91.70.212/31", + "40.91.70.238/32", "40.91.74.37/32", "40.91.78.105/32", "40.91.114.40/29", @@ -31743,16 +33497,68 @@ "40.91.126.157/32", "40.91.127.44/32", "40.91.198.19/32", + "40.112.150.29/32", + "40.112.150.74/32", + "40.112.150.149/32", + "40.112.208.79/32", + "40.112.209.70/32", + "40.112.209.221/32", + "40.112.214.62/32", + "40.112.220.103/32", + "40.112.220.120/32", + "40.112.220.123/32", + "40.112.220.137/32", + "40.112.220.148/32", + "40.112.220.253/32", + "40.112.221.26/32", + "40.112.221.63/32", + "40.112.221.64/32", + "40.112.221.68/32", + "40.112.248.94/32", + "40.112.249.87/32", + "40.112.249.128/32", + "40.112.250.243/32", + "40.112.251.1/32", + "40.112.251.12/32", + "40.112.251.43/32", + "40.112.252.169/32", + "40.112.253.169/32", + "40.112.253.206/32", + "40.112.253.241/32", "40.113.121.176/32", + "40.114.110.221/32", "40.114.112.147/32", + "40.114.115.90/32", + "40.114.147.82/32", "40.114.217.8/32", + "40.114.242.47/32", "40.115.24.65/32", "40.115.25.50/32", "40.115.71.111/32", + "40.117.48.151/32", "40.117.113.165/32", + "40.117.121.2/32", + "40.117.121.77/32", + "40.117.121.99/32", + "40.117.121.116/32", + "40.117.121.214/32", + "40.117.122.3/32", + "40.117.122.31/32", + "40.117.122.70/32", + "40.117.122.91/32", + "40.117.210.129/32", + "40.117.210.135/32", + "40.117.210.149/32", "40.118.63.137/32", "40.118.97.232/32", + "40.118.165.68/32", + "40.118.165.112/32", + "40.118.165.126/32", + "40.118.167.227/32", + "40.118.200.201/32", "40.118.211.172/32", + "40.119.136.146/32", + "40.119.136.195/32", "40.119.145.130/32", "40.119.147.102/32", "40.119.154.72/32", @@ -31781,6 +33587,10 @@ "48.211.15.16/28", "48.211.15.64/27", "48.211.16.0/24", + "48.218.204.67/32", + "48.218.204.249/32", + "48.218.205.71/32", + "48.218.205.90/32", "51.11.26.92/32", "51.11.26.95/32", "51.11.108.72/32", @@ -31792,8 +33602,15 @@ "51.11.108.107/32", "51.11.108.110/32", "51.103.31.141/32", + "51.103.95.227/32", + "51.103.116.87/32", + "51.103.116.97/32", + "51.103.116.121/32", + "51.103.117.35/32", "51.104.9.16/28", + "51.104.56.5/32", "51.105.37.244/32", + "51.105.55.62/32", "51.105.67.224/28", "51.105.75.176/28", "51.105.124.64/32", @@ -31811,6 +33628,32 @@ "51.105.166.102/31", "51.105.166.106/32", "51.105.179.157/32", + "51.124.217.86/31", + "51.124.219.184/31", + "51.124.219.192/31", + "51.124.219.206/31", + "51.124.220.18/31", + "51.124.232.122/32", + "51.124.232.126/32", + "51.132.213.122/32", + "51.132.215.124/32", + "51.137.34.189/32", + "51.137.34.190/32", + "51.137.34.197/32", + "51.137.34.198/32", + "51.137.34.202/32", + "51.137.34.205/32", + "51.137.34.211/32", + "51.137.34.218/32", + "51.137.34.225/32", + "51.137.34.239/32", + "51.137.34.243/32", + "51.137.35.1/32", + "51.137.35.6/32", + "51.137.35.31/32", + "51.137.35.42/32", + "51.137.35.44/32", + "51.137.35.48/32", "51.137.136.13/32", "51.137.136.14/32", "51.137.136.34/32", @@ -31820,6 +33663,12 @@ "51.137.137.200/32", "51.137.137.237/32", "51.137.144.240/32", + "51.137.152.86/31", + "51.137.153.145/32", + "51.137.153.146/31", + "51.137.155.182/32", + "51.137.157.48/30", + "51.137.200.32/32", "51.138.200.138/32", "51.140.1.10/32", "51.140.8.108/32", @@ -31832,10 +33681,61 @@ "51.140.164.179/32", "51.140.191.146/32", "51.140.212.128/27", + "51.140.224.48/32", + "51.140.224.53/32", + "51.140.224.60/32", + "51.140.224.104/32", + "51.140.228.167/32", + "51.140.229.17/32", + "51.140.229.251/32", "51.140.230.246/32", + "51.140.231.1/32", + "51.140.231.96/32", + "51.140.231.99/32", "51.140.231.138/32", + "51.140.231.150/32", + "51.140.231.243/32", + "51.141.2.156/32", + "51.141.2.162/32", "51.141.2.189/32", + "51.141.3.241/32", + "51.141.4.9/32", "51.141.7.11/32", + "51.141.7.40/32", + "51.141.7.97/32", + "51.141.72.120/31", + "51.141.72.136/31", + "51.141.72.158/31", + "51.141.73.140/31", + "51.141.73.242/32", + "51.141.74.162/31", + "51.141.74.194/31", + "51.141.75.38/31", + "51.141.75.142/32", + "51.141.75.232/31", + "51.141.77.119/32", + "51.141.77.148/31", + "51.141.77.162/31", + "51.141.77.168/31", + "51.141.77.188/31", + "51.142.123.241/32", + "51.142.149.23/32", + "51.142.149.47/32", + "51.142.149.255/32", + "51.142.151.46/32", + "51.142.151.67/32", + "51.142.151.70/32", + "51.142.160.25/32", + "51.142.160.76/32", + "51.142.161.25/32", + "51.142.161.233/32", + "51.142.162.217/32", + "51.142.162.241/32", + "51.142.163.76/32", + "51.142.163.104/32", + "51.142.163.117/32", + "51.142.163.158/32", + "51.142.164.55/32", "51.142.187.141/32", "51.142.187.196/32", "51.143.58.207/32", @@ -31847,10 +33747,31 @@ "51.144.56.60/32", "51.145.108.227/32", "51.145.108.250/32", + "51.145.113.171/32", "51.145.181.195/32", "51.145.181.214/32", "52.137.56.200/32", "52.137.89.147/32", + "52.137.122.32/32", + "52.137.122.57/32", + "52.137.122.59/32", + "52.137.122.78/32", + "52.137.122.94/32", + "52.137.122.119/32", + "52.137.122.120/32", + "52.137.122.129/32", + "52.137.122.217/32", + "52.137.122.234/32", + "52.137.123.26/32", + "52.137.123.109/32", + "52.137.125.143/32", + "52.137.125.151/32", + "52.137.125.167/32", + "52.137.125.172/32", + "52.137.125.184/32", + "52.137.125.210/32", + "52.137.125.231/32", + "52.137.125.238/32", "52.138.227.160/28", "52.139.1.70/32", "52.139.1.156/32", @@ -31890,15 +33811,19 @@ "52.142.232.120/32", "52.143.73.88/32", "52.143.74.31/32", + "52.143.149.102/32", + "52.148.80.190/32", "52.148.115.188/32", "52.148.115.194/32", "52.148.115.238/32", "52.148.116.37/32", "52.148.161.45/32", "52.148.161.53/32", + "52.148.198.189/32", "52.149.61.128/32", "52.149.61.214/32", "52.149.63.211/32", + "52.151.1.88/32", "52.151.237.243/32", "52.151.238.5/32", "52.151.244.65/32", @@ -31922,6 +33847,7 @@ "52.155.182.138/32", "52.155.182.141/32", "52.156.88.173/32", + "52.156.117.16/32", "52.156.123.128/28", "52.156.197.208/32", "52.156.197.254/32", @@ -31940,6 +33866,32 @@ "52.156.206.43/32", "52.156.206.45/32", "52.156.206.46/31", + "52.156.217.132/32", + "52.156.217.136/32", + "52.156.217.138/32", + "52.156.217.142/32", + "52.156.217.144/32", + "52.156.217.147/32", + "52.156.217.155/32", + "52.156.217.156/32", + "52.156.217.158/32", + "52.156.217.161/32", + "52.156.217.163/32", + "52.156.217.164/32", + "52.156.217.169/32", + "52.156.217.172/32", + "52.156.217.199/32", + "52.156.217.213/32", + "52.156.217.217/32", + "52.156.217.219/32", + "52.156.217.223/32", + "52.156.217.224/32", + "52.156.217.227/32", + "52.156.217.233/32", + "52.156.217.234/32", + "52.156.217.239/32", + "52.156.217.240/32", + "52.156.217.248/32", "52.157.19.228/32", "52.157.20.142/32", "52.157.218.219/32", @@ -31964,13 +33916,48 @@ "52.158.28.235/32", "52.159.213.32/27", "52.159.213.128/25", + "52.160.104.221/32", + "52.161.13.132/32", + "52.161.13.138/32", + "52.161.13.153/32", + "52.161.15.92/32", + "52.161.15.223/32", + "52.161.128.12/32", + "52.161.145.118/32", + "52.161.151.13/32", + "52.161.176.67/32", + "52.164.210.39/32", + "52.164.251.14/32", + "52.166.161.57/32", + "52.166.201.48/32", + "52.166.201.203/32", "52.167.107.96/28", + "52.168.65.64/32", + "52.169.72.211/32", + "52.169.72.234/32", + "52.169.72.237/32", + "52.169.72.241/32", + "52.169.72.245/32", + "52.169.72.246/32", + "52.169.74.1/32", + "52.169.74.13/32", + "52.169.74.19/32", + "52.169.74.34/32", + "52.169.74.43/32", + "52.169.74.46/32", + "52.169.74.52/32", + "52.169.74.63/32", + "52.169.74.76/32", + "52.169.74.78/32", "52.169.140.105/32", "52.169.192.237/32", + "52.170.103.154/32", "52.174.56.180/32", "52.177.85.43/32", "52.178.44.248/32", "52.178.89.44/32", + "52.178.140.160/32", + "52.179.19.214/32", "52.179.155.177/32", "52.179.194.73/32", "52.179.198.41/32", @@ -31986,7 +33973,20 @@ "52.183.63.140/32", "52.183.66.205/32", "52.183.75.62/32", + "52.183.114.151/32", + "52.183.114.152/32", + "52.183.114.167/32", + "52.183.114.168/32", + "52.183.114.171/32", + "52.183.114.177/32", + "52.183.114.189/32", + "52.183.127.5/32", + "52.183.127.13/32", "52.184.165.82/32", + "52.187.211.151/32", + "52.187.211.192/32", + "52.187.211.233/32", + "52.187.211.243/32", "52.188.217.236/32", "52.189.208.36/32", "52.189.213.36/32", @@ -31994,11 +33994,13 @@ "52.189.218.253/32", "52.190.26.220/32", "52.190.31.62/32", + "52.191.78.45/32", "52.191.128.12/32", "52.191.128.16/32", "52.191.129.65/32", "52.191.237.188/32", "52.191.238.65/32", + "52.224.124.102/32", "52.224.188.157/32", "52.224.188.168/32", "52.224.190.225/32", @@ -32007,6 +34009,10 @@ "52.224.201.223/32", "52.224.202.86/32", "52.224.202.91/32", + "52.224.233.31/32", + "52.224.237.191/32", + "52.224.237.208/32", + "52.224.237.247/32", "52.225.225.218/32", "52.225.231.232/32", "52.229.14.25/32", @@ -32025,14 +34031,23 @@ "52.229.14.86/32", "52.229.14.88/32", "52.229.14.91/32", + "52.230.23.237/32", + "52.230.66.140/32", + "52.230.68.241/32", + "52.232.100.107/32", "52.232.224.227/32", "52.232.225.84/32", "52.232.228.217/32", "52.232.245.96/32", "52.236.187.80/28", + "52.242.92.172/30", + "52.242.92.200/30", + "52.242.92.204/32", "52.249.25.160/32", "52.249.25.165/32", "52.249.211.17/32", + "57.151.144.75/32", + "57.151.144.95/32", "57.152.117.114/31", "57.152.117.120/29", "57.152.117.128/25", @@ -32052,6 +34067,7 @@ "57.155.103.48/28", "57.155.103.128/25", "65.52.138.123/32", + "65.52.150.35/32", "65.52.229.200/32", "68.218.141.6/31", "68.218.141.8/29", @@ -32071,17 +34087,58 @@ "85.210.196.208/28", "85.210.196.224/27", "85.210.225.0/24", + "98.64.96.3/32", + "98.64.96.4/32", + "98.64.96.33/32", + "98.64.96.41/32", + "98.64.96.43/32", + "98.64.96.46/32", + "98.64.96.52/32", + "98.64.96.173/32", + "98.64.96.192/32", + "98.64.96.197/32", + "98.64.96.204/32", "98.66.147.184/31", "98.66.147.192/27", "98.66.147.224/28", + "98.70.107.227/32", + "98.70.110.179/32", + "98.70.110.221/32", + "98.70.110.236/32", + "98.71.179.31/32", + "98.71.179.39/32", + "98.71.179.70/32", + "98.71.179.108/32", + "98.71.179.127/32", + "98.71.179.230/32", + "98.71.179.246/32", + "98.71.179.252/32", + "98.71.180.12/32", + "98.71.180.20/32", "104.40.28.202/32", + "104.40.69.220/32", + "104.40.69.224/32", + "104.40.73.30/32", + "104.40.92.144/32", + "104.40.129.14/32", "104.40.129.120/32", "104.41.37.185/32", + "104.41.130.175/32", + "104.41.130.203/32", + "104.41.130.229/32", + "104.41.130.235/32", + "104.41.131.81/32", "104.42.15.41/32", "104.42.34.58/32", "104.42.38.254/32", "104.42.54.24/32", + "104.42.54.148/32", "104.42.75.120/32", + "104.42.97.60/32", + "104.42.97.112/32", + "104.42.97.144/32", + "104.42.101.156/32", + "104.42.101.222/32", "104.42.211.215/32", "104.45.7.95/32", "104.45.65.169/32", @@ -32106,9 +34163,11 @@ "104.45.170.191/32", "104.45.170.194/32", "104.45.170.196/32", + "104.45.237.102/32", "104.46.116.211/32", "104.46.121.72/32", "104.46.122.189/32", + "104.46.210.120/32", "104.208.207.188/31", "104.208.207.208/29", "104.208.207.224/27", @@ -32118,18 +34177,164 @@ "104.210.0.32/32", "104.211.9.226/32", "104.214.225.33/32", + "108.142.79.39/32", + "108.142.79.115/32", + "108.142.79.130/32", + "108.142.79.154/32", + "108.142.79.192/30", + "108.142.79.210/32", + "108.142.79.214/32", + "108.142.79.228/30", + "108.142.79.242/31", + "108.143.4.252/32", + "108.143.4.255/32", + "108.143.6.27/32", + "108.143.6.28/32", + "108.143.103.225/32", + "108.143.103.226/32", + "108.143.103.231/32", + "108.143.103.242/32", + "108.143.103.252/32", + "108.143.143.50/32", + "108.143.166.28/32", + "108.143.172.54/32", "135.237.169.0/25", "137.116.52.31/32", + "137.116.192.123/32", "137.116.224.49/32", + "137.117.15.130/32", + "137.117.138.98/32", "138.91.147.71/32", "157.55.91.49/32", "157.55.91.50/31", "157.55.91.52/30", "157.55.91.56/29", + "168.61.147.110/32", "168.63.38.153/32", + "172.165.146.40/32", + "172.166.112.11/32", + "172.166.112.48/32", + "172.166.112.116/32", + "172.166.112.191/32", + "172.166.112.221/32", + "172.166.112.228/32", + "172.166.112.239/32", + "172.166.112.241/32", + "172.166.112.244/32", + "172.166.171.159/32", + "172.166.232.187/32", + "172.166.250.140/31", + "172.166.255.134/32", + "172.166.255.143/32", + "172.166.255.172/32", + "172.166.255.185/32", + "172.166.255.194/32", + "172.166.255.196/32", + "172.166.255.239/32", + "172.166.255.255/32", + "172.167.6.202/32", + "172.167.19.179/32", + "172.167.25.100/32", + "172.167.67.46/32", + "172.167.67.221/32", + "172.167.68.4/32", + "172.167.68.108/32", + "172.167.68.139/32", + "172.167.68.185/32", + "172.167.69.240/32", + "172.167.70.27/32", + "172.167.72.11/32", + "172.167.72.29/32", + "172.167.72.37/32", + "172.167.72.54/32", + "172.167.122.219/32", + "172.167.130.140/32", + "172.167.130.237/32", + "172.167.132.179/32", + "172.167.134.22/32", + "172.167.134.206/32", + "172.167.134.213/32", + "172.167.135.219/32", + "172.167.150.117/32", + "172.167.150.126/32", + "172.167.150.162/32", + "172.167.150.247/32", + "172.167.151.10/32", + "172.167.151.13/32", + "172.167.151.32/32", + "172.167.151.51/32", + "172.167.151.55/32", + "172.167.151.60/32", + "172.167.166.75/32", + "172.167.178.182/32", + "172.167.201.89/32", + "172.167.230.177/32", + "172.167.230.190/32", + "172.168.217.10/31", + "172.168.217.71/32", + "172.168.217.92/32", + "172.168.217.186/32", + "172.168.218.86/31", + "172.168.218.93/32", + "172.168.218.102/32", + "172.168.218.200/32", + "172.168.218.237/32", + "172.168.218.247/32", + "172.168.219.86/32", + "172.168.219.91/32", + "172.168.219.120/32", + "172.168.219.148/32", + "172.168.219.159/32", + "172.168.219.255/32", + "172.168.220.17/32", + "172.168.220.35/32", + "172.168.220.38/32", + "172.168.220.40/32", + "172.168.220.43/32", + "172.168.220.44/32", + "172.168.220.53/32", + "172.168.220.54/32", + "172.168.220.85/32", + "172.171.122.248/32", + "172.171.123.5/32", + "172.171.124.0/32", + "172.171.124.10/32", + "172.171.124.17/32", + "172.171.124.36/32", + "172.171.124.45/32", + "172.171.124.103/32", + "172.171.124.115/32", + "172.171.124.123/32", + "172.171.124.140/32", + "172.171.124.143/32", + "172.171.124.149/32", + "172.171.124.166/32", + "172.171.124.173/32", + "172.171.124.175/32", + "172.171.124.176/32", + "172.171.220.218/32", "172.173.47.82/31", "172.173.47.88/29", "172.173.135.148/32", + "172.177.185.228/32", + "172.178.34.48/32", + "172.178.34.50/32", + "172.178.34.63/32", + "172.178.34.68/32", + "172.178.34.70/32", + "172.178.34.73/32", + "172.178.34.86/32", + "172.178.34.105/32", + "172.178.34.217/32", + "172.178.34.218/32", + "172.178.35.3/32", + "172.178.35.5/32", + "172.178.35.13/32", + "172.178.35.17/32", + "172.178.35.23/32", + "172.178.35.37/32", + "172.178.36.171/32", + "172.178.36.172/32", "172.179.39.68/31", "172.179.39.72/29", "172.179.39.96/27", @@ -32151,7 +34356,19 @@ "172.187.41.0/25", "172.187.102.112/32", "172.187.102.114/31", + "172.190.201.131/32", + "172.190.201.141/32", + "172.190.202.29/32", + "172.191.178.94/32", + "172.191.180.161/32", "172.202.90.196/32", + "172.203.46.30/31", + "172.203.46.56/31", + "172.203.46.60/31", + "172.203.46.66/31", + "172.203.46.74/31", + "172.203.46.78/31", + "172.203.46.82/32", "172.208.163.48/28", "172.208.163.128/25", "172.208.164.0/30", @@ -32172,6 +34389,9 @@ "172.215.248.128/25", "172.215.249.0/24", "172.215.250.0/25", + "191.232.73.128/32", + "191.232.73.148/32", + "191.232.73.167/32", "191.233.21.52/32", "191.233.23.29/32", "191.234.216.10/32", @@ -32202,7 +34422,7 @@ "name": "MicrosoftContainerRegistry", "id": "MicrosoftContainerRegistry", "properties": { - "changeNumber": 58, + "changeNumber": 60, "region": "", "regionId": 0, "platform": "Azure", @@ -32299,8 +34519,10 @@ "40.80.50.136/29", "40.112.242.152/29", "40.120.74.8/29", + "48.193.50.40/29", "48.196.97.72/29", "48.197.94.24/29", + "48.198.97.72/29", "48.215.144.0/29", "48.216.8.0/29", "48.219.232.0/29", @@ -32370,6 +34592,7 @@ "158.23.122.64/29", "158.23.194.64/29", "167.105.104.0/29", + "172.194.86.160/29", "172.194.112.104/29", "172.198.112.0/29", "172.198.144.0/29", @@ -32503,6 +34726,7 @@ "2603:1030:1302:400::/125", "2603:1030:1402:400::/125", "2603:1030:1502:400::/125", + "2603:1030:1602:3::3b8/125", "2603:1030:1602:400::10/125", "2603:1030:1702:2::700/125", "2603:1040:5:402::88/125", @@ -32550,6 +34774,7 @@ "2603:1040:1602:800::10/125", "2603:1040:1602:c00::10/125", "2603:1040:1702:400::/125", + "2603:1040:1802:5::1b8/125", "2603:1040:1802:400::/125", "2603:1040:1802:800::/125", "2603:1040:1802:c00::/125", @@ -32558,6 +34783,7 @@ "2603:1040:1904:c00::/125", "2603:1040:1a02:3::690/125", "2603:1040:1a02:400::/125", + "2603:1040:1b02:2::700/125", "2603:1050:6:402::88/125", "2603:1050:6:802::88/125", "2603:1050:6:c02::88/125", @@ -32949,7 +35175,7 @@ "name": "PowerBI", "id": "PowerBI", "properties": { - "changeNumber": 89, + "changeNumber": 91, "region": "", "regionId": 0, "platform": "Azure", @@ -32960,10 +35186,13 @@ "4.150.35.96/28", "4.150.35.112/29", "4.171.26.72/29", + "4.189.206.176/28", + "4.189.206.192/29", "4.190.132.0/28", "4.190.142.16/28", "4.190.142.32/27", "4.192.250.208/28", + "4.195.7.224/27", "4.198.215.224/27", "4.199.114.144/29", "4.199.114.160/27", @@ -32972,6 +35201,7 @@ "4.206.229.128/27", "4.207.16.32/27", "4.207.16.128/26", + "4.207.188.128/26", "4.207.242.96/27", "4.207.242.128/26", "4.207.247.176/28", @@ -32986,6 +35216,8 @@ "4.239.66.192/26", "4.243.117.16/29", "4.243.139.160/28", + "4.247.186.224/28", + "4.247.187.0/26", "9.160.51.240/31", "9.160.51.244/30", "9.160.51.248/29", @@ -33063,6 +35295,7 @@ "20.41.65.146/31", "20.41.65.148/30", "20.41.65.152/29", + "20.41.160.192/26", "20.41.192.122/31", "20.41.192.124/30", "20.41.193.144/29", @@ -33115,10 +35348,12 @@ "20.51.21.160/29", "20.51.21.176/29", "20.51.21.240/29", + "20.51.36.160/27", "20.52.89.48/30", "20.52.95.0/29", "20.53.49.108/30", "20.53.53.192/29", + "20.58.120.224/27", "20.59.79.96/27", "20.59.79.192/28", "20.65.133.80/29", @@ -33300,12 +35535,17 @@ "40.120.86.148/30", "40.120.87.52/30", "48.194.0.128/26", + "48.194.140.0/27", "48.196.95.150/31", "48.196.97.240/30", "48.196.97.248/29", "48.197.87.142/31", "48.197.89.192/30", "48.197.89.200/29", + "48.198.95.150/31", + "48.198.97.240/30", + "48.198.97.248/29", + "48.199.6.192/26", "48.216.28.148/31", "48.216.28.160/30", "48.216.28.168/29", @@ -33419,10 +35659,13 @@ "52.172.85.16/29", "52.172.116.184/30", "52.172.116.190/31", + "52.190.166.64/26", "52.228.81.160/31", "52.228.81.168/29", "52.228.81.176/28", "52.228.81.192/27", + "52.238.37.192/26", + "52.240.160.192/26", "52.242.40.92/30", "52.242.40.96/29", "52.242.47.40/30", @@ -33538,8 +35781,11 @@ "167.105.182.160/27", "168.61.232.60/30", "168.61.239.8/30", + "172.165.73.32/27", "172.172.252.119/32", "172.172.255.174/31", + "172.175.125.0/26", + "172.176.2.192/26", "172.182.152.168/29", "172.182.174.208/28", "172.182.174.224/28", @@ -33556,9 +35802,11 @@ "172.194.79.134/31", "172.194.81.56/30", "172.194.81.96/29", + "172.196.59.232/29", "172.198.95.142/31", "172.198.95.152/30", "172.198.96.208/29", + "172.199.129.128/26", "172.201.237.92/30", "172.204.165.78/31", "172.204.165.120/30", @@ -33790,6 +36038,8 @@ "2603:1040:1904:2::740/123", "2603:1040:1a02:2::740/122", "2603:1040:1a02:3::100/123", + "2603:1040:1b02:2::760/123", + "2603:1040:1b02:2::7c0/122", "2603:1050:6::/122", "2603:1050:6::40/123", "2603:1050:6:1::5e0/123", @@ -35321,7 +37571,7 @@ "name": "PowerPlatformPlex", "id": "PowerPlatformPlex", "properties": { - "changeNumber": 18, + "changeNumber": 19, "region": "", "regionId": 0, "platform": "Azure", @@ -35359,9 +37609,13 @@ "4.203.121.64/29", "4.206.228.184/29", "4.206.229.32/27", + "4.207.189.192/26", + "4.207.190.0/23", "4.207.240.0/26", "4.207.240.64/28", "4.207.251.72/29", + "4.209.232.0/23", + "4.209.234.0/25", "4.213.28.0/29", "4.216.203.208/28", "4.216.204.192/29", @@ -35569,6 +37823,16 @@ "40.84.87.128/28", "40.117.28.240/29", "40.126.211.64/28", + "48.195.24.64/26", + "48.195.24.128/25", + "48.195.25.0/24", + "48.195.26.0/23", + "48.195.28.0/23", + "48.195.30.0/26", + "48.195.163.0/24", + "48.195.164.0/22", + "48.195.216.128/25", + "48.195.217.0/25", "48.220.46.192/26", "48.220.47.0/26", "48.223.173.64/26", @@ -35689,6 +37953,9 @@ "172.191.253.128/25", "172.192.80.128/25", "172.192.81.0/26", + "172.199.131.64/26", + "172.199.131.128/25", + "172.199.132.0/22", "172.201.236.144/28", "172.201.236.160/27", "172.201.236.192/26", @@ -35718,7 +37985,7 @@ "name": "PowerQueryOnline", "id": "PowerQueryOnline", "properties": { - "changeNumber": 42, + "changeNumber": 45, "region": "", "regionId": 0, "platform": "Azure", @@ -35748,6 +38015,9 @@ "4.203.121.16/29", "4.207.249.176/28", "4.207.251.64/29", + "4.209.237.150/31", + "4.209.237.176/29", + "4.209.237.184/30", "4.213.28.120/29", "4.213.29.128/28", "4.220.142.240/28", @@ -35872,6 +38142,8 @@ "20.150.174.158/31", "20.151.32.154/31", "20.170.175.240/28", + "20.172.60.176/29", + "20.172.60.184/30", "20.189.104.68/31", "20.189.175.164/31", "20.189.198.128/29", @@ -35953,8 +38225,19 @@ "40.120.64.216/31", "40.120.77.190/31", "40.124.65.172/31", + "48.195.223.8/29", + "48.195.223.128/30", "48.196.80.32/29", + "48.196.102.168/29", + "48.196.103.128/27", "48.197.72.32/29", + "48.197.94.184/29", + "48.197.95.192/27", + "48.198.80.32/29", + "48.198.104.40/29", + "48.198.104.128/27", + "48.199.0.188/30", + "48.199.8.208/29", "48.216.16.40/29", "48.219.192.40/29", "51.11.193.116/31", @@ -36005,6 +38288,7 @@ "52.182.144.152/31", "52.228.80.70/31", "52.231.151.216/31", + "52.238.20.48/29", "52.240.245.250/31", "52.242.44.240/29", "52.246.158.184/31", @@ -36012,8 +38296,10 @@ "57.152.116.160/28", "57.152.116.176/29", "57.155.34.128/29", + "68.210.30.96/27", "68.210.160.40/29", "68.211.19.176/29", + "68.211.31.64/27", "68.218.139.32/28", "68.218.139.48/29", "68.218.170.0/28", @@ -36027,6 +38313,7 @@ "68.221.107.216/29", "68.221.146.88/31", "68.221.157.72/31", + "70.153.90.96/27", "70.153.152.40/29", "74.7.40.40/29", "74.7.176.32/29", @@ -36054,6 +38341,10 @@ "104.214.166.138/31", "108.140.6.112/28", "108.140.24.152/29", + "131.163.111.114/31", + "131.163.111.116/30", + "131.163.111.120/29", + "131.163.111.192/28", "134.138.64.32/29", "135.224.32.160/28", "135.225.43.0/28", @@ -36075,6 +38366,8 @@ "172.173.8.96/31", "172.173.16.4/31", "172.173.24.4/31", + "172.175.14.20/30", + "172.175.14.24/29", "172.179.35.176/28", "172.179.35.224/29", "172.182.191.88/29", @@ -36085,6 +38378,7 @@ "172.187.102.64/29", "172.187.102.80/28", "172.194.64.32/29", + "172.194.86.128/27", "172.198.80.32/29", "172.204.152.40/29", "172.204.172.24/29", @@ -36122,11 +38416,15 @@ "2603:1010:404:402::168/126", "2603:1010:502::1c0/123", "2603:1020:5:1::200/123", + "2603:1020:5:1a::200/122", "2603:1020:5:402::160/125", "2603:1020:5:802::140/125", "2603:1020:5:c00::20/125", "2603:1020:104:4::20/123", + "2603:1020:104:6::430/124", + "2603:1020:104:6::4a0/123", "2603:1020:206:1::200/123", + "2603:1020:206:21::340/122", "2603:1020:206:402::160/126", "2603:1020:206:403::1a0/126", "2603:1020:305::200/123", @@ -36154,6 +38452,8 @@ "2603:1020:d04::200/123", "2603:1020:d04:402::160/125", "2603:1020:e04:1::200/123", + "2603:1020:e04:a::6e0/123", + "2603:1020:e04:b::80/124", "2603:1020:e04:402::160/125", "2603:1020:e04:802::140/125", "2603:1020:e04:c00::20/125", @@ -36191,6 +38491,7 @@ "2603:1030:107::200/123", "2603:1030:107:400::258/125", "2603:1030:210:1::200/123", + "2603:1030:210:2c::440/122", "2603:1030:210:402::160/125", "2603:1030:210:802::140/125", "2603:1030:210:c00::20/125", @@ -36200,10 +38501,12 @@ "2603:1030:40b:800::140/125", "2603:1030:40b:c00::140/125", "2603:1030:40c:1::200/123", + "2603:1030:40c:23::1c0/122", "2603:1030:40c:402::160/125", "2603:1030:40c:802::140/125", "2603:1030:40c:c00::20/125", "2603:1030:504:1::200/123", + "2603:1030:504:14::140/122", "2603:1030:504:402::450/125", "2603:1030:504:802::480/125", "2603:1030:504:c00::20/125", @@ -36221,6 +38524,7 @@ "2603:1030:807:c00::20/125", "2603:1030:902::1c0/123", "2603:1030:a07::200/123", + "2603:1030:a07:1f::5c0/122", "2603:1030:a07:402::358/126", "2603:1030:b04::200/123", "2603:1030:b04:402::160/125", @@ -36240,7 +38544,10 @@ "2603:1030:1402::1a0/123", "2603:1030:1502::1a0/123", "2603:1030:1602::1a0/123", + "2603:1030:1602:3::6c0/122", "2603:1030:1702::1a0/123", + "2603:1030:1702:3::740/123", + "2603:1030:1702:4::400/122", "2603:1040:5:1::200/123", "2603:1040:5:402::160/125", "2603:1040:5:802::140/125", @@ -36306,13 +38613,23 @@ "2603:1040:1602:c00::/125", "2603:1040:1702::1c0/123", "2603:1040:1802:3::a0/123", + "2603:1040:1802:4::550/124", + "2603:1040:1802:4::560/123", + "2603:1040:1802:5::80/122", "2603:1040:1904::1a0/123", "2603:1040:1a02::1a0/123", + "2603:1040:1a02:3::740/123", + "2603:1040:1a02:4::400/122", + "2603:1040:1b02::1a0/123", + "2603:1040:1b02:4::400/123", + "2603:1040:1b02:4::440/122", "2603:1050:6:1::200/123", "2603:1050:6:402::160/125", "2603:1050:6:802::140/125", "2603:1050:6:c00::c0/125", "2603:1050:301::1c0/123", + "2603:1050:301:4::350/124", + "2603:1050:301:4::360/123", "2603:1050:403::200/123", "2603:1050:403:400::88/125" ], @@ -36328,7 +38645,7 @@ "name": "SCCservice", "id": "SCCservice", "properties": { - "changeNumber": 10, + "changeNumber": 11, "region": "", "regionId": 0, "platform": "Azure", @@ -36384,6 +38701,7 @@ "51.12.101.160/29", "51.12.204.232/29", "51.13.128.16/29", + "51.59.58.192/27", "51.107.128.40/29", "51.107.192.136/29", "51.116.60.248/29", @@ -36478,22 +38796,62 @@ "name": "Scuba", "id": "Scuba", "properties": { - "changeNumber": 22, + "changeNumber": 28, "region": "", "regionId": 0, "platform": "Azure", "systemService": "Scuba", "addressPrefixes": [ + "4.145.16.144/29", + "4.145.16.192/26", "4.150.34.96/29", "4.150.232.16/29", + "4.161.10.44/30", + "4.161.10.80/28", + "4.161.10.96/31", + "4.165.109.112/28", + "4.165.111.40/30", + "4.165.111.64/28", + "4.172.95.108/31", + "4.172.95.128/26", + "4.176.30.64/26", + "4.185.227.224/28", + "4.185.231.160/30", + "4.188.8.98/31", + "4.188.8.208/29", + "4.188.8.224/27", "4.190.132.16/29", + "4.191.84.176/28", "4.194.228.0/29", + "4.196.130.126/31", + "4.196.130.164/30", + "4.196.130.176/28", + "4.196.130.192/27", "4.199.173.4/30", "4.199.173.8/31", + "4.201.240.170/31", + "4.201.241.96/27", + "4.201.241.128/28", + "4.216.1.208/28", + "4.216.1.224/27", + "4.216.2.0/31", + "4.219.20.96/28", + "4.219.21.204/30", + "4.219.21.240/28", + "4.221.221.204/30", + "4.221.222.0/27", + "4.221.222.32/31", "4.229.112.98/31", "4.229.112.100/30", + "4.230.123.28/30", + "4.230.123.64/28", + "4.230.123.80/31", + "4.231.242.0/26", + "4.231.242.64/27", "4.243.117.44/30", "4.243.117.48/31", + "4.243.158.2/31", + "4.243.158.176/28", "9.160.56.72/29", "9.160.60.84/30", "9.160.60.88/31", @@ -36509,11 +38867,20 @@ "20.19.31.176/29", "20.26.21.232/29", "20.42.174.32/28", + "20.45.150.72/29", + "20.51.41.112/29", + "20.51.41.128/26", + "20.58.79.152/31", "20.111.111.26/31", "20.111.111.28/30", "20.164.154.32/29", "20.167.128.240/29", + "20.172.116.240/28", + "20.173.59.144/28", + "20.173.60.156/30", + "20.173.60.192/27", "20.175.6.248/29", + "20.200.12.46/31", "20.200.166.216/29", "20.203.91.88/29", "20.204.198.192/29", @@ -36526,26 +38893,60 @@ "20.226.208.184/29", "20.233.129.152/29", "20.241.116.184/29", + "40.75.148.224/27", + "40.75.149.0/26", + "40.75.149.64/29", "40.80.103.224/29", "40.117.27.192/29", + "48.195.218.212/30", + "48.195.218.216/31", + "48.195.239.128/27", "48.196.101.64/29", "48.197.92.176/29", + "48.198.102.192/29", + "48.199.8.0/30", + "48.199.8.4/31", + "48.199.12.192/28", + "48.199.133.201/32", + "48.199.134.0/24", + "48.199.135.0/27", + "48.200.91.184/29", + "48.202.70.72/30", + "48.202.70.96/27", + "48.202.70.128/26", + "48.202.70.192/28", + "48.202.160.96/27", + "48.202.160.128/26", + "48.202.160.192/29", + "48.202.160.200/30", + "48.202.160.204/31", + "48.202.161.0/24", "48.216.34.128/29", "48.219.208.72/29", "48.219.213.158/31", "48.219.213.176/30", "48.221.145.84/30", "48.221.145.88/31", + "48.223.56.64/26", "51.4.136.72/29", "51.4.143.88/30", "51.4.143.92/31", "51.56.83.90/31", "51.56.83.112/30", + "51.58.58.32/28", "51.142.131.240/29", "52.148.43.192/29", "52.172.85.24/29", "52.188.246.16/28", + "52.240.193.0/27", + "52.240.193.32/28", + "52.249.21.148/30", + "52.249.21.152/31", + "52.249.21.160/27", + "52.255.31.244/31", + "52.255.31.248/29", "57.151.222.216/29", + "57.158.18.20/31", "57.158.117.232/30", "57.158.117.236/31", "68.154.144.170/31", @@ -36557,22 +38958,29 @@ "68.219.174.64/28", "68.219.193.80/28", "70.153.166.216/29", + "72.146.90.80/28", "72.155.53.168/30", "72.155.53.172/31", "74.7.56.200/29", "74.7.60.198/31", "74.7.60.200/30", "74.7.193.48/29", + "74.161.236.144/28", + "74.161.238.172/30", + "74.161.238.208/28", "74.162.131.38/31", "74.162.131.40/30", "74.163.219.206/31", "74.163.219.216/30", + "74.225.44.80/29", "74.242.4.80/29", "74.249.142.200/29", "85.211.79.128/29", "104.208.170.56/29", "104.208.180.140/30", "134.138.83.8/29", + "134.138.217.144/28", + "134.138.217.160/27", "135.13.132.204/30", "135.13.132.208/31", "135.149.122.216/30", @@ -36584,13 +38992,28 @@ "145.191.2.72/30", "145.191.2.76/31", "168.61.240.128/29", + "172.165.73.64/29", + "172.165.73.72/30", + "172.165.84.120/29", + "172.165.84.144/28", + "172.165.84.192/26", + "172.170.16.0/25", + "172.170.16.128/28", "172.172.252.120/29", "172.172.255.128/29", + "172.175.125.64/29", + "172.175.178.64/26", + "172.175.178.128/28", + "172.175.178.144/29", + "172.175.178.152/30", "172.186.55.236/30", "172.186.55.240/31", "172.187.71.68/30", "172.191.219.40/29", + "172.192.184.180/31", + "172.192.184.192/28", "172.194.82.248/29", + "172.196.61.166/31", "172.198.98.184/29", "172.204.167.112/29", "172.204.242.56/30", @@ -36624,6 +39047,7 @@ "2603:1040:1802:2::350/124", "2603:1040:1904:2::4b0/124", "2603:1040:1a02:3::420/124", + "2603:1040:1b02:3::600/124", "2603:1050:301:2::5e0/124" ], "networkFeatures": [ @@ -36694,7 +39118,7 @@ "name": "SerialConsole", "id": "SerialConsole", "properties": { - "changeNumber": 15, + "changeNumber": 18, "region": "", "regionId": 0, "platform": "Azure", @@ -36740,6 +39164,7 @@ "20.53.53.224/32", "20.53.55.174/32", "20.58.68.62/31", + "20.59.209.120/31", "20.69.5.160/31", "20.69.5.162/32", "20.69.137.213/32", @@ -36804,8 +39229,10 @@ "40.113.178.49/32", "40.117.27.221/32", "40.120.87.50/31", + "48.192.139.160/31", "48.196.95.148/31", "48.197.87.140/31", + "48.198.95.148/31", "48.216.36.210/31", "48.216.36.242/31", "48.219.210.22/31", @@ -36837,7 +39264,9 @@ "52.147.119.30/32", "52.159.214.194/32", "52.172.82.199/32", + "52.185.219.5/32", "52.228.86.177/32", + "52.240.161.136/32", "52.242.40.90/32", "57.151.231.70/31", "57.151.231.98/31", @@ -36903,8 +39332,10 @@ "2603:1040:1302:5::360/124", "2603:1040:1503:5::6f0/124", "2603:1040:1702:3::590/124", + "2603:1040:1802:5::1a0/124", "2603:1040:1904:2::4a0/124", - "2603:1040:1a02:2::4c0/124" + "2603:1040:1a02:2::4c0/124", + "2603:1040:1b02:2::4c0/124" ], "networkFeatures": [ "API", @@ -36918,7 +39349,7 @@ "name": "ServiceFabric", "id": "ServiceFabric", "properties": { - "changeNumber": 66, + "changeNumber": 68, "region": "", "regionId": 0, "platform": "Azure", @@ -37057,8 +39488,10 @@ "40.115.113.228/32", "40.120.74.4/30", "40.123.204.26/32", + "48.193.50.104/29", "48.196.97.168/29", "48.197.94.104/29", + "48.198.97.168/29", "48.215.144.8/30", "48.216.8.12/30", "48.219.232.12/30", @@ -37179,6 +39612,7 @@ "158.23.194.72/30", "167.105.104.8/30", "168.61.142.48/30", + "172.194.86.224/29", "172.194.112.240/30", "172.198.112.8/30", "172.198.144.8/30", @@ -37314,6 +39748,7 @@ "2603:1030:1302:400::18/125", "2603:1030:1402:400::18/125", "2603:1030:1502:400::18/125", + "2603:1030:1602:3::618/125", "2603:1030:1602:400::18/125", "2603:1030:1702:2::710/125", "2603:1040:5:402::98/125", @@ -37361,6 +39796,7 @@ "2603:1040:1602:800::20/125", "2603:1040:1602:c00::20/125", "2603:1040:1702:400::18/125", + "2603:1040:1802:5::5a8/125", "2603:1040:1802:400::18/125", "2603:1040:1802:800::10/125", "2603:1040:1802:c00::10/125", @@ -37369,6 +39805,7 @@ "2603:1040:1904:c00::10/125", "2603:1040:1a02:3::700/125", "2603:1040:1a02:400::10/125", + "2603:1040:1b02:2::710/125", "2603:1050:6:402::98/125", "2603:1050:6:802::98/125", "2603:1050:6:c02::98/125", @@ -37389,7 +39826,7 @@ "name": "SqlManagement", "id": "SqlManagement", "properties": { - "changeNumber": 77, + "changeNumber": 79, "region": "", "regionId": 0, "platform": "Azure", @@ -37696,10 +40133,13 @@ "40.123.219.239/32", "40.126.238.47/32", "40.127.3.232/32", + "48.193.52.224/27", "48.196.100.160/28", "48.196.102.128/27", "48.197.92.16/28", "48.197.94.128/27", + "48.198.102.32/28", + "48.198.104.0/27", "48.215.146.32/27", "48.215.146.64/27", "48.216.10.224/27", @@ -37920,6 +40360,7 @@ "167.105.106.64/27", "168.62.198.63/32", "172.194.84.64/28", + "172.194.89.32/27", "172.194.112.160/27", "172.194.112.192/27", "172.198.99.0/28", @@ -38133,6 +40574,7 @@ "2603:1030:1402:400::140/122", "2603:1030:1502:3::280/123", "2603:1030:1602:3::260/123", + "2603:1030:1602:4::420/123", "2603:1030:1602:400::40/122", "2603:1030:1702:3::340/123", "2603:1030:1702:3::720/123", @@ -38216,6 +40658,7 @@ "2603:1040:1702:400::160/123", "2603:1040:1702:400::300/123", "2603:1040:1802:2::360/123", + "2603:1040:1802:5::7e0/123", "2603:1040:1802:400::320/123", "2603:1040:1802:400::340/123", "2603:1040:1802:800::1a0/123", @@ -38233,6 +40676,8 @@ "2603:1040:1a02:3::720/123", "2603:1040:1a02:400::a0/123", "2603:1040:1a02:400::c0/123", + "2603:1040:1b02:3::3c0/123", + "2603:1040:1b02:3::7a0/123", "2603:1050:6:402::380/122", "2603:1050:6:802::260/123", "2603:1050:6:802::280/123", @@ -38299,13 +40744,14 @@ "name": "StorageSyncService", "id": "StorageSyncService", "properties": { - "changeNumber": 54, + "changeNumber": 57, "region": "", "regionId": 0, "platform": "Azure", "systemService": "StorageSyncService", "addressPrefixes": [ "4.171.52.120/29", + "9.160.69.152/29", "9.160.80.48/29", "9.205.52.88/29", "9.205.75.40/29", @@ -38363,6 +40809,7 @@ "40.89.17.232/29", "48.196.95.152/29", "48.197.87.144/29", + "48.198.95.152/29", "48.216.8.56/29", "48.216.36.248/29", "48.219.212.72/29", @@ -38523,9 +40970,11 @@ "2603:1040:1602:400::c0/123", "2603:1040:1702:3::5a0/123", "2603:1040:1702:400::120/123", + "2603:1040:1802:5::160/123", "2603:1040:1802:400::c0/123", "2603:1040:1904:2::480/123", "2603:1040:1a02:2::480/123", + "2603:1040:1b02:2::480/123", "2603:1050:6:1::300/123", "2603:1050:6:802::2a0/123", "2603:1050:301:400::120/123", @@ -38539,11 +40988,62 @@ ] } }, + { + "name": "SystemServiceAzureSpringAppsResourceProvider", + "id": "SystemServiceAzureSpringAppsResourceProvider", + "properties": { + "changeNumber": 1, + "region": "", + "regionId": 0, + "platform": "Azure", + "systemService": "SystemServiceAzureSpringAppsResourceProvider", + "addressPrefixes": [ + "4.158.183.224/27", + "4.160.57.128/27", + "4.178.163.128/27", + "4.182.146.64/27", + "4.186.89.32/27", + "4.191.124.224/27", + "4.195.181.96/27", + "4.204.23.32/27", + "4.208.161.160/27", + "4.222.212.224/27", + "4.229.70.192/27", + "4.230.169.160/27", + "40.84.117.224/27", + "48.209.101.160/27", + "48.210.102.64/27", + "48.211.55.32/27", + "48.214.139.0/27", + "52.148.50.96/27", + "57.154.102.160/27", + "57.155.138.96/27", + "68.218.188.64/27", + "72.147.143.224/27", + "72.154.50.0/27", + "74.242.38.224/27", + "74.242.224.128/27", + "74.243.196.96/27", + "135.224.49.224/27", + "135.225.68.128/27", + "172.173.57.160/27", + "172.178.153.64/27", + "172.187.45.192/27", + "172.213.203.128/27" + ], + "networkFeatures": [ + "NSG", + "API", + "FW", + "UDR" + ] + } + }, { "name": "KustoAnalytics", "id": "KustoAnalytics", "properties": { - "changeNumber": 18, + "changeNumber": 19, "region": "", "regionId": 0, "platform": "Azure", @@ -38612,6 +41112,7 @@ "40.117.25.128/27", "48.196.94.128/27", "48.197.84.160/27", + "48.198.94.128/27", "48.216.26.160/27", "48.219.199.224/27", "51.53.41.96/27", @@ -38715,6 +41216,7 @@ "2603:1040:1802:1::680/121", "2603:1040:1904:2::200/121", "2603:1040:1a02:2::200/121", + "2603:1040:1b02:2::200/121", "2603:1050:6:2::700/121", "2603:1050:6:7::80/122", "2603:1050:301:2::80/121", @@ -38732,7 +41234,7 @@ "name": "WindowsVirtualDesktop", "id": "WindowsVirtualDesktop", "properties": { - "changeNumber": 32, + "changeNumber": 33, "region": "", "regionId": 0, "platform": "Azure", @@ -38740,6 +41242,8 @@ "addressPrefixes": [ "40.64.144.0/20", "51.5.0.0/16", + "57.156.5.248/29", + "57.156.73.192/28", "2603:1061:2010::/48", "2603:1061:2011::/48" ], @@ -38755,7 +41259,7 @@ "name": "WindowsAdminCenter", "id": "WindowsAdminCenter", "properties": { - "changeNumber": 36, + "changeNumber": 37, "region": "", "regionId": 0, "platform": "Azure", @@ -38802,6 +41306,7 @@ "40.89.23.224/29", "48.196.84.144/29", "48.197.76.144/29", + "48.198.84.144/29", "48.216.17.104/29", "48.219.193.104/29", "51.12.42.72/29", @@ -38895,6 +41400,7 @@ "2603:1040:1802::288/125", "2603:1040:1904::708/125", "2603:1040:1a02::708/125", + "2603:1040:1b02::708/125", "2603:1050:301::3e8/125" ], "networkFeatures": [ @@ -38905,6 +41411,45 @@ ] } }, + { + "name": "ZeroTrustSegmentation", + "id": "ZeroTrustSegmentation", + "properties": { + "changeNumber": 1, + "region": "", + "regionId": 0, + "platform": "Azure", + "systemService": "ZeroTrustSegmentation", + "addressPrefixes": [ + "48.220.60.10/32", + "48.220.60.12/30", + "57.158.47.121/32", + "57.158.47.124/30", + "72.147.59.211/32", + "72.147.61.144/30", + "131.145.67.223/32", + "131.145.67.244/30", + "132.164.237.99/32", + "132.164.237.100/30", + "132.220.81.153/32", + "132.220.81.156/30", + "134.33.186.225/32", + "134.33.186.228/30", + "135.119.0.33/32", + "135.119.0.48/30", + "172.208.252.131/32", + "172.208.254.100/30", + "172.215.90.238/32", + "172.215.94.80/30" + ], + "networkFeatures": [ + "NSG", + "API", + "FW", + "UDR" + ] + } + }, { "name": "ActionGroup.AustraliaCentral", "id": "ActionGroup.AustraliaCentral", @@ -39237,6 +41782,22 @@ "networkFeatures": null } }, + { + "name": "ActionGroup.EastUS3", + "id": "ActionGroup.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "ActionGroup", + "addressPrefixes": [ + "134.138.99.4/30", + "2603:1030:1402:400::40/125" + ], + "networkFeatures": null + } + }, { "name": "ActionGroup.EastUSSTG", "id": "ActionGroup.EastUSSTG", @@ -39330,13 +41891,15 @@ "name": "ActionGroup.IndonesiaCentral", "id": "ActionGroup.IndonesiaCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "indonesiacentral", "regionId": 6, "platform": "Azure", "systemService": "ActionGroup", "addressPrefixes": [ + "48.193.50.96/30", "70.153.176.24/30", + "2603:1040:1802:5::5a0/125", "2603:1040:1802:400::40/125" ], "networkFeatures": null @@ -40615,6 +43178,27 @@ ] } }, + { + "name": "ApiManagement.EastUS3", + "id": "ApiManagement.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureApiManagement", + "addressPrefixes": [ + "134.138.70.16/28", + "2603:1030:1402::740/124" + ], + "networkFeatures": [ + "API", + "NSG", + "UDR", + "FW" + ] + } + }, { "name": "ApiManagement.EastUSSTG", "id": "ApiManagement.EastUSSTG", @@ -42565,6 +45149,27 @@ ] } }, + { + "name": "AppService.EastUS3", + "id": "AppService.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureAppService", + "addressPrefixes": [ + "134.138.77.0/24", + "2603:1030:1402:2::/120" + ], + "networkFeatures": [ + "API", + "NSG", + "UDR", + "FW" + ] + } + }, { "name": "AppService.EastUSSTG", "id": "AppService.EastUSSTG", @@ -44825,6 +47430,24 @@ ] } }, + { + "name": "AppServiceManagement.EastUS3", + "id": "AppServiceManagement.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureAppServiceManagement", + "addressPrefixes": [ + "134.138.79.0/26", + "2603:1030:1402:2::380/122" + ], + "networkFeatures": [ + "NSG" + ] + } + }, { "name": "AppServiceManagement.EastUSSTG", "id": "AppServiceManagement.EastUSSTG", @@ -46367,6 +48990,24 @@ "networkFeatures": null } }, + { + "name": "AzureArcInfrastructure.EastUS3", + "id": "AzureArcInfrastructure.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureArcInfrastructure", + "addressPrefixes": [ + "134.138.76.120/30", + "134.138.88.84/32", + "134.138.99.12/32", + "2603:1030:1402:2::240/124" + ], + "networkFeatures": null + } + }, { "name": "AzureArcInfrastructure.EastUSSTG", "id": "AzureArcInfrastructure.EastUSSTG", @@ -47398,12 +50039,13 @@ "name": "AzureAttestation.AustraliaCentral", "id": "AzureAttestation.AustraliaCentral", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "australiacentral", "regionId": 58, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.199.198.248/29", "20.37.229.172/30", "20.53.0.104/30", "2603:1010:304:2::6b0/124" @@ -47415,13 +50057,14 @@ "name": "AzureAttestation.AustraliaCentral2", "id": "AzureAttestation.AustraliaCentral2", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "australiacentral2", "regionId": 59, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "20.53.56.4/30", + "20.167.183.152/29", "20.193.96.12/30", "2603:1010:404:2::740/124" ], @@ -47432,12 +50075,13 @@ "name": "AzureAttestation.AustraliaEast", "id": "AzureAttestation.AustraliaEast", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "australiaeast", "regionId": 3, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.195.110.184/29", "13.70.79.80/30", "20.53.47.64/30" ], @@ -47448,12 +50092,13 @@ "name": "AzureAttestation.AustraliaSoutheast", "id": "AzureAttestation.AustraliaSoutheast", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "australiasoutheast", "regionId": 4, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.199.42.232/29", "104.46.162.16/30", "104.46.179.240/30", "2603:1010:207::3e0/124" @@ -47497,12 +50142,13 @@ "name": "AzureAttestation.BrazilSouth", "id": "AzureAttestation.BrazilSouth", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "brazilsouth", "regionId": 9, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "51.59.56.192/29", "191.233.207.212/30", "191.238.72.72/30" ], @@ -47513,12 +50159,13 @@ "name": "AzureAttestation.BrazilSoutheast", "id": "AzureAttestation.BrazilSoutheast", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "brazilse", "regionId": 77, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.238.11.112/29", "20.195.146.64/30", "191.233.51.220/30" ], @@ -47529,12 +50176,13 @@ "name": "AzureAttestation.CanadaCentral", "id": "AzureAttestation.CanadaCentral", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "canadacentral", "regionId": 11, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.172.85.24/29", "13.71.175.208/30", "20.48.193.180/30" ], @@ -47545,12 +50193,13 @@ "name": "AzureAttestation.CanadaEast", "id": "AzureAttestation.CanadaEast", "properties": { - "changeNumber": 3, + "changeNumber": 4, "region": "canadaeast", "regionId": 12, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "20.200.5.104/29", "40.69.111.116/30", "40.89.23.44/30", "2603:1030:1005:3::1e0/124" @@ -47562,12 +50211,13 @@ "name": "AzureAttestation.CentralIndia", "id": "AzureAttestation.CentralIndia", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "centralindia", "regionId": 21, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.247.186.56/29", "20.43.123.196/30", "20.192.43.76/30", "2603:1040:a06:2::2a0/123" @@ -47579,14 +50229,15 @@ "name": "AzureAttestation.CentralUS", "id": "AzureAttestation.CentralUS", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "centralus", "regionId": 31, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "20.40.225.60/30", - "20.44.12.140/30" + "20.44.12.140/30", + "172.170.180.48/29" ], "networkFeatures": null } @@ -47595,7 +50246,7 @@ "name": "AzureAttestation.CentralUSEUAP", "id": "AzureAttestation.CentralUSEUAP", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "centraluseuap", "regionId": 48, "platform": "Azure", @@ -47603,6 +50254,7 @@ "addressPrefixes": [ "20.46.11.4/30", "168.61.140.108/30", + "172.215.123.104/29", "2603:1030:f:2::4c0/123" ], "networkFeatures": null @@ -47612,13 +50264,14 @@ "name": "AzureAttestation.ChileCentral", "id": "AzureAttestation.ChileCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "chilec", "regionId": 10, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "68.211.19.184/30", + "68.211.31.176/29", "2603:1050:301::540/124" ], "networkFeatures": null @@ -47628,12 +50281,13 @@ "name": "AzureAttestation.EastAsia", "id": "AzureAttestation.EastAsia", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "eastasia", "regionId": 1, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.144.15.72/29", "20.187.197.228/30", "104.214.164.108/30", "2603:1040:207:1::4c0/124" @@ -47645,14 +50299,15 @@ "name": "AzureAttestation.EastUS", "id": "AzureAttestation.EastUS", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "eastus", "regionId": 32, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "20.62.129.148/30", - "40.71.15.204/30" + "40.71.15.204/30", + "48.195.234.216/29" ], "networkFeatures": null } @@ -47661,14 +50316,15 @@ "name": "AzureAttestation.EastUS2", "id": "AzureAttestation.EastUS2", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "eastus2", "regionId": 33, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "20.44.19.164/30", - "20.49.103.124/30" + "20.49.103.124/30", + "172.175.111.120/29" ], "networkFeatures": null } @@ -47677,14 +50333,31 @@ "name": "AzureAttestation.EastUS2EUAP", "id": "AzureAttestation.EastUS2EUAP", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "eastus2euap", "regionId": 49, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "20.51.20.80/30", - "40.89.121.168/30" + "40.89.121.168/30", + "48.223.29.136/29" + ], + "networkFeatures": null + } + }, + { + "name": "AzureAttestation.EastUS3", + "id": "AzureAttestation.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureAttestation", + "addressPrefixes": [ + "134.138.64.20/30", + "2603:1030:1402::760/124" ], "networkFeatures": null } @@ -47710,12 +50383,13 @@ "name": "AzureAttestation.FranceCentral", "id": "AzureAttestation.FranceCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "centralfrance", "regionId": 19, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.176.24.176/29", "40.79.141.132/30", "51.138.210.128/30" ], @@ -47726,12 +50400,13 @@ "name": "AzureAttestation.FranceSouth", "id": "AzureAttestation.FranceSouth", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "southfrance", "regionId": 20, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "20.111.117.248/29", "51.138.160.76/30", "52.136.184.232/30", "2603:1020:905:2::760/124" @@ -47743,13 +50418,14 @@ "name": "AzureAttestation.GermanyNorth", "id": "AzureAttestation.GermanyNorth", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "germanyn", "regionId": 72, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "20.52.72.44/30", + "20.170.241.200/29", "51.116.54.72/30", "2603:1020:d04:2::650/124" ], @@ -47760,12 +50436,13 @@ "name": "AzureAttestation.GermanyWestCentral", "id": "AzureAttestation.GermanyWestCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "germanywc", "regionId": 71, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.185.224.248/29", "51.116.149.224/30", "51.116.246.16/30" ], @@ -47792,13 +50469,14 @@ "name": "AzureAttestation.IsraelCentral", "id": "AzureAttestation.IsraelCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "israelcentral", "regionId": 85, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "20.217.40.44/30", + "51.58.49.24/29", "2603:1040:1402::620/124" ], "networkFeatures": null @@ -47824,13 +50502,14 @@ "name": "AzureAttestation.ItalyNorth", "id": "AzureAttestation.ItalyNorth", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "italynorth", "regionId": 93, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "4.232.28.24/30", + "9.235.70.112/29", "2603:1020:1204::5e0/124" ], "networkFeatures": null @@ -47840,12 +50519,13 @@ "name": "AzureAttestation.JapanEast", "id": "AzureAttestation.JapanEast", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "japaneast", "regionId": 24, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.241.53.192/29", "20.191.161.220/30", "40.79.189.116/30" ], @@ -47856,12 +50536,13 @@ "name": "AzureAttestation.JapanWest", "id": "AzureAttestation.JapanWest", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "japanwest", "regionId": 25, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "20.63.252.136/29", "20.189.225.84/30", "40.80.180.196/30", "2603:1040:606:3::e0/124" @@ -47873,7 +50554,7 @@ "name": "AzureAttestation.JioIndiaCentral", "id": "AzureAttestation.JioIndiaCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "jioindiacentral", "regionId": 64, "platform": "Azure", @@ -47881,6 +50562,7 @@ "addressPrefixes": [ "20.192.231.240/30", "20.192.238.188/30", + "74.225.110.136/29", "2603:1040:1104:1::420/123", "2603:1040:1104:400::420/123" ], @@ -47891,13 +50573,14 @@ "name": "AzureAttestation.JioIndiaWest", "id": "AzureAttestation.JioIndiaWest", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "jioindiawest", "regionId": 65, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "20.192.166.188/30", + "135.235.62.96/29", "2603:1040:d04:1::720/123" ], "networkFeatures": null @@ -47907,12 +50590,13 @@ "name": "AzureAttestation.KoreaCentral", "id": "AzureAttestation.KoreaCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "koreacentral", "regionId": 26, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.217.214.72/29", "20.194.72.148/30", "52.231.23.116/30", "2603:1040:f05::7a0/123" @@ -47924,12 +50608,13 @@ "name": "AzureAttestation.KoreaSouth", "id": "AzureAttestation.KoreaSouth", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "koreasouth", "regionId": 50, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.243.143.8/29", "40.80.173.216/30", "52.231.151.68/30", "2603:1040:e05:5::230/124" @@ -47941,13 +50626,14 @@ "name": "AzureAttestation.MalaysiaSouth", "id": "AzureAttestation.MalaysiaSouth", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "malaysiasouth", "regionId": 98, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "20.17.51.36/30", + "85.211.94.232/29", "2603:1040:1503::620/124" ], "networkFeatures": null @@ -47973,13 +50659,14 @@ "name": "AzureAttestation.MexicoCentral", "id": "AzureAttestation.MexicoCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "mexicocentral", "regionId": 53, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "158.23.100.152/30", + "172.195.50.24/29", "2603:1030:702::5e0/124" ], "networkFeatures": null @@ -47989,13 +50676,14 @@ "name": "AzureAttestation.NewZealandNorth", "id": "AzureAttestation.NewZealandNorth", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "newzealandnorth", "regionId": 91, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "172.204.152.20/30", + "172.204.255.208/29", "2603:1010:502::5c0/124" ], "networkFeatures": null @@ -48005,13 +50693,14 @@ "name": "AzureAttestation.NorthCentralUS", "id": "AzureAttestation.NorthCentralUS", "properties": { - "changeNumber": 3, + "changeNumber": 4, "region": "northcentralus", "regionId": 34, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "20.49.118.20/30", + "20.59.214.128/29", "52.162.111.140/30", "2603:1030:608:3::650/124" ], @@ -48022,12 +50711,13 @@ "name": "AzureAttestation.NorthEurope", "id": "AzureAttestation.NorthEurope", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "northeurope", "regionId": 17, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.209.250.176/29", "13.69.233.128/30", "52.146.132.244/30" ], @@ -48038,12 +50728,13 @@ "name": "AzureAttestation.NorwayEast", "id": "AzureAttestation.NorwayEast", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "norwaye", "regionId": 63, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.177.29.184/29", "51.120.100.244/30", "51.120.233.128/30", "2603:1020:e04::7a0/123" @@ -48055,12 +50746,13 @@ "name": "AzureAttestation.NorwayWest", "id": "AzureAttestation.NorwayWest", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "norwayw", "regionId": 74, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.220.236.240/29", "51.13.128.64/30", "51.13.136.184/30", "2603:1020:f04:3::750/124" @@ -48072,13 +50764,14 @@ "name": "AzureAttestation.PolandCentral", "id": "AzureAttestation.PolandCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "polandcentral", "regionId": 52, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "20.215.0.44/30", + "20.215.120.112/29", "2603:1020:1302::620/124" ], "networkFeatures": null @@ -48104,12 +50797,13 @@ "name": "AzureAttestation.SouthAfricaNorth", "id": "AzureAttestation.SouthAfricaNorth", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "southafricanorth", "regionId": 82, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.221.45.232/29", "102.133.126.132/30", "102.133.221.196/30" ], @@ -48120,14 +50814,15 @@ "name": "AzureAttestation.SouthAfricaWest", "id": "AzureAttestation.SouthAfricaWest", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "southafricawest", "regionId": 83, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "102.37.64.120/30", - "102.37.80.52/30" + "102.37.80.52/30", + "172.209.100.136/29" ], "networkFeatures": null } @@ -48136,14 +50831,15 @@ "name": "AzureAttestation.SouthCentralUS", "id": "AzureAttestation.SouthCentralUS", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "southcentralus", "regionId": 35, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "20.45.126.116/30", - "20.65.130.92/30" + "20.65.130.92/30", + "48.192.143.112/29" ], "networkFeatures": null } @@ -48184,7 +50880,7 @@ "name": "AzureAttestation.SouthIndia", "id": "AzureAttestation.SouthIndia", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "southindia", "regionId": 22, "platform": "Azure", @@ -48192,6 +50888,7 @@ "addressPrefixes": [ "20.192.184.116/30", "52.172.116.0/30", + "74.225.41.64/29", "2603:1040:c06:3::390/124" ], "networkFeatures": null @@ -48201,12 +50898,13 @@ "name": "AzureAttestation.SoutheastAsia", "id": "AzureAttestation.SoutheastAsia", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "southeastasia", "regionId": 2, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.145.10.168/29", "23.98.109.52/30", "40.78.239.116/30" ], @@ -48249,13 +50947,14 @@ "name": "AzureAttestation.SpainCentral", "id": "AzureAttestation.SpainCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "spaincentral", "regionId": 88, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "68.221.84.152/30", + "70.156.172.240/29", "2603:1020:1403::5e0/124" ], "networkFeatures": null @@ -48265,12 +50964,13 @@ "name": "AzureAttestation.SwedenCentral", "id": "AzureAttestation.SwedenCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "swedencentral", "regionId": 76, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.223.182.184/29", "51.12.46.224/30", "2603:1020:1004:1::720/123" ], @@ -48281,12 +50981,13 @@ "name": "AzureAttestation.SwedenSouth", "id": "AzureAttestation.SwedenSouth", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "swedensouth", "regionId": 75, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "20.91.44.16/29", "51.12.198.4/30", "2603:1020:1104:1::3e0/123" ], @@ -48297,12 +50998,13 @@ "name": "AzureAttestation.SwitzerlandNorth", "id": "AzureAttestation.SwitzerlandNorth", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "switzerlandn", "regionId": 66, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.226.77.128/29", "51.107.53.52/30", "51.107.128.36/30", "2603:1020:a04:2::530/124" @@ -48314,12 +51016,13 @@ "name": "AzureAttestation.SwitzerlandWest", "id": "AzureAttestation.SwitzerlandWest", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "switzerlandw", "regionId": 67, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.226.197.72/29", "51.107.192.152/30", "51.107.250.40/30", "2603:1020:b04:5::b0/124" @@ -48331,13 +51034,14 @@ "name": "AzureAttestation.TaiwanNorth", "id": "AzureAttestation.TaiwanNorth", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "taiwannorth", "regionId": 8, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "51.53.27.240/30", + "70.157.78.240/29", "2603:1040:1302::600/124" ], "networkFeatures": null @@ -48347,13 +51051,14 @@ "name": "AzureAttestation.TaiwanNorthwest", "id": "AzureAttestation.TaiwanNorthwest", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "taiwannorthwest", "regionId": 96, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "51.53.171.240/30", + "167.105.220.112/29", "2603:1040:1202::600/124" ], "networkFeatures": null @@ -48363,7 +51068,7 @@ "name": "AzureAttestation.UAECentral", "id": "AzureAttestation.UAECentral", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "uaecentral", "regionId": 61, "platform": "Azure", @@ -48371,6 +51076,7 @@ "addressPrefixes": [ "20.37.71.40/30", "40.120.8.176/30", + "74.243.172.232/29", "2603:1040:b04:2::6b0/124" ], "networkFeatures": null @@ -48380,13 +51086,14 @@ "name": "AzureAttestation.UAENorth", "id": "AzureAttestation.UAENorth", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "uaenorth", "regionId": 60, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "20.38.143.40/30", + "20.174.245.112/29", "40.120.75.60/30", "2603:1040:904:2::6b0/124" ], @@ -48397,12 +51104,13 @@ "name": "AzureAttestation.UKSouth", "id": "AzureAttestation.UKSouth", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "uksouth", "regionId": 27, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "4.159.236.184/29", "51.140.149.84/30", "51.143.209.132/30" ], @@ -48413,12 +51121,13 @@ "name": "AzureAttestation.UKWest", "id": "AzureAttestation.UKWest", "properties": { - "changeNumber": 3, + "changeNumber": 4, "region": "ukwest", "regionId": 28, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "20.58.72.32/29", "51.137.167.184/30", "51.140.215.168/30", "2603:1020:605:3::3d0/124" @@ -48430,12 +51139,13 @@ "name": "AzureAttestation.WestCentralUS", "id": "AzureAttestation.WestCentralUS", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "westcentralus", "regionId": 36, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ + "20.51.53.8/29", "40.67.121.196/30", "52.150.157.172/30" ], @@ -48446,14 +51156,15 @@ "name": "AzureAttestation.WestEurope", "id": "AzureAttestation.WestEurope", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "westeurope", "regionId": 18, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "13.69.109.140/30", - "20.61.99.100/30" + "20.61.99.100/30", + "48.199.12.8/29" ], "networkFeatures": null } @@ -48462,7 +51173,7 @@ "name": "AzureAttestation.WestIndia", "id": "AzureAttestation.WestIndia", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "westindia", "regionId": 23, "platform": "Azure", @@ -48470,6 +51181,7 @@ "addressPrefixes": [ "20.38.132.24/30", "52.136.53.132/30", + "57.159.158.32/29", "2603:1040:806:3::1f0/124" ], "networkFeatures": null @@ -48479,7 +51191,7 @@ "name": "AzureAttestation.WestUS", "id": "AzureAttestation.WestUS", "properties": { - "changeNumber": 3, + "changeNumber": 4, "region": "westus", "regionId": 37, "platform": "Azure", @@ -48487,6 +51199,7 @@ "addressPrefixes": [ "13.86.223.192/30", "20.49.127.244/30", + "52.238.33.184/29", "2603:1030:a07:9::90/124" ], "networkFeatures": null @@ -48496,14 +51209,15 @@ "name": "AzureAttestation.WestUS2", "id": "AzureAttestation.WestUS2", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "westus2", "regionId": 38, "platform": "Azure", "systemService": "AzureAttestation", "addressPrefixes": [ "13.66.145.224/30", - "20.51.8.204/30" + "20.51.8.204/30", + "48.200.63.32/29" ], "networkFeatures": null } @@ -48512,7 +51226,7 @@ "name": "AzureAttestation.WestUS3", "id": "AzureAttestation.WestUS3", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "westus3", "regionId": 79, "platform": "Azure", @@ -48520,6 +51234,7 @@ "addressPrefixes": [ "20.150.174.132/30", "20.150.244.32/30", + "20.172.72.240/29", "2603:1030:504:2::a0/123" ], "networkFeatures": null @@ -48915,6 +51630,23 @@ "networkFeatures": null } }, + { + "name": "AzureBackup.EastUS3", + "id": "AzureBackup.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureBackup", + "addressPrefixes": [ + "134.138.70.80/28", + "134.138.70.128/26", + "2603:1030:1402:1::/121" + ], + "networkFeatures": null + } + }, { "name": "AzureBackup.EastUSSTG", "id": "AzureBackup.EastUSSTG", @@ -50274,6 +53006,22 @@ "networkFeatures": null } }, + { + "name": "AzureBotService.EastUS3", + "id": "AzureBotService.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureBotService", + "addressPrefixes": [ + "134.138.64.16/30", + "2603:1030:1402::20/123" + ], + "networkFeatures": null + } + }, { "name": "AzureBotService.EastUSSTG", "id": "AzureBotService.EastUSSTG", @@ -51438,6 +54186,22 @@ "networkFeatures": null } }, + { + "name": "AzureCognitiveSearch.EastUS3", + "id": "AzureCognitiveSearch.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureCognitiveSearch", + "addressPrefixes": [ + "134.138.64.192/26", + "2603:1030:1402::100/121" + ], + "networkFeatures": null + } + }, { "name": "AzureCognitiveSearch.EastUSSTG", "id": "AzureCognitiveSearch.EastUSSTG", @@ -52839,6 +55603,27 @@ ] } }, + { + "name": "AzureConnectors.EastUS3", + "id": "AzureConnectors.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureConnectors", + "addressPrefixes": [ + "134.138.76.128/26", + "2603:1030:1402:1::7c0/122" + ], + "networkFeatures": [ + "API", + "NSG", + "UDR", + "FW" + ] + } + }, { "name": "AzureConnectors.EastUSSTG", "id": "AzureConnectors.EastUSSTG", @@ -54356,7 +57141,7 @@ "name": "AzureContainerRegistry.AustriaEast", "id": "AzureContainerRegistry.AustriaEast", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "austriaeast", "regionId": 95, "platform": "Azure", @@ -54370,6 +57155,9 @@ "68.210.208.64/26", "68.210.210.0/25", "2603:1020:104:3::368/125", + "2603:1020:104:6::588/125", + "2603:1020:104:6::590/124", + "2603:1020:104:6::5a0/123", "2603:1020:104:403::8/125", "2603:1020:104:403::80/121", "2603:1020:104:800::8/125", @@ -54389,7 +57177,7 @@ "name": "AzureContainerRegistry.BelgiumCentral", "id": "AzureContainerRegistry.BelgiumCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "belgiumcentral", "regionId": 97, "platform": "Azure", @@ -54403,6 +57191,9 @@ "9.160.112.64/26", "9.160.114.0/25", "2603:1020:1502::3e0/125", + "2603:1020:1502:3::6e0/123", + "2603:1020:1502:3::780/124", + "2603:1020:1502:3::790/125", "2603:1020:1502:400::8/125", "2603:1020:1502:400::80/121", "2603:1020:1502:800::8/125", @@ -54672,7 +57463,7 @@ "name": "AzureContainerRegistry.ChileCentral", "id": "AzureContainerRegistry.ChileCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "chilec", "regionId": 10, "platform": "Azure", @@ -54686,6 +57477,9 @@ "68.211.184.64/26", "68.211.186.0/25", "2603:1050:301::3e0/125", + "2603:1050:301:4::4b0/124", + "2603:1050:301:4::4c0/123", + "2603:1050:301:4::4e0/125", "2603:1050:301:400::8/125", "2603:1050:301:400::80/121", "2603:1050:301:800::8/125", @@ -54864,6 +57658,36 @@ ] } }, + { + "name": "AzureContainerRegistry.EastUS3", + "id": "AzureContainerRegistry.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureContainerRegistry", + "addressPrefixes": [ + "134.138.68.192/26", + "134.138.86.64/26", + "134.138.96.64/26", + "134.138.98.0/25", + "2603:1030:1402::700/125", + "2603:1030:1402:4::280/121", + "2603:1030:1402:4::508/125", + "2603:1030:1402:4::510/124", + "2603:1030:1402:4::540/123", + "2603:1030:1402:400::8/125", + "2603:1030:1402:400::80/121" + ], + "networkFeatures": [ + "API", + "NSG", + "UDR", + "FW" + ] + } + }, { "name": "AzureContainerRegistry.EastUSSTG", "id": "AzureContainerRegistry.EastUSSTG", @@ -55038,12 +57862,13 @@ "name": "AzureContainerRegistry.IndonesiaCentral", "id": "AzureContainerRegistry.IndonesiaCentral", "properties": { - "changeNumber": 1, + "changeNumber": 3, "region": "indonesiacentral", "regionId": 6, "platform": "Azure", "systemService": "AzureContainerRegistry", "addressPrefixes": [ + "48.193.49.192/26", "70.153.154.128/26", "70.153.176.64/26", "70.153.177.128/25", @@ -55052,6 +57877,10 @@ "70.153.216.64/26", "70.153.218.0/25", "2603:1040:1802::280/125", + "2603:1040:1802:4::6a8/125", + "2603:1040:1802:4::6b0/124", + "2603:1040:1802:4::6c0/123", + "2603:1040:1802:5::480/121", "2603:1040:1802:400::8/125", "2603:1040:1802:400::100/121", "2603:1040:1802:800::8/125", @@ -55106,7 +57935,7 @@ "name": "AzureContainerRegistry.IsraelNorthwest", "id": "AzureContainerRegistry.IsraelNorthwest", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "israelnorthwest", "regionId": 86, "platform": "Azure", @@ -55118,6 +57947,9 @@ "51.4.162.0/25", "2603:1040:1702::3e0/125", "2603:1040:1702:4::200/121", + "2603:1040:1702:4::570/124", + "2603:1040:1702:4::600/123", + "2603:1040:1702:4::620/125", "2603:1040:1702:400::8/125", "2603:1040:1702:400::80/121" ], @@ -55414,7 +58246,7 @@ "name": "AzureContainerRegistry.MalaysiaWest", "id": "AzureContainerRegistry.MalaysiaWest", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "malaysiawest", "regionId": 92, "platform": "Azure", @@ -55428,6 +58260,9 @@ "20.17.184.64/26", "20.17.186.0/25", "2603:1040:1602::560/125", + "2603:1040:1602:4::5c0/123", + "2603:1040:1602:4::5e0/124", + "2603:1040:1602:4::5f0/125", "2603:1040:1602:400::8/125", "2603:1040:1602:400::100/121", "2603:1040:1602:800::18/125", @@ -55482,7 +58317,7 @@ "name": "AzureContainerRegistry.NewZealandNorth", "id": "AzureContainerRegistry.NewZealandNorth", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "newzealandnorth", "regionId": 91, "platform": "Azure", @@ -55497,6 +58332,9 @@ "172.204.208.64/26", "172.204.210.0/25", "2603:1010:502::560/125", + "2603:1010:502:5::418/125", + "2603:1010:502:5::430/124", + "2603:1010:502:5::460/123", "2603:1010:502:400::48/125", "2603:1010:502:400::100/121", "2603:1010:502:800::8/125", @@ -55845,7 +58683,7 @@ "name": "AzureContainerRegistry.SouthCentralUS2", "id": "AzureContainerRegistry.SouthCentralUS2", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "southcentralus2", "regionId": 102, "platform": "Azure", @@ -55857,6 +58695,9 @@ "48.216.38.128/26", "2603:1030:1102::3e0/125", "2603:1030:1102:3::780/121", + "2603:1030:1102:4::4f8/125", + "2603:1030:1102:4::540/123", + "2603:1030:1102:4::560/124", "2603:1030:1102:400::8/125", "2603:1030:1102:400::80/121" ], @@ -55963,7 +58804,7 @@ "name": "AzureContainerRegistry.SoutheastUS", "id": "AzureContainerRegistry.SoutheastUS", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "southeastus", "regionId": 101, "platform": "Azure", @@ -55975,6 +58816,9 @@ "68.154.145.64/26", "2603:1030:902::560/125", "2603:1030:902:4::180/121", + "2603:1030:902:4::660/123", + "2603:1030:902:4::700/124", + "2603:1030:902:4::710/125", "2603:1030:902:400::8/125", "2603:1030:902:400::100/121" ], @@ -55990,7 +58834,7 @@ "name": "AzureContainerRegistry.SoutheastUS3", "id": "AzureContainerRegistry.SoutheastUS3", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "southeastus3", "regionId": 105, "platform": "Azure", @@ -56002,6 +58846,9 @@ "74.7.82.0/25", "2603:1030:1302::3e0/125", "2603:1030:1302:4::200/121", + "2603:1030:1302:4::4a8/125", + "2603:1030:1302:4::4b0/124", + "2603:1030:1302:4::540/123", "2603:1030:1302:400::8/125", "2603:1030:1302:400::80/121" ], @@ -56017,7 +58864,7 @@ "name": "AzureContainerRegistry.SpainCentral", "id": "AzureContainerRegistry.SpainCentral", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "spaincentral", "regionId": 88, "platform": "Azure", @@ -56032,6 +58879,9 @@ "68.221.154.128/26", "68.221.155.128/25", "2603:1020:1403::580/125", + "2603:1020:1403:7::160/123", + "2603:1020:1403:7::200/124", + "2603:1020:1403:7::210/125", "2603:1020:1403:400::8/125", "2603:1020:1403:400::200/121", "2603:1020:1403:800::8/125", @@ -56707,12 +59557,13 @@ "name": "AzureCosmosDB.AustraliaSoutheast", "id": "AzureCosmosDB.AustraliaSoutheast", "properties": { - "changeNumber": 11, + "changeNumber": 12, "region": "australiasoutheast", "regionId": 4, "platform": "Azure", "systemService": "AzureCosmosDB", "addressPrefixes": [ + "4.199.44.192/27", "13.77.50.0/28", "20.46.109.213/32", "20.46.110.132/32", @@ -57191,6 +60042,28 @@ ] } }, + { + "name": "AzureCosmosDB.EastUS3", + "id": "AzureCosmosDB.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureCosmosDB", + "addressPrefixes": [ + "134.138.68.32/27", + "134.138.68.64/26", + "2603:1030:1402::5c0/123" + ], + "networkFeatures": [ + "API", + "NSG", + "UDR", + "FW" + ] + } + }, { "name": "AzureCosmosDB.EastUSSTG", "id": "AzureCosmosDB.EastUSSTG", @@ -58793,13 +61666,14 @@ "name": "AzureDataExplorerManagement.BrazilSouth", "id": "AzureDataExplorerManagement.BrazilSouth", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "brazilsouth", "regionId": 9, "platform": "Azure", "systemService": "AzureDataExplorerManagement", "addressPrefixes": [ "20.40.114.21/32", + "51.59.58.0/28", "191.233.25.183/32", "191.233.205.0/28", "2603:1050:6::600/121", @@ -58965,7 +61839,7 @@ "name": "AzureDataExplorerManagement.EastUS", "id": "AzureDataExplorerManagement.EastUS", "properties": { - "changeNumber": 5, + "changeNumber": 7, "region": "eastus", "regionId": 32, "platform": "Azure", @@ -58973,6 +61847,8 @@ "addressPrefixes": [ "20.185.100.27/32", "40.71.13.176/28", + "48.195.238.128/28", + "48.202.151.64/28", "52.224.146.56/32", "2603:1030:210::600/121", "2603:1030:210:402::150/124" @@ -59020,6 +61896,22 @@ "networkFeatures": null } }, + { + "name": "AzureDataExplorerManagement.EastUS3", + "id": "AzureDataExplorerManagement.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureDataExplorerManagement", + "addressPrefixes": [ + "134.138.73.80/28", + "2603:1030:1402:1::400/123" + ], + "networkFeatures": null + } + }, { "name": "AzureDataExplorerManagement.EastUSSTG", "id": "AzureDataExplorerManagement.EastUSSTG", @@ -59802,13 +62694,14 @@ "name": "AzureDataExplorerManagement.WestCentralUS", "id": "AzureDataExplorerManagement.WestCentralUS", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "westcentralus", "regionId": 36, "platform": "Azure", "systemService": "AzureDataExplorerManagement", "addressPrefixes": [ "13.71.196.64/28", + "20.51.53.160/28", "52.159.55.120/32", "2603:1030:b04:1::380/121", "2603:1030:b04:402::150/124" @@ -60083,12 +62976,14 @@ "name": "AzureDevOps.CentralIndia", "id": "AzureDevOps.CentralIndia", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "centralindia", "regionId": 21, "platform": "Azure", "systemService": "AzureDevOps", "addressPrefixes": [ + "4.188.8.0/27", + "4.247.191.228/30", "20.204.197.192/26", "2603:1040:a06:c::80/122" ], @@ -60179,13 +63074,15 @@ "name": "AzureDevOps.EastUS2EUAP", "id": "AzureDevOps.EastUS2EUAP", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "eastus2euap", "regionId": 49, "platform": "Azure", "systemService": "AzureDevOps", "addressPrefixes": [ "20.39.13.0/26", + "48.223.55.140/30", + "48.223.55.160/27", "2603:1030:40b:f::400/122" ], "networkFeatures": null @@ -61043,6 +63940,23 @@ "networkFeatures": null } }, + { + "name": "AzureDigitalTwins.EastUS3", + "id": "AzureDigitalTwins.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureDigitalTwins", + "addressPrefixes": [ + "134.138.68.152/29", + "134.138.70.32/27", + "2603:1030:1402::780/121" + ], + "networkFeatures": null + } + }, { "name": "AzureDigitalTwins.EastUSSTG", "id": "AzureDigitalTwins.EastUSSTG", @@ -62327,6 +65241,22 @@ "networkFeatures": null } }, + { + "name": "AzureEventGrid.EastUS3", + "id": "AzureEventGrid.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureEventGrid", + "addressPrefixes": [ + "134.138.65.128/25", + "2603:1030:1402::480/121" + ], + "networkFeatures": null + } + }, { "name": "AzureEventGrid.EastUSSTG", "id": "AzureEventGrid.EastUSSTG", @@ -63430,12 +66360,13 @@ "name": "EventHub.CanadaCentral", "id": "EventHub.CanadaCentral", "properties": { - "changeNumber": 10, + "changeNumber": 11, "region": "canadacentral", "regionId": 11, "platform": "Azure", "systemService": "AzureEventHub", "addressPrefixes": [ + "4.172.80.0/25", "4.206.228.192/26", "13.71.170.16/28", "13.71.177.128/26", @@ -63493,12 +66424,13 @@ "name": "EventHub.CentralIndia", "id": "EventHub.CentralIndia", "properties": { - "changeNumber": 7, + "changeNumber": 8, "region": "centralindia", "regionId": 21, "platform": "Azure", "systemService": "AzureEventHub", "addressPrefixes": [ + "4.186.6.64/26", "20.43.126.64/26", "20.192.98.64/26", "20.192.102.0/26", @@ -63524,7 +66456,7 @@ "name": "EventHub.CentralUS", "id": "EventHub.CentralUS", "properties": { - "changeNumber": 8, + "changeNumber": 9, "region": "centralus", "regionId": 31, "platform": "Azure", @@ -63537,7 +66469,9 @@ "52.165.179.109/32", "52.182.138.128/26", "52.182.143.64/26", + "52.255.16.0/23", "104.208.16.0/26", + "172.170.168.0/25", "172.202.80.0/25", "2603:1030:10:1::240/122", "2603:1030:10:c::/119", @@ -63635,7 +66569,7 @@ "name": "EventHub.EastUS", "id": "EventHub.EastUS", "properties": { - "changeNumber": 13, + "changeNumber": 14, "region": "eastus", "regionId": 32, "platform": "Azure", @@ -63647,6 +66581,8 @@ "40.71.10.128/26", "40.78.226.128/26", "40.79.155.0/26", + "48.195.224.128/25", + "48.195.236.0/23", "52.168.117.0/26", "52.191.45.0/24", "52.191.228.245/32", @@ -63679,7 +66615,7 @@ "name": "EventHub.EastUS2", "id": "EventHub.EastUS2", "properties": { - "changeNumber": 11, + "changeNumber": 12, "region": "eastus2", "regionId": 33, "platform": "Azure", @@ -63693,6 +66629,8 @@ "52.167.145.0/26", "104.208.144.0/26", "104.208.181.0/24", + "172.175.14.128/25", + "172.175.104.0/23", "172.210.216.128/26", "2603:1030:40c:1::240/122", "2603:1030:40c:b::600/119", @@ -63751,6 +66689,27 @@ ] } }, + { + "name": "EventHub.EastUS3", + "id": "EventHub.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureEventHub", + "addressPrefixes": [ + "134.138.72.0/24", + "2603:1030:1402:1::200/120" + ], + "networkFeatures": [ + "API", + "NSG", + "UDR", + "FW" + ] + } + }, { "name": "EventHub.EastUSSTG", "id": "EventHub.EastUSSTG", @@ -64310,17 +67269,22 @@ "name": "EventHub.NorwayEast", "id": "EventHub.NorwayEast", "properties": { - "changeNumber": 4, + "changeNumber": 5, "region": "norwaye", "regionId": 63, "platform": "Azure", "systemService": "AzureEventHub", "addressPrefixes": [ + "4.177.24.0/24", + "4.177.25.0/26", "20.100.0.0/26", "51.13.0.192/26", "51.120.98.128/27", "51.120.106.64/26", "51.120.210.64/26", + "131.163.111.208/29", + "131.163.111.216/30", + "131.163.111.224/27", "2603:1020:e04:1::240/122", "2603:1020:e04:3::600/120", "2603:1020:e04:402::1c0/123", @@ -64569,7 +67533,7 @@ "name": "EventHub.SoutheastAsia", "id": "EventHub.SoutheastAsia", "properties": { - "changeNumber": 9, + "changeNumber": 10, "region": "southeastasia", "regionId": 2, "platform": "Azure", @@ -64585,6 +67549,7 @@ "40.78.234.0/27", "2603:1040:5:1::240/122", "2603:1040:5:3::780/121", + "2603:1040:5:15::400/120", "2603:1040:5:402::1c0/123", "2603:1040:5:802::160/123", "2603:1040:5:c02::160/123", @@ -64970,7 +67935,7 @@ "name": "EventHub.WestEurope", "id": "EventHub.WestEurope", "properties": { - "changeNumber": 12, + "changeNumber": 13, "region": "westeurope", "regionId": 18, "platform": "Azure", @@ -64982,6 +67947,7 @@ "20.50.201.64/26", "20.76.242.45/32", "20.86.89.0/24", + "48.199.1.128/25", "52.178.17.128/26", "52.236.186.0/26", "68.219.160.128/25", @@ -67044,6 +70010,30 @@ ] } }, + { + "name": "AzureKeyVault.EastUS3", + "id": "AzureKeyVault.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureKeyVault", + "addressPrefixes": [ + "134.138.71.124/30", + "134.138.73.160/29", + "134.138.96.12/30", + "2603:1030:1402:1::3e8/125", + "2603:1030:1402:400::48/125" + ], + "networkFeatures": [ + "API", + "NSG", + "UDR", + "FW" + ] + } + }, { "name": "AzureKeyVault.EastUSSTG", "id": "AzureKeyVault.EastUSSTG", @@ -68844,6 +71834,22 @@ "networkFeatures": null } }, + { + "name": "AzureMachineLearning.EastUS3", + "id": "AzureMachineLearning.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureMachineLearning", + "addressPrefixes": [ + "134.138.65.64/27", + "2603:1030:1402::400/122" + ], + "networkFeatures": null + } + }, { "name": "AzureMachineLearning.EastUSSTG", "id": "AzureMachineLearning.EastUSSTG", @@ -69774,7 +72780,7 @@ "name": "AzureMonitor.AustraliaCentral", "id": "AzureMonitor.AustraliaCentral", "properties": { - "changeNumber": 14, + "changeNumber": 18, "region": "australiacentral", "regionId": 58, "platform": "Azure", @@ -69783,9 +72789,12 @@ "4.199.130.64/27", "4.199.196.192/27", "4.199.196.224/28", + "4.199.208.240/28", + "4.199.209.16/28", "20.28.117.0/26", "20.36.107.24/29", "20.36.107.160/28", + "20.37.59.32/28", "20.37.227.16/28", "20.37.227.100/31", "20.37.227.104/29", @@ -69803,6 +72812,10 @@ "2603:1010:304:5::380/122", "2603:1010:304:5::500/121", "2603:1010:304:5::7e0/123", + "2603:1010:304:9::500/124", + "2603:1010:304:a::300/120", + "2603:1010:304:a::520/124", + "2603:1010:304:a::540/123", "2603:1010:304:402::500/121" ], "networkFeatures": [ @@ -69814,7 +72827,7 @@ "name": "AzureMonitor.AustraliaCentral2", "id": "AzureMonitor.AustraliaCentral2", "properties": { - "changeNumber": 11, + "changeNumber": 13, "region": "australiacentral2", "regionId": 59, "platform": "Azure", @@ -69829,6 +72842,8 @@ "20.53.63.96/29", "20.167.131.24/29", "20.167.131.80/30", + "20.167.183.208/28", + "20.167.212.144/28", "20.193.96.32/27", "20.193.96.248/29", "2603:1010:400::79/128", @@ -69838,6 +72853,8 @@ "2603:1010:404:5::420/123", "2603:1010:404:5::440/122", "2603:1010:404:5::600/121", + "2603:1010:404:7::450/124", + "2603:1010:404:8::e0/123", "2603:1010:404:402::500/121" ], "networkFeatures": [ @@ -69849,7 +72866,7 @@ "name": "AzureMonitor.AustraliaEast", "id": "AzureMonitor.AustraliaEast", "properties": { - "changeNumber": 18, + "changeNumber": 21, "region": "australiaeast", "regionId": 3, "platform": "Azure", @@ -69857,6 +72874,8 @@ "addressPrefixes": [ "4.195.7.0/26", "4.195.7.64/27", + "4.195.110.160/28", + "4.196.130.224/28", "4.198.160.88/29", "4.198.162.0/29", "4.237.170.160/27", @@ -69897,6 +72916,9 @@ "2603:1010:6:1::280/122", "2603:1010:6:7::/122", "2603:1010:6:7::40/123", + "2603:1010:6:c::7f0/124", + "2603:1010:6:e::100/120", + "2603:1010:6:e::480/123", "2603:1010:6:402::500/121", "2603:1010:6:802::480/121", "2603:1010:6:802::500/121", @@ -69912,12 +72934,13 @@ "name": "AzureMonitor.AustraliaSoutheast", "id": "AzureMonitor.AustraliaSoutheast", "properties": { - "changeNumber": 16, + "changeNumber": 19, "region": "australiasoutheast", "regionId": 4, "platform": "Azure", "systemService": "AzureMonitor", "addressPrefixes": [ + "4.199.44.144/28", "4.199.83.204/31", "4.199.90.136/29", "4.199.90.240/28", @@ -69929,6 +72952,7 @@ "20.42.230.208/28", "20.42.230.224/29", "20.42.230.232/31", + "20.45.150.80/28", "20.211.224.56/29", "23.101.225.155/32", "23.101.232.120/32", @@ -69950,7 +72974,10 @@ "2603:1010:101:2::5c0/123", "2603:1010:101:6::/122", "2603:1010:101:402::500/121", - "2603:1010:207:1::180/121" + "2603:1010:207:1::180/121", + "2603:1010:207:3::210/124", + "2603:1010:207:4::/120", + "2603:1010:207:4::340/123" ], "networkFeatures": [ "NSG" @@ -69961,12 +72988,16 @@ "name": "AzureMonitor.AustriaEast", "id": "AzureMonitor.AustriaEast", "properties": { - "changeNumber": 1, + "changeNumber": 3, "region": "austriaeast", "regionId": 95, "platform": "Azure", "systemService": "AzureMonitor", "addressPrefixes": [ + "68.210.30.192/28", + "68.210.59.224/27", + "68.210.60.16/28", + "68.210.60.32/27", "68.210.154.184/29", "68.210.156.48/28", "68.210.172.150/31", @@ -69983,7 +73014,9 @@ "2603:1020:104:3::300/122", "2603:1020:104:3::340/123", "2603:1020:104:3::380/121", - "2603:1020:104:3::400/121" + "2603:1020:104:3::400/121", + "2603:1020:104:6::4e0/124", + "2603:1020:104:7::3c0/123" ], "networkFeatures": [ "NSG" @@ -69994,7 +73027,7 @@ "name": "AzureMonitor.BelgiumCentral", "id": "AzureMonitor.BelgiumCentral", "properties": { - "changeNumber": 1, + "changeNumber": 3, "region": "belgiumcentral", "regionId": 97, "platform": "Azure", @@ -70005,6 +73038,10 @@ "9.160.53.216/30", "9.160.56.0/26", "9.160.58.132/30", + "9.160.66.176/28", + "9.160.70.96/27", + "9.160.70.128/27", + "9.160.70.160/28", "9.160.84.32/29", "9.160.84.48/28", "9.160.90.136/29", @@ -70013,7 +73050,9 @@ "9.160.114.240/28", "2603:1020:1501:f::10/127", "2603:1020:1502:2::480/121", - "2603:1020:1502:2::500/120" + "2603:1020:1502:2::500/120", + "2603:1020:1502:3::670/124", + "2603:1020:1502:5::260/123" ], "networkFeatures": [ "NSG" @@ -70024,7 +73063,7 @@ "name": "AzureMonitor.BrazilSouth", "id": "AzureMonitor.BrazilSouth", "properties": { - "changeNumber": 17, + "changeNumber": 21, "region": "brazilsouth", "regionId": 9, "platform": "Azure", @@ -70032,11 +73071,14 @@ "addressPrefixes": [ "4.201.211.64/26", "4.201.211.128/27", + "4.201.241.48/28", + "4.201.241.144/28", "4.203.122.64/27", "4.203.122.128/26", "20.195.154.32/29", "20.206.183.64/28", "20.226.211.224/27", + "51.59.56.160/28", "104.41.61.169/32", "191.232.33.83/32", "191.232.161.75/32", @@ -70067,6 +73109,9 @@ "2603:1050:6:1::280/122", "2603:1050:6:7::/122", "2603:1050:6:7::40/123", + "2603:1050:6:a::460/124", + "2603:1050:6:b::400/120", + "2603:1050:6:b::720/123", "2603:1050:6:402::580/121", "2603:1050:6:402::600/121", "2603:1050:6:802::480/121", @@ -70082,12 +73127,14 @@ "name": "AzureMonitor.BrazilSoutheast", "id": "AzureMonitor.BrazilSoutheast", "properties": { - "changeNumber": 10, + "changeNumber": 12, "region": "brazilse", "regionId": 77, "platform": "Azure", "systemService": "AzureMonitor", "addressPrefixes": [ + "4.238.11.96/28", + "4.238.15.0/28", "20.206.0.196/31", "20.206.5.40/29", "108.140.6.64/27", @@ -70103,6 +73150,8 @@ "2603:1050:403:1::300/121", "2603:1050:403:2::7e0/123", "2603:1050:403:5::/122", + "2603:1050:403:7::2e0/124", + "2603:1050:403:7::660/123", "2603:1050:403:400::580/121" ], "networkFeatures": [ @@ -70114,13 +73163,15 @@ "name": "AzureMonitor.CanadaCentral", "id": "AzureMonitor.CanadaCentral", "properties": { - "changeNumber": 14, + "changeNumber": 17, "region": "canadacentral", "regionId": 11, "platform": "Azure", "systemService": "AzureMonitor", "addressPrefixes": [ "4.172.75.0/24", + "4.172.83.112/28", + "4.172.95.192/28", "4.174.145.0/27", "4.174.145.64/26", "13.71.172.128/28", @@ -70163,6 +73214,9 @@ "2603:1030:f05:1::280/122", "2603:1030:f05:4::5a0/123", "2603:1030:f05:4::5c0/122", + "2603:1030:f05:c::40/124", + "2603:1030:f05:d::100/120", + "2603:1030:f05:d::3e0/123", "2603:1030:f05:402::500/121", "2603:1030:f05:802::480/121", "2603:1030:f05:c02::480/121" @@ -70176,7 +73230,7 @@ "name": "AzureMonitor.CanadaEast", "id": "AzureMonitor.CanadaEast", "properties": { - "changeNumber": 12, + "changeNumber": 15, "region": "canadaeast", "regionId": 12, "platform": "Azure", @@ -70189,6 +73243,8 @@ "20.175.2.254/31", "20.175.5.128/29", "20.175.5.136/31", + "20.200.5.48/28", + "20.200.12.128/28", "40.69.107.16/28", "40.69.108.48/29", "40.69.111.128/27", @@ -70204,6 +73260,9 @@ "2603:1030:1005:3::6a0/123", "2603:1030:1005:3::6c0/122", "2603:1030:1005:3::780/121", + "2603:1030:1005:b::80/124", + "2603:1030:1005:b::700/120", + "2603:1030:1005:c::180/123", "2603:1030:1005:402::500/121" ], "networkFeatures": [ @@ -70215,15 +73274,17 @@ "name": "AzureMonitor.CentralIndia", "id": "AzureMonitor.CentralIndia", "properties": { - "changeNumber": 15, + "changeNumber": 19, "region": "centralindia", "regionId": 21, "platform": "Azure", "systemService": "AzureMonitor", "addressPrefixes": [ "4.186.1.0/24", + "4.188.8.112/28", "4.213.26.192/27", "4.213.29.64/26", + "4.247.186.32/28", "20.43.120.0/29", "20.43.120.240/29", "20.43.123.200/29", @@ -70262,6 +73323,9 @@ "2603:1040:a06:1::280/122", "2603:1040:a06:7::e0/123", "2603:1040:a06:7::100/122", + "2603:1040:a06:c::280/124", + "2603:1040:a06:c::500/120", + "2603:1040:a06:d::20/123", "2603:1040:a06:402::500/121", "2603:1040:a06:802::480/121", "2603:1040:a06:c02::480/121" @@ -70275,7 +73339,7 @@ "name": "AzureMonitor.CentralUS", "id": "AzureMonitor.CentralUS", "properties": { - "changeNumber": 37, + "changeNumber": 40, "region": "centralus", "regionId": 31, "platform": "Azure", @@ -70334,6 +73398,8 @@ "104.208.35.169/32", "168.61.179.178/32", "172.169.155.0/24", + "172.170.16.192/26", + "172.170.178.64/26", "172.173.8.80/28", "172.212.132.96/27", "172.212.240.0/26", @@ -70368,6 +73434,9 @@ "2603:1030:10:1::280/122", "2603:1030:10:d::4a0/123", "2603:1030:10:d::4c0/122", + "2603:1030:10:1e::280/122", + "2603:1030:10:1f::100/120", + "2603:1030:10:1f::440/122", "2603:1030:10:402::500/121", "2603:1030:10:802::480/121", "2603:1030:10:c02::480/121" @@ -70381,7 +73450,7 @@ "name": "AzureMonitor.CentralUSEUAP", "id": "AzureMonitor.CentralUSEUAP", "properties": { - "changeNumber": 10, + "changeNumber": 12, "region": "centraluseuap", "regionId": 48, "platform": "Azure", @@ -70398,6 +73467,7 @@ "52.180.164.91/32", "52.180.178.187/32", "52.180.182.209/32", + "134.138.212.16/28", "168.61.142.0/27", "168.61.239.96/27", "168.61.241.64/26", @@ -70408,6 +73478,8 @@ "2603:1030:f:2::300/121", "2603:1030:f:a::c0/123", "2603:1030:f:a::100/122", + "2603:1030:f:e::3d0/124", + "2603:1030:f:f::500/120", "2603:1030:f:400::d00/121" ], "networkFeatures": [ @@ -70419,18 +73491,23 @@ "name": "AzureMonitor.ChileCentral", "id": "AzureMonitor.ChileCentral", "properties": { - "changeNumber": 1, + "changeNumber": 4, "region": "chilec", "regionId": 10, "platform": "Azure", "systemService": "AzureMonitor", "addressPrefixes": [ + "57.156.5.112/28", + "57.156.5.128/27", + "57.156.5.176/28", + "57.156.5.192/27", "68.211.13.22/31", "68.211.13.52/30", "68.211.14.176/29", "68.211.15.32/27", "68.211.15.64/27", "68.211.20.248/30", + "68.211.31.144/28", "68.211.154.184/29", "68.211.156.48/28", "68.211.170.224/29", @@ -70442,7 +73519,9 @@ "2603:1050:301:2::3e0/123", "2603:1050:301:2::4c0/122", "2603:1050:301:2::580/123", - "2603:1050:301:2::600/120" + "2603:1050:301:2::600/120", + "2603:1050:301:4::390/124", + "2603:1050:301:4::5e0/123" ], "networkFeatures": [ "NSG" @@ -70453,7 +73532,7 @@ "name": "AzureMonitor.EastAsia", "id": "AzureMonitor.EastAsia", "properties": { - "changeNumber": 23, + "changeNumber": 26, "region": "eastasia", "regionId": 1, "platform": "Azure", @@ -70461,6 +73540,7 @@ "addressPrefixes": [ "4.144.10.32/27", "4.144.10.64/26", + "4.191.84.192/28", "4.192.252.224/27", "4.192.253.128/26", "13.75.38.0/28", @@ -70469,6 +73549,7 @@ "13.75.117.221/32", "13.75.119.169/32", "13.94.39.13/32", + "20.6.185.208/28", "20.187.197.192/27", "20.189.81.11/32", "20.189.81.14/32", @@ -70503,6 +73584,9 @@ "2603:1040:207:1::300/121", "2603:1040:207:6::380/123", "2603:1040:207:6::3c0/122", + "2603:1040:207:f::6e0/124", + "2603:1040:207:11::/120", + "2603:1040:207:11::300/123", "2603:1040:207:402::500/121", "2603:1040:207:800::300/121", "2603:1040:207:c00::300/121", @@ -70520,7 +73604,7 @@ "name": "AzureMonitor.EastUS", "id": "AzureMonitor.EastUS", "properties": { - "changeNumber": 59, + "changeNumber": 62, "region": "eastus", "regionId": 32, "platform": "Azure", @@ -70582,6 +73666,7 @@ "48.194.1.84/30", "48.194.1.88/29", "48.194.2.0/24", + "48.195.230.64/26", "52.150.36.187/32", "52.168.112.64/32", "52.168.116.72/29", @@ -70614,6 +73699,9 @@ "2603:1030:210:c::180/121", "2603:1030:210:f::5e0/123", "2603:1030:210:11::240/122", + "2603:1030:210:2c::500/122", + "2603:1030:210:2d::400/120", + "2603:1030:210:2e::80/122", "2603:1030:210:402::500/121", "2603:1030:210:802::480/121", "2603:1030:210:c00::100/121", @@ -70689,7 +73777,7 @@ "name": "AzureMonitor.EastUS2", "id": "AzureMonitor.EastUS2", "properties": { - "changeNumber": 39, + "changeNumber": 42, "region": "eastus2", "regionId": 33, "platform": "Azure", @@ -70739,6 +73827,10 @@ "104.209.161.217/32", "104.210.9.42/32", "137.116.82.175/32", + "172.175.111.64/27", + "172.175.111.96/28", + "172.175.178.208/28", + "172.175.179.32/27", "172.210.218.224/29", "172.210.218.240/28", "2603:1030:408::240/128", @@ -70773,6 +73865,11 @@ "2603:1030:40c:1::280/122", "2603:1030:40c:11::2c0/123", "2603:1030:40c:11::300/122", + "2603:1030:40c:23::1a0/123", + "2603:1030:40c:23::300/124", + "2603:1030:40c:24::200/120", + "2603:1030:40c:24::3f0/124", + "2603:1030:40c:24::440/122", "2603:1030:40c:402::500/121", "2603:1030:40c:802::480/121", "2603:1030:40c:c02::400/121" @@ -70786,7 +73883,7 @@ "name": "AzureMonitor.EastUS2EUAP", "id": "AzureMonitor.EastUS2EUAP", "properties": { - "changeNumber": 20, + "changeNumber": 23, "region": "eastus2euap", "regionId": 49, "platform": "Azure", @@ -70808,6 +73905,8 @@ "40.89.121.176/29", "48.223.21.160/27", "48.223.21.192/26", + "48.223.29.192/28", + "48.223.56.32/28", "52.138.90.48/30", "52.138.90.56/29", "68.220.85.64/29", @@ -70825,6 +73924,9 @@ "2603:1030:40b:2::300/121", "2603:1030:40b:8::640/123", "2603:1030:40b:8::680/122", + "2603:1030:40b:f::4c0/124", + "2603:1030:40b:10::500/120", + "2603:1030:40b:10::780/123", "2603:1030:40b:400::d00/121", "2603:1030:40b:800::400/121", "2603:1030:40b:c00::480/121", @@ -70835,6 +73937,34 @@ ] } }, + { + "name": "AzureMonitor.EastUS3", + "id": "AzureMonitor.EastUS3", + "properties": { + "changeNumber": 2, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureMonitor", + "addressPrefixes": [ + "134.138.82.12/30", + "134.138.82.144/29", + "134.138.82.152/30", + "134.138.82.156/31", + "134.138.82.192/26", + "134.138.94.192/26", + "134.138.98.136/29", + "134.138.98.240/28", + "2603:1030:1402:2::640/122", + "2603:1030:1402:2::700/122", + "2603:1030:1402:2::780/121", + "2603:1030:1402:3::/121" + ], + "networkFeatures": [ + "NSG" + ] + } + }, { "name": "AzureMonitor.EastUSSTG", "id": "AzureMonitor.EastUSSTG", @@ -70873,12 +74003,14 @@ "name": "AzureMonitor.FranceCentral", "id": "AzureMonitor.FranceCentral", "properties": { - "changeNumber": 21, + "changeNumber": 24, "region": "centralfrance", "regionId": 19, "platform": "Azure", "systemService": "AzureMonitor", "addressPrefixes": [ + "4.176.24.16/28", + "4.176.30.32/28", "4.176.48.0/24", "4.178.131.0/26", "20.19.27.128/28", @@ -70921,6 +74053,9 @@ "2603:1020:805:1::280/122", "2603:1020:805:3::3c0/123", "2603:1020:805:7::/122", + "2603:1020:805:d::130/124", + "2603:1020:805:d::500/120", + "2603:1020:805:d::7a0/123", "2603:1020:805:402::500/121", "2603:1020:805:802::480/121", "2603:1020:805:c02::480/121" @@ -70934,7 +74069,7 @@ "name": "AzureMonitor.FranceSouth", "id": "AzureMonitor.FranceSouth", "properties": { - "changeNumber": 11, + "changeNumber": 13, "region": "southfrance", "regionId": 20, "platform": "Azure", @@ -70942,6 +74077,8 @@ "addressPrefixes": [ "4.251.224.224/27", "4.251.225.64/26", + "20.111.68.240/28", + "20.111.71.160/28", "20.111.72.96/27", "20.111.78.0/29", "20.111.78.8/30", @@ -70956,6 +74093,8 @@ "2603:1020:905:5::700/121", "2603:1020:905:6::e0/123", "2603:1020:905:6::100/122", + "2603:1020:905:9::1f0/124", + "2603:1020:905:9::700/123", "2603:1020:905:402::500/121" ], "networkFeatures": [ @@ -70967,7 +74106,7 @@ "name": "AzureMonitor.GermanyNorth", "id": "AzureMonitor.GermanyNorth", "properties": { - "changeNumber": 12, + "changeNumber": 15, "region": "germanyn", "regionId": 72, "platform": "Azure", @@ -70982,6 +74121,8 @@ "20.170.175.192/27", "20.170.231.112/28", "20.170.241.64/27", + "20.170.248.32/28", + "20.170.249.240/28", "51.116.54.32/27", "51.116.59.176/28", "51.116.75.92/31", @@ -70993,6 +74134,9 @@ "2603:1020:d04:5::400/122", "2603:1020:d04:5::580/121", "2603:1020:d04:5::7c0/123", + "2603:1020:d04:9::2a0/124", + "2603:1020:d04:9::400/120", + "2603:1020:d04:9::740/123", "2603:1020:d04:402::500/121" ], "networkFeatures": [ @@ -71004,7 +74148,7 @@ "name": "AzureMonitor.GermanyWestCentral", "id": "AzureMonitor.GermanyWestCentral", "properties": { - "changeNumber": 15, + "changeNumber": 18, "region": "germanywc", "regionId": 71, "platform": "Azure", @@ -71015,6 +74159,8 @@ "4.182.44.128/26", "4.185.34.128/26", "4.185.34.192/27", + "4.185.224.224/28", + "4.185.231.176/28", "20.52.64.24/29", "20.52.64.32/27", "20.52.65.96/28", @@ -71040,6 +74186,9 @@ "2603:1020:c04:1::280/122", "2603:1020:c04:5::5c0/122", "2603:1020:c04:5::600/122", + "2603:1020:c04:a::160/124", + "2603:1020:c04:a::500/120", + "2603:1020:c04:b::20/123", "2603:1020:c04:402::500/121", "2603:1020:c04:800::100/121", "2603:1020:c04:c02::480/121" @@ -71053,12 +74202,17 @@ "name": "AzureMonitor.IndonesiaCentral", "id": "AzureMonitor.IndonesiaCentral", "properties": { - "changeNumber": 1, + "changeNumber": 4, "region": "indonesiacentral", "regionId": 6, "platform": "Azure", "systemService": "AzureMonitor", "addressPrefixes": [ + "48.193.48.80/28", + "48.193.48.96/27", + "48.193.48.144/28", + "48.193.48.160/27", + "70.153.90.160/28", "70.153.166.192/29", "70.153.166.200/30", "70.153.166.204/31", @@ -71075,7 +74229,9 @@ "2603:1040:1802:2::240/122", "2603:1040:1802:2::300/122", "2603:1040:1802:2::380/121", - "2603:1040:1802:2::400/121" + "2603:1040:1802:2::400/121", + "2603:1040:1802:4::590/124", + "2603:1040:1802:5::/123" ], "networkFeatures": [ "NSG" @@ -71086,7 +74242,7 @@ "name": "AzureMonitor.IsraelCentral", "id": "AzureMonitor.IsraelCentral", "properties": { - "changeNumber": 5, + "changeNumber": 7, "region": "israelcentral", "regionId": 85, "platform": "Azure", @@ -71108,6 +74264,7 @@ "20.217.166.0/26", "51.58.25.224/27", "51.58.26.0/28", + "51.58.31.112/28", "2603:1040:1401:4::c/127", "2603:1040:1401:11::3/128", "2603:1040:1402:1::5e0/123", @@ -71116,7 +74273,9 @@ "2603:1040:1402:2::80/121", "2603:1040:1402:2::5e0/123", "2603:1040:1402:2::600/122", - "2603:1040:1402:3::180/121" + "2603:1040:1402:3::180/121", + "2603:1040:1402:5::420/124", + "2603:1040:1402:8::200/120" ], "networkFeatures": [ "NSG" @@ -71127,7 +74286,7 @@ "name": "AzureMonitor.IsraelNorthwest", "id": "AzureMonitor.IsraelNorthwest", "properties": { - "changeNumber": 1, + "changeNumber": 3, "region": "israelnorthwest", "regionId": 86, "platform": "Azure", @@ -71137,11 +74296,16 @@ "51.4.133.208/29", "51.4.133.216/30", "51.4.136.0/26", + "51.4.150.240/28", + "51.4.154.48/28", + "51.4.154.64/26", "51.4.164.48/29", "51.4.164.96/28", "2603:1040:1701:d::d/128", "2603:1040:1702:2::480/121", - "2603:1040:1702:2::500/120" + "2603:1040:1702:2::500/120", + "2603:1040:1702:4::530/124", + "2603:1040:1702:4::6e0/123" ], "networkFeatures": [ "NSG" @@ -71152,7 +74316,7 @@ "name": "AzureMonitor.ItalyNorth", "id": "AzureMonitor.ItalyNorth", "properties": { - "changeNumber": 4, + "changeNumber": 7, "region": "italynorth", "regionId": 93, "platform": "Azure", @@ -71173,6 +74337,10 @@ "4.232.197.160/28", "9.235.22.224/27", "9.235.23.0/28", + "9.235.70.80/28", + "9.235.170.208/28", + "9.235.171.24/29", + "9.235.171.32/28", "2603:1020:1200:4::10/128", "2603:1020:1200:4::12/128", "2603:1020:1204:2::1e0/123", @@ -71180,7 +74348,10 @@ "2603:1020:1204:2::380/123", "2603:1020:1204:2::400/120", "2603:1020:1204:3::5a0/123", - "2603:1020:1204:3::5c0/122" + "2603:1020:1204:3::5c0/122", + "2603:1020:1204:7::130/124", + "2603:1020:1204:7::500/120", + "2603:1020:1204:7::620/123" ], "networkFeatures": [ "NSG" @@ -71191,13 +74362,16 @@ "name": "AzureMonitor.JapanEast", "id": "AzureMonitor.JapanEast", "properties": { - "changeNumber": 14, + "changeNumber": 18, "region": "japaneast", "regionId": 24, "platform": "Azure", "systemService": "AzureMonitor", "addressPrefixes": [ "4.189.204.0/24", + "4.216.1.176/28", + "4.216.2.16/28", + "4.241.51.16/28", "13.73.26.213/32", "13.78.10.58/32", "13.78.13.189/32", @@ -71241,6 +74415,9 @@ "2603:1040:407:1::280/122", "2603:1040:407:7::420/123", "2603:1040:407:7::440/122", + "2603:1040:407:b::5c0/124", + "2603:1040:407:e::300/120", + "2603:1040:407:e::4e0/123", "2603:1040:407:402::500/121", "2603:1040:407:802::480/121", "2603:1040:407:c00::100/121" @@ -71254,7 +74431,7 @@ "name": "AzureMonitor.JapanWest", "id": "AzureMonitor.JapanWest", "properties": { - "changeNumber": 13, + "changeNumber": 16, "region": "japanwest", "regionId": 25, "platform": "Azure", @@ -71268,6 +74445,7 @@ "20.18.179.200/29", "20.18.181.160/28", "20.18.183.0/29", + "20.63.252.80/28", "20.189.194.102/31", "20.189.225.128/27", "20.210.144.114/31", @@ -71281,6 +74459,7 @@ "40.80.180.160/27", "135.149.221.64/26", "135.149.221.128/27", + "172.192.184.208/28", "2603:1040:606::780/121", "2603:1040:606:1::280/123", "2603:1040:606:1::300/121", @@ -71288,6 +74467,9 @@ "2603:1040:606:3::600/123", "2603:1040:606:3::780/121", "2603:1040:606:6::400/122", + "2603:1040:606:9::7d0/124", + "2603:1040:606:b::400/120", + "2603:1040:606:b::5e0/123", "2603:1040:606:402::500/121", "2603:1040:606:800::300/121", "2603:1040:606:c00::/121" @@ -71301,7 +74483,7 @@ "name": "AzureMonitor.JioIndiaCentral", "id": "AzureMonitor.JioIndiaCentral", "properties": { - "changeNumber": 5, + "changeNumber": 7, "region": "jioindiacentral", "regionId": 64, "platform": "Azure", @@ -71316,6 +74498,8 @@ "20.192.231.244/30", "20.192.235.144/28", "20.207.5.104/29", + "74.225.110.144/28", + "74.225.115.0/28", "2603:1040:1101:2::3/128", "2603:1040:1104:1::160/123", "2603:1040:1104:1::180/122", @@ -71323,6 +74507,8 @@ "2603:1040:1104:1::580/121", "2603:1040:1104:5::200/123", "2603:1040:1104:5::240/122", + "2603:1040:1104:6::4b0/124", + "2603:1040:1104:6::640/123", "2603:1040:1104:400::460/123" ], "networkFeatures": [ @@ -71334,7 +74520,7 @@ "name": "AzureMonitor.JioIndiaWest", "id": "AzureMonitor.JioIndiaWest", "properties": { - "changeNumber": 10, + "changeNumber": 13, "region": "jioindiawest", "regionId": 65, "platform": "Azure", @@ -71349,12 +74535,14 @@ "20.193.203.112/28", "20.193.204.64/27", "20.244.198.224/27", + "20.244.209.32/28", "40.64.8.180/31", "40.64.14.64/27", "40.64.14.96/29", "98.70.128.0/26", "135.235.60.96/27", "135.235.60.128/28", + "135.235.62.80/28", "2603:1040:d01:4::7/128", "2603:1040:d04::280/122", "2603:1040:d04:1::380/121", @@ -71363,6 +74551,9 @@ "2603:1040:d04:3::60/126", "2603:1040:d04:3::5c0/123", "2603:1040:d04:3::600/122", + "2603:1040:d04:7::150/124", + "2603:1040:d04:7::2e0/123", + "2603:1040:d04:7::300/120", "2603:1040:d04:400::420/123", "2603:1040:d04:400::580/121", "2603:1040:d04:800::400/121", @@ -71377,7 +74568,7 @@ "name": "AzureMonitor.KoreaCentral", "id": "AzureMonitor.KoreaCentral", "properties": { - "changeNumber": 15, + "changeNumber": 18, "region": "koreacentral", "regionId": 26, "platform": "Azure", @@ -71385,6 +74576,8 @@ "addressPrefixes": [ "4.181.24.32/27", "4.181.24.64/26", + "4.217.214.16/28", + "4.230.123.96/28", "20.41.64.68/31", "20.41.67.112/28", "20.41.69.4/30", @@ -71422,6 +74615,9 @@ "2603:1040:f05:1::280/122", "2603:1040:f05:3::760/123", "2603:1040:f05:3::780/122", + "2603:1040:f05:b::700/124", + "2603:1040:f05:c::100/120", + "2603:1040:f05:c::280/123", "2603:1040:f05:402::500/121", "2603:1040:f05:802::480/121", "2603:1040:f05:c02::480/121" @@ -71435,7 +74631,7 @@ "name": "AzureMonitor.KoreaSouth", "id": "AzureMonitor.KoreaSouth", "properties": { - "changeNumber": 9, + "changeNumber": 12, "region": "koreasouth", "regionId": 50, "platform": "Azure", @@ -71445,6 +74641,8 @@ "4.243.44.128/26", "4.243.139.224/27", "4.243.140.0/28", + "4.243.153.128/28", + "4.243.158.192/28", "20.200.162.168/29", "20.200.166.138/31", "20.200.166.140/30", @@ -71464,6 +74662,9 @@ "2603:1040:e05:6::380/122", "2603:1040:e05:6::3c0/123", "2603:1040:e05:6::680/122", + "2603:1040:e05:9::d0/124", + "2603:1040:e05:9::500/120", + "2603:1040:e05:9::6e0/123", "2603:1040:e05:402::80/121" ], "networkFeatures": [ @@ -71506,7 +74707,7 @@ "name": "AzureMonitor.MalaysiaWest", "id": "AzureMonitor.MalaysiaWest", "properties": { - "changeNumber": 1, + "changeNumber": 3, "region": "malaysiawest", "regionId": 92, "platform": "Azure", @@ -71522,12 +74723,18 @@ "20.17.170.240/28", "20.17.186.224/29", "20.17.186.240/28", + "85.211.140.176/28", + "85.211.235.160/27", + "85.211.235.208/28", + "85.211.235.224/27", "2603:1040:1601:8::19/128", "2603:1040:1601:8::1a/128", "2603:1040:1602:2::440/122", "2603:1040:1602:2::500/122", "2603:1040:1602:2::580/121", - "2603:1040:1602:2::600/121" + "2603:1040:1602:2::600/121", + "2603:1040:1602:4::560/124", + "2603:1040:1602:4::780/123" ], "networkFeatures": [ "NSG" @@ -71538,7 +74745,7 @@ "name": "AzureMonitor.MexicoCentral", "id": "AzureMonitor.MexicoCentral", "properties": { - "changeNumber": 5, + "changeNumber": 8, "region": "mexicocentral", "regionId": 53, "platform": "Azure", @@ -71558,11 +74765,16 @@ "158.23.205.64/26", "172.195.21.16/28", "172.195.21.32/27", + "172.195.23.112/28", + "172.195.54.240/28", "2603:1030:701:7::12/127", "2603:1030:702:2::20/123", "2603:1030:702:2::40/122", "2603:1030:702:2::380/121", - "2603:1030:702:2::400/120" + "2603:1030:702:2::400/120", + "2603:1030:702:6::6e0/124", + "2603:1030:702:7::100/120", + "2603:1030:702:7::220/123" ], "networkFeatures": [ "NSG" @@ -71573,12 +74785,15 @@ "name": "AzureMonitor.NewZealandNorth", "id": "AzureMonitor.NewZealandNorth", "properties": { - "changeNumber": 1, + "changeNumber": 4, "region": "newzealandnorth", "regionId": 91, "platform": "Azure", "systemService": "AzureMonitor", "addressPrefixes": [ + "172.196.61.176/28", + "172.196.61.192/27", + "172.196.62.0/27", "172.204.165.124/30", "172.204.166.72/29", "172.204.166.224/31", @@ -71589,12 +74804,15 @@ "172.204.195.16/28", "172.204.211.0/29", "172.204.211.16/28", + "172.204.252.112/28", "2603:1010:501:8::10/127", "2603:1010:502:2::4a0/123", "2603:1010:502:2::600/122", "2603:1010:502:2::640/123", "2603:1010:502:2::680/121", - "2603:1010:502:2::700/121" + "2603:1010:502:2::700/121", + "2603:1010:502:5::310/124", + "2603:1010:502:5::5a0/123" ], "networkFeatures": [ "NSG" @@ -71605,7 +74823,7 @@ "name": "AzureMonitor.NorthCentralUS", "id": "AzureMonitor.NorthCentralUS", "properties": { - "changeNumber": 31, + "changeNumber": 34, "region": "northcentralus", "regionId": 34, "platform": "Azure", @@ -71618,6 +74836,7 @@ "20.49.114.48/31", "20.51.5.44/31", "20.51.7.0/27", + "20.59.214.64/26", "20.125.171.200/29", "20.125.203.200/29", "20.125.205.224/28", @@ -71632,6 +74851,7 @@ "52.162.110.168/29", "52.162.214.75/32", "52.237.157.70/32", + "52.240.193.64/26", "52.240.244.144/29", "52.240.244.236/31", "52.240.245.64/28", @@ -71646,6 +74866,9 @@ "2603:1030:608:1::300/121", "2603:1030:608:8::80/123", "2603:1030:608:8::c0/122", + "2603:1030:608:13::400/122", + "2603:1030:608:14::200/120", + "2603:1030:608:14::480/122", "2603:1030:608:402::500/121", "2603:1030:608:802::80/121", "2603:1030:608:c00::300/121", @@ -71674,7 +74897,7 @@ "name": "AzureMonitor.NorthEurope", "id": "AzureMonitor.NorthEurope", "properties": { - "changeNumber": 26, + "changeNumber": 29, "region": "northeurope", "regionId": 17, "platform": "Azure", @@ -71683,6 +74906,8 @@ "4.207.185.0/24", "4.207.252.128/27", "4.207.252.192/26", + "4.209.249.192/26", + "4.231.242.128/26", "13.69.229.64/29", "13.69.229.240/29", "13.69.233.0/30", @@ -71743,6 +74968,9 @@ "2603:1020:5:b::40/122", "2603:1020:5:b::120/123", "2603:1020:5:b::140/123", + "2603:1020:5:1a::240/122", + "2603:1020:5:1b::100/120", + "2603:1020:5:1b::300/122", "2603:1020:5:402::500/121", "2603:1020:5:802::480/121", "2603:1020:5:c02::480/121", @@ -71766,12 +74994,13 @@ "name": "AzureMonitor.NorwayEast", "id": "AzureMonitor.NorwayEast", "properties": { - "changeNumber": 15, + "changeNumber": 18, "region": "norwaye", "regionId": 63, "platform": "Azure", "systemService": "AzureMonitor", "addressPrefixes": [ + "4.177.29.144/28", "20.100.7.0/27", "20.100.7.48/28", "51.13.1.8/29", @@ -71802,6 +75031,9 @@ "2603:1020:e04:1::280/122", "2603:1020:e04:4::6e0/123", "2603:1020:e04:4::700/122", + "2603:1020:e04:b::a0/124", + "2603:1020:e04:c::/120", + "2603:1020:e04:c::180/123", "2603:1020:e04:402::500/121", "2603:1020:e04:802::480/121", "2603:1020:e04:c00::80/121" @@ -71815,7 +75047,7 @@ "name": "AzureMonitor.NorwayWest", "id": "AzureMonitor.NorwayWest", "properties": { - "changeNumber": 11, + "changeNumber": 13, "region": "norwayw", "regionId": 74, "platform": "Azure", @@ -71823,6 +75055,8 @@ "addressPrefixes": [ "4.220.142.192/27", "4.220.152.128/26", + "4.220.236.224/28", + "4.220.240.16/28", "51.13.128.32/27", "51.13.128.96/28", "51.13.136.192/27", @@ -71837,6 +75071,8 @@ "2603:1020:f04:6::400/122", "2603:1020:f04:6::580/121", "2603:1020:f04:6::7c0/123", + "2603:1020:f04:9::220/124", + "2603:1020:f04:9::580/123", "2603:1020:f04:402::500/121" ], "networkFeatures": [ @@ -71848,7 +75084,7 @@ "name": "AzureMonitor.PolandCentral", "id": "AzureMonitor.PolandCentral", "properties": { - "changeNumber": 3, + "changeNumber": 6, "region": "polandcentral", "regionId": 52, "platform": "Azure", @@ -71865,6 +75101,8 @@ "20.215.29.160/28", "20.215.76.160/27", "20.215.76.192/26", + "20.215.120.80/28", + "20.215.127.16/28", "20.215.158.128/29", "20.215.158.144/28", "20.215.168.224/27", @@ -71877,7 +75115,10 @@ "2603:1020:1302:2::80/121", "2603:1020:1302:2::680/121", "2603:1020:1302:3::180/123", - "2603:1020:1302:3::1c0/122" + "2603:1020:1302:3::1c0/122", + "2603:1020:1302:5::3e0/124", + "2603:1020:1302:5::600/120", + "2603:1020:1302:5::7e0/123" ], "networkFeatures": [ "NSG" @@ -71888,7 +75129,7 @@ "name": "AzureMonitor.QatarCentral", "id": "AzureMonitor.QatarCentral", "properties": { - "changeNumber": 11, + "changeNumber": 14, "region": "qatarcentral", "regionId": 84, "platform": "Azure", @@ -71896,6 +75137,7 @@ "addressPrefixes": [ "4.244.170.0/27", "4.244.170.32/28", + "4.244.175.112/28", "20.21.37.116/30", "20.21.37.120/29", "20.21.39.224/29", @@ -71915,6 +75157,7 @@ "20.21.84.128/28", "20.21.89.32/27", "20.21.89.64/26", + "20.173.60.224/28", "2603:1040:1001:4::/128", "2603:1040:1001:4::d/128", "2603:1040:1002:2::20/123", @@ -71923,7 +75166,10 @@ "2603:1040:1002:2::200/121", "2603:1040:1002:2::700/121", "2603:1040:1002:5::360/123", - "2603:1040:1002:5::5c0/122" + "2603:1040:1002:5::5c0/122", + "2603:1040:1002:7::6c0/124", + "2603:1040:1002:8::300/120", + "2603:1040:1002:8::460/123" ], "networkFeatures": [ "NSG" @@ -71934,12 +75180,14 @@ "name": "AzureMonitor.SouthAfricaNorth", "id": "AzureMonitor.SouthAfricaNorth", "properties": { - "changeNumber": 13, + "changeNumber": 16, "region": "southafricanorth", "regionId": 82, "platform": "Azure", "systemService": "AzureMonitor", "addressPrefixes": [ + "4.221.45.192/28", + "4.221.222.48/28", "20.87.86.208/28", "20.164.159.160/27", "20.164.159.192/26", @@ -71969,6 +75217,9 @@ "2603:1000:104:2::80/121", "2603:1000:104:6::/122", "2603:1000:104:6::40/123", + "2603:1000:104:9::540/124", + "2603:1000:104:a::600/120", + "2603:1000:104:a::7a0/123", "2603:1000:104:402::500/121", "2603:1000:104:802::480/121", "2603:1000:104:c02::480/121" @@ -71982,7 +75233,7 @@ "name": "AzureMonitor.SouthAfricaWest", "id": "AzureMonitor.SouthAfricaWest", "properties": { - "changeNumber": 12, + "changeNumber": 15, "region": "southafricawest", "regionId": 83, "platform": "Azure", @@ -71998,12 +75249,17 @@ "172.209.15.64/26", "172.209.100.0/27", "172.209.100.32/28", + "172.209.100.144/28", + "172.209.113.48/28", "2603:1000:4::780/121", "2603:1000:4:1::280/123", "2603:1000:4:1::300/121", "2603:1000:4:2::500/121", "2603:1000:4:2::7c0/123", "2603:1000:4:5::/122", + "2603:1000:4:7::e0/124", + "2603:1000:4:7::200/120", + "2603:1000:4:7::3c0/123", "2603:1000:4:402::500/121" ], "networkFeatures": [ @@ -72015,7 +75271,7 @@ "name": "AzureMonitor.SouthCentralUS", "id": "AzureMonitor.SouthCentralUS", "properties": { - "changeNumber": 25, + "changeNumber": 28, "region": "southcentralus", "regionId": 35, "platform": "Azure", @@ -72075,6 +75331,8 @@ "52.171.56.178/32", "52.171.138.167/32", "52.185.215.171/32", + "52.185.216.64/26", + "52.249.21.192/26", "104.44.140.84/32", "104.214.70.219/32", "104.214.104.109/32", @@ -72106,6 +75364,9 @@ "2603:1030:807:1::280/122", "2603:1030:807:9::200/123", "2603:1030:807:9::240/122", + "2603:1030:807:15::280/122", + "2603:1030:807:16::/120", + "2603:1030:807:16::200/122", "2603:1030:807:402::500/121", "2603:1030:807:802::480/121", "2603:1030:807:c02::480/121", @@ -72123,7 +75384,7 @@ "name": "AzureMonitor.SouthCentralUS2", "id": "AzureMonitor.SouthCentralUS2", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "southcentralus2", "regionId": 102, "platform": "Azure", @@ -72135,6 +75396,8 @@ "48.216.33.4/30", "48.216.33.48/29", "48.216.33.192/26", + "48.219.9.32/27", + "48.219.9.64/27", "2603:1030:1102:2::3e0/123", "2603:1030:1102:2::4c0/122", "2603:1030:1102:2::580/123", @@ -72175,7 +75438,7 @@ "name": "AzureMonitor.SouthIndia", "id": "AzureMonitor.SouthIndia", "properties": { - "changeNumber": 11, + "changeNumber": 14, "region": "southindia", "regionId": 22, "platform": "Azure", @@ -72195,6 +75458,8 @@ "52.172.87.40/31", "52.172.113.64/27", "74.224.208.66/31", + "74.225.41.48/28", + "74.225.44.96/28", "104.211.216.161/32", "2603:1040:c06::780/121", "2603:1040:c06:1::280/123", @@ -72202,6 +75467,9 @@ "2603:1040:c06:6::500/121", "2603:1040:c06:6::600/123", "2603:1040:c06:6::640/122", + "2603:1040:c06:a::5a0/124", + "2603:1040:c06:b::100/120", + "2603:1040:c06:b::2a0/123", "2603:1040:c06:402::500/121" ], "networkFeatures": [ @@ -72213,12 +75481,14 @@ "name": "AzureMonitor.SoutheastAsia", "id": "AzureMonitor.SoutheastAsia", "properties": { - "changeNumber": 17, + "changeNumber": 20, "region": "southeastasia", "regionId": 2, "platform": "Azure", "systemService": "AzureMonitor", "addressPrefixes": [ + "4.145.8.112/28", + "4.145.16.160/28", "4.145.79.224/27", "13.67.9.192/28", "13.67.10.64/29", @@ -72273,6 +75543,9 @@ "2603:1040:5:1::280/122", "2603:1040:5:8::5c0/123", "2603:1040:5:9::200/122", + "2603:1040:5:15::3f0/124", + "2603:1040:5:16::100/120", + "2603:1040:5:16::2e0/123", "2603:1040:5:402::500/121", "2603:1040:5:802::480/121", "2603:1040:5:c02::480/121", @@ -72288,7 +75561,7 @@ "name": "AzureMonitor.SoutheastUS", "id": "AzureMonitor.SoutheastUS", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "southeastus", "regionId": 101, "platform": "Azure", @@ -72302,6 +75575,8 @@ "57.151.228.160/30", "68.154.137.88/29", "68.154.140.80/28", + "68.154.151.96/27", + "68.154.151.128/27", "2603:1030:902:2::460/123", "2603:1030:902:2::540/122", "2603:1030:902:2::600/123", @@ -72317,7 +75592,7 @@ "name": "AzureMonitor.SoutheastUS3", "id": "AzureMonitor.SoutheastUS3", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "southeastus3", "regionId": 105, "platform": "Azure", @@ -72328,6 +75603,7 @@ "74.7.56.88/30", "74.7.56.92/31", "74.7.56.128/26", + "74.7.65.192/26", "74.7.83.32/29", "74.7.83.48/28", "2603:1030:1302:2::480/121", @@ -72342,7 +75618,7 @@ "name": "AzureMonitor.SpainCentral", "id": "AzureMonitor.SpainCentral", "properties": { - "changeNumber": 5, + "changeNumber": 8, "region": "spaincentral", "regionId": 88, "platform": "Azure", @@ -72360,14 +75636,19 @@ "68.221.149.160/28", "68.221.157.64/29", "68.221.157.80/28", + "70.156.172.224/28", "158.158.61.192/27", "158.158.61.224/28", + "158.158.131.80/28", "2603:1020:1402:7::13/128", "2603:1020:1402:7::14/128", "2603:1020:1403:2::/123", "2603:1020:1403:2::40/122", "2603:1020:1403:2::380/121", - "2603:1020:1403:2::400/120" + "2603:1020:1403:2::400/120", + "2603:1020:1403:7::110/124", + "2603:1020:1403:7::300/120", + "2603:1020:1403:7::440/123" ], "networkFeatures": [ "NSG" @@ -72378,12 +75659,14 @@ "name": "AzureMonitor.SwedenCentral", "id": "AzureMonitor.SwedenCentral", "properties": { - "changeNumber": 14, + "changeNumber": 17, "region": "swedencentral", "regionId": 76, "platform": "Azure", "systemService": "AzureMonitor", "addressPrefixes": [ + "4.165.111.96/28", + "4.223.182.144/28", "20.91.146.64/27", "20.91.146.112/28", "51.12.25.56/29", @@ -72414,6 +75697,9 @@ "2603:1020:1004:3::300/121", "2603:1020:1004:6::c0/123", "2603:1020:1004:6::100/122", + "2603:1020:1004:c::110/124", + "2603:1020:1004:c::700/120", + "2603:1020:1004:d::80/123", "2603:1020:1004:400::420/123", "2603:1020:1004:400::4a0/123", "2603:1020:1004:400::580/121", @@ -72429,7 +75715,7 @@ "name": "AzureMonitor.SwedenSouth", "id": "AzureMonitor.SwedenSouth", "properties": { - "changeNumber": 9, + "changeNumber": 11, "region": "swedensouth", "regionId": 75, "platform": "Azure", @@ -72437,6 +75723,8 @@ "addressPrefixes": [ "20.91.12.240/29", "20.91.13.0/27", + "20.91.44.0/28", + "20.91.89.192/28", "20.91.102.96/27", "20.91.112.0/26", "51.12.17.20/30", @@ -72458,6 +75746,8 @@ "2603:1020:1104:2::480/121", "2603:1020:1104:2::740/123", "2603:1020:1104:2::780/122", + "2603:1020:1104:6::6e0/124", + "2603:1020:1104:7::7a0/123", "2603:1020:1104:400::440/123", "2603:1020:1104:400::480/121" ], @@ -72470,12 +75760,13 @@ "name": "AzureMonitor.SwitzerlandNorth", "id": "AzureMonitor.SwitzerlandNorth", "properties": { - "changeNumber": 22, + "changeNumber": 25, "region": "switzerlandn", "regionId": 66, "platform": "Azure", "systemService": "AzureMonitor", "addressPrefixes": [ + "4.226.76.224/28", "20.208.19.200/29", "20.208.21.224/28", "20.208.148.16/28", @@ -72498,6 +75789,7 @@ "51.107.243.172/31", "74.161.189.192/26", "74.161.190.0/27", + "74.161.238.224/28", "74.242.188.0/27", "74.242.188.64/26", "2603:1020:a01:24::8/128", @@ -72509,6 +75801,9 @@ "2603:1020:a04:1::280/122", "2603:1020:a04:3::7e0/123", "2603:1020:a04:7::/122", + "2603:1020:a04:8::590/124", + "2603:1020:a04:9::5c0/123", + "2603:1020:a04:9::600/120", "2603:1020:a04:402::500/121", "2603:1020:a04:800::100/121", "2603:1020:a04:c02::480/121" @@ -72522,12 +75817,14 @@ "name": "AzureMonitor.SwitzerlandWest", "id": "AzureMonitor.SwitzerlandWest", "properties": { - "changeNumber": 14, + "changeNumber": 16, "region": "switzerlandw", "regionId": 67, "platform": "Azure", "systemService": "AzureMonitor", "addressPrefixes": [ + "4.226.250.64/28", + "4.226.252.176/28", "20.199.203.80/29", "51.107.147.16/28", "51.107.147.116/30", @@ -72547,6 +75844,8 @@ "2603:1020:b04:1::300/121", "2603:1020:b04:2::500/121", "2603:1020:b04:6::60/123", + "2603:1020:b04:7::360/124", + "2603:1020:b04:9::80/123", "2603:1020:b04:402::500/121" ], "networkFeatures": [ @@ -72558,7 +75857,7 @@ "name": "AzureMonitor.TaiwanNorth", "id": "AzureMonitor.TaiwanNorth", "properties": { - "changeNumber": 3, + "changeNumber": 5, "region": "taiwannorth", "regionId": 8, "platform": "Azure", @@ -72574,8 +75873,10 @@ "51.53.49.192/26", "51.53.110.128/29", "51.53.110.144/28", + "70.157.78.144/28", "70.157.90.8/29", "70.157.90.112/28", + "70.157.162.144/28", "167.105.106.8/29", "167.105.106.112/28", "2603:1040:1301:4::b/128", @@ -72583,7 +75884,9 @@ "2603:1040:1302:1::200/123", "2603:1040:1302:2::540/123", "2603:1040:1302:2::680/121", - "2603:1040:1302:3::540/122" + "2603:1040:1302:3::540/122", + "2603:1040:1302:6::2e0/124", + "2603:1040:1302:7::20/123" ], "networkFeatures": [ "NSG" @@ -72594,7 +75897,7 @@ "name": "AzureMonitor.TaiwanNorthwest", "id": "AzureMonitor.TaiwanNorthwest", "properties": { - "changeNumber": 2, + "changeNumber": 4, "region": "taiwannorthwest", "regionId": 96, "platform": "Azure", @@ -72610,6 +75913,9 @@ "51.53.191.144/28", "167.105.144.192/27", "167.105.145.0/26", + "167.105.220.96/28", + "167.105.250.104/29", + "167.105.250.112/28", "2603:1040:1201:2::14/128", "2603:1040:1202:1::6c0/122", "2603:1040:1202:2::100/122", @@ -72617,7 +75923,8 @@ "2603:1040:1202:2::180/121", "2603:1040:1202:2::540/123", "2603:1040:1202:2::700/121", - "2603:1040:1202:3::4c0/122" + "2603:1040:1202:3::4c0/122", + "2603:1040:1202:5::1d0/124" ], "networkFeatures": [ "NSG" @@ -72628,7 +75935,7 @@ "name": "AzureMonitor.UAECentral", "id": "AzureMonitor.UAECentral", "properties": { - "changeNumber": 12, + "changeNumber": 15, "region": "uaecentral", "regionId": 61, "platform": "Azure", @@ -72642,12 +75949,15 @@ "20.203.91.152/29", "20.203.94.192/30", "20.203.94.208/28", + "20.216.92.16/28", + "20.216.92.48/28", "40.120.8.192/27", "40.120.9.88/29", "74.243.3.192/27", "74.243.7.0/26", "74.243.21.0/29", "74.243.21.16/28", + "74.243.172.240/28", "2603:1040:b00:2::b/128", "2603:1040:b04::780/121", "2603:1040:b04:1::280/123", @@ -72655,6 +75965,8 @@ "2603:1040:b04:5::300/123", "2603:1040:b04:5::340/122", "2603:1040:b04:5::480/121", + "2603:1040:b04:8::110/124", + "2603:1040:b04:8::4a0/123", "2603:1040:b04:402::500/121" ], "networkFeatures": [ @@ -72666,12 +75978,13 @@ "name": "AzureMonitor.UAENorth", "id": "AzureMonitor.UAENorth", "properties": { - "changeNumber": 20, + "changeNumber": 23, "region": "uaenorth", "regionId": 60, "platform": "Azure", "systemService": "AzureMonitor", "addressPrefixes": [ + "4.161.10.112/28", "20.38.143.0/27", "20.38.143.44/30", "20.38.152.32/27", @@ -72681,6 +75994,7 @@ "20.74.195.72/31", "20.74.197.96/27", "20.74.198.160/28", + "20.174.245.64/28", "40.120.64.200/29", "40.120.65.0/28", "40.120.75.32/28", @@ -72702,6 +76016,9 @@ "2603:1040:904:1::280/122", "2603:1040:904:3::680/123", "2603:1040:904:3::6c0/122", + "2603:1040:904:7::7b0/124", + "2603:1040:904:8::500/120", + "2603:1040:904:8::660/123", "2603:1040:904:402::500/121", "2603:1040:904:800::100/121", "2603:1040:904:c02::480/121" @@ -72715,7 +76032,7 @@ "name": "AzureMonitor.UKSouth", "id": "AzureMonitor.UKSouth", "properties": { - "changeNumber": 15, + "changeNumber": 18, "region": "uksouth", "regionId": 27, "platform": "Azure", @@ -72723,6 +76040,7 @@ "addressPrefixes": [ "4.158.131.160/27", "4.158.131.192/26", + "4.159.235.208/28", "4.250.1.104/29", "20.26.20.64/28", "51.104.8.104/29", @@ -72756,6 +76074,7 @@ "51.143.165.22/32", "51.143.209.96/27", "51.145.44.242/32", + "172.165.84.176/28", "172.187.86.96/27", "172.187.86.192/26", "2603:1020:700:1::a4/128", @@ -72769,6 +76088,9 @@ "2603:1020:705:1::280/122", "2603:1020:705:8::260/123", "2603:1020:705:a::200/122", + "2603:1020:705:14::280/124", + "2603:1020:705:15::/120", + "2603:1020:705:15::420/123", "2603:1020:705:402::500/121", "2603:1020:705:802::480/121", "2603:1020:705:c02::480/121" @@ -72782,13 +76104,15 @@ "name": "AzureMonitor.UKWest", "id": "AzureMonitor.UKWest", "properties": { - "changeNumber": 14, + "changeNumber": 17, "region": "ukwest", "regionId": 28, "platform": "Azure", "systemService": "AzureMonitor", "addressPrefixes": [ "20.58.66.96/27", + "20.58.72.16/28", + "20.58.79.176/28", "20.58.120.0/26", "51.11.97.96/27", "51.11.100.16/29", @@ -72814,6 +76138,9 @@ "2603:1020:605:3::/121", "2603:1020:605:7::400/123", "2603:1020:605:7::440/122", + "2603:1020:605:a::5d0/124", + "2603:1020:605:b::600/120", + "2603:1020:605:b::700/123", "2603:1020:605:402::500/121" ], "networkFeatures": [ @@ -72825,7 +76152,7 @@ "name": "AzureMonitor.WestCentralUS", "id": "AzureMonitor.WestCentralUS", "properties": { - "changeNumber": 24, + "changeNumber": 27, "region": "westcentralus", "regionId": 36, "platform": "Azure", @@ -72840,6 +76167,8 @@ "13.78.189.112/32", "13.78.236.149/32", "20.51.33.0/24", + "20.51.41.192/26", + "20.51.48.192/26", "20.69.13.112/28", "20.168.190.160/27", "20.168.190.192/26", @@ -72868,6 +76197,7 @@ "2603:1030:b00::4db/128", "2603:1030:b00::50d/128", "2603:1030:b00:13::190/128", + "2603:1030:b00:28::61/128", "2603:1030:b00:29::d/128", "2603:1030:b00:29::7e/128", "2603:1030:b04::780/121", @@ -72875,6 +76205,9 @@ "2603:1030:b04:1::300/121", "2603:1030:b04:6::780/123", "2603:1030:b04:6::7c0/122", + "2603:1030:b04:e::/122", + "2603:1030:b04:f::100/120", + "2603:1030:b04:f::2c0/122", "2603:1030:b04:402::500/121" ], "networkFeatures": [ @@ -72886,7 +76219,7 @@ "name": "AzureMonitor.WestEurope", "id": "AzureMonitor.WestEurope", "properties": { - "changeNumber": 27, + "changeNumber": 30, "region": "westeurope", "regionId": 18, "platform": "Azure", @@ -72918,6 +76251,8 @@ "40.113.178.48/32", "40.114.241.141/32", "40.115.54.120/32", + "48.199.6.0/26", + "48.199.135.192/26", "51.105.248.23/32", "51.144.41.38/32", "51.144.81.252/32", @@ -72954,6 +76289,9 @@ "2603:1020:206:10::40/122", "2603:1020:206:10::120/123", "2603:1020:206:10::140/123", + "2603:1020:206:21::380/122", + "2603:1020:206:22::/120", + "2603:1020:206:22::3c0/122", "2603:1020:206:402::500/121", "2603:1020:206:802::480/121", "2603:1020:206:c00::100/121", @@ -73009,7 +76347,7 @@ "name": "AzureMonitor.WestUS", "id": "AzureMonitor.WestUS", "properties": { - "changeNumber": 45, + "changeNumber": 49, "region": "westus", "regionId": 37, "platform": "Azure", @@ -73030,6 +76368,9 @@ "20.168.163.200/29", "20.168.167.16/29", "20.189.172.0/25", + "40.75.147.224/27", + "40.75.149.224/27", + "40.75.151.0/26", "40.78.23.86/32", "40.78.57.61/32", "40.78.107.177/32", @@ -73038,6 +76379,8 @@ "52.159.214.64/27", "52.159.214.128/26", "52.190.161.0/24", + "52.238.33.64/26", + "52.238.33.128/27", "52.250.228.8/29", "52.250.228.16/28", "52.250.228.32/31", @@ -73058,6 +76401,11 @@ "2603:1030:a07:9::320/123", "2603:1030:a07:e::a0/123", "2603:1030:a07:e::100/122", + "2603:1030:a07:20::440/122", + "2603:1030:a07:20::480/123", + "2603:1030:a07:21::300/120", + "2603:1030:a07:22::220/123", + "2603:1030:a07:22::240/122", "2603:1030:a07:402::380/121", "2603:1030:a07:800::/121", "2603:1030:a07:c00::300/121", @@ -73119,7 +76467,7 @@ "name": "AzureMonitor.WestUS2", "id": "AzureMonitor.WestUS2", "properties": { - "changeNumber": 29, + "changeNumber": 32, "region": "westus2", "regionId": 38, "platform": "Azure", @@ -73157,6 +76505,8 @@ "40.78.253.72/29", "40.78.253.192/26", "48.192.43.0/24", + "48.200.60.192/26", + "48.202.71.0/26", "51.143.88.183/32", "52.151.11.176/32", "52.175.198.74/32", @@ -73180,6 +76530,7 @@ "2603:1030:c02:2::4e1/128", "2603:1030:c02:5::1d2/128", "2603:1030:c02:6::9/128", + "2603:1030:c02:6::19/128", "2603:1030:c02:6::1d/128", "2603:1030:c02:6::6b/128", "2603:1030:c06:1::280/122", @@ -73188,6 +76539,9 @@ "2603:1030:c06:2::300/121", "2603:1030:c06:c::320/123", "2603:1030:c06:d::/122", + "2603:1030:c06:20::240/122", + "2603:1030:c06:21::/120", + "2603:1030:c06:21::300/122", "2603:1030:c06:400::d00/121", "2603:1030:c06:802::400/121", "2603:1030:c06:c02::480/121", @@ -73207,7 +76561,7 @@ "name": "AzureMonitor.WestUS3", "id": "AzureMonitor.WestUS3", "properties": { - "changeNumber": 19, + "changeNumber": 22, "region": "westus3", "regionId": 79, "platform": "Azure", @@ -73233,6 +76587,8 @@ "20.150.241.64/29", "20.150.241.72/30", "20.150.241.96/27", + "20.172.72.80/28", + "20.172.117.0/28", "51.57.106.32/27", "51.57.106.64/26", "172.182.185.224/27", @@ -73254,6 +76610,9 @@ "2603:1030:504:2::760/126", "2603:1030:504:8::5c0/123", "2603:1030:504:9::140/122", + "2603:1030:504:14::130/124", + "2603:1030:504:15::/120", + "2603:1030:504:15::1c0/123", "2603:1030:504:402::500/121", "2603:1030:504:802::400/121", "2603:1030:504:c02::100/123", @@ -74046,19 +77405,17 @@ "name": "AzurePortal.AustraliaSoutheast", "id": "AzurePortal.AustraliaSoutheast", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "australiasoutheast", "regionId": 4, "platform": "Azure", "systemService": "AzurePortal", "addressPrefixes": [ - "13.77.1.236/32", "13.77.55.208/28", "20.42.227.192/27", "20.42.228.220/30", "20.42.228.224/27", "20.42.230.80/28", - "52.243.76.246/32", "104.46.178.96/29", "2603:1010:101::700/121" ], @@ -74140,16 +77497,14 @@ "name": "AzurePortal.CanadaCentral", "id": "AzurePortal.CanadaCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "canadacentral", "regionId": 11, "platform": "Azure", "systemService": "AzurePortal", "addressPrefixes": [ - "13.71.190.228/32", "20.38.149.208/28", "20.48.193.48/29", - "52.228.24.159/32", "52.228.83.160/27", "52.228.84.84/30", "52.228.84.96/28", @@ -74181,7 +77536,7 @@ "name": "AzurePortal.CentralIndia", "id": "AzurePortal.CentralIndia", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "centralindia", "regionId": 21, "platform": "Azure", @@ -74193,12 +77548,6 @@ "52.140.107.112/28", "52.140.108.64/30", "52.140.111.96/29", - "52.172.181.227/32", - "52.172.190.71/32", - "52.172.191.4/32", - "52.172.215.87/32", - "104.211.89.213/32", - "104.211.101.116/32", "2603:1040:a06::200/121", "2603:1040:a06:1::680/121" ], @@ -74267,14 +77616,12 @@ "name": "AzurePortal.EastAsia", "id": "AzurePortal.EastAsia", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "eastasia", "regionId": 1, "platform": "Azure", "systemService": "AzurePortal", "addressPrefixes": [ - "13.88.220.109/32", - "13.88.222.0/32", "20.187.197.0/29", "20.189.108.96/27", "20.189.109.88/30", @@ -74288,25 +77635,18 @@ "name": "AzurePortal.EastUS", "id": "AzurePortal.EastUS", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "eastus", "regionId": 32, "platform": "Azure", "systemService": "AzurePortal", "addressPrefixes": [ - "13.68.130.251/32", - "13.68.235.98/32", - "13.90.156.71/32", - "13.92.138.76/32", "20.42.6.192/27", "20.49.109.36/30", "20.49.109.44/31", "20.49.109.48/28", "20.62.128.240/29", "40.71.15.144/28", - "40.114.78.132/32", - "40.117.86.243/32", - "40.117.237.78/32", "48.211.4.192/27", "2603:1030:210::100/121", "2603:1030:210:1::680/121" @@ -74355,6 +77695,23 @@ "networkFeatures": null } }, + { + "name": "AzurePortal.EastUS3", + "id": "AzurePortal.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzurePortal", + "addressPrefixes": [ + "134.138.82.8/30", + "134.138.82.160/27", + "2603:1030:1402:2::680/121" + ], + "networkFeatures": null + } + }, { "name": "AzurePortal.EastUSSTG", "id": "AzurePortal.EastUSSTG", @@ -74517,19 +77874,17 @@ "name": "AzurePortal.JapanEast", "id": "AzurePortal.JapanEast", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "japaneast", "regionId": 24, "platform": "Azure", "systemService": "AzurePortal", "addressPrefixes": [ - "13.78.49.187/32", "20.43.66.64/27", "20.43.67.92/30", "20.43.67.96/27", "20.43.70.64/28", "20.191.161.80/29", - "23.102.65.134/32", "40.79.189.96/28", "2603:1040:407::100/121", "2603:1040:407:1::680/121" @@ -74717,7 +78072,7 @@ "name": "AzurePortal.NorthEurope", "id": "AzurePortal.NorthEurope", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "northeurope", "regionId": 17, "platform": "Azure", @@ -74727,8 +78082,6 @@ "20.38.87.224/27", "20.50.65.72/30", "52.146.132.80/29", - "104.41.216.228/32", - "137.116.247.179/32", "2603:1020:5::100/121", "2603:1020:5:1::680/121" ], @@ -74846,7 +78199,7 @@ "name": "AzurePortal.SouthCentralUS", "id": "AzurePortal.SouthCentralUS", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "southcentralus", "regionId": 35, "platform": "Azure", @@ -74856,11 +78209,7 @@ "13.73.249.160/28", "13.73.255.248/29", "20.45.125.240/28", - "40.84.132.239/32", - "40.84.228.255/32", "40.119.9.236/30", - "104.214.117.155/32", - "104.215.120.160/32", "2603:1030:807::100/121", "2603:1030:807:1::680/121" ], @@ -74923,14 +78272,12 @@ "name": "AzurePortal.SoutheastAsia", "id": "AzurePortal.SoutheastAsia", "properties": { - "changeNumber": 3, + "changeNumber": 4, "region": "southeastasia", "regionId": 2, "platform": "Azure", "systemService": "AzurePortal", "addressPrefixes": [ - "13.67.35.35/32", - "13.67.35.77/32", "20.43.132.32/27", "23.98.104.80/28", "23.98.104.96/27", @@ -74938,9 +78285,7 @@ "23.98.108.44/31", "23.98.108.168/29", "40.78.239.48/28", - "52.163.207.80/32", "57.155.102.64/27", - "104.215.146.128/32", "2603:1040:5::200/121", "2603:1040:5:1::680/121" ], @@ -75145,7 +78490,7 @@ "name": "AzurePortal.UKSouth", "id": "AzurePortal.UKSouth", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "uksouth", "regionId": 27, "platform": "Azure", @@ -75154,12 +78499,8 @@ "51.104.27.96/27", "51.104.28.220/30", "51.104.28.224/28", - "51.140.69.25/32", - "51.140.138.84/32", "51.140.149.64/28", "51.143.208.192/29", - "51.145.3.27/32", - "51.145.21.195/32", "85.210.193.224/27", "2603:1020:705::100/121", "2603:1020:705:1::680/121" @@ -75189,22 +78530,18 @@ "name": "AzurePortal.WestCentralUS", "id": "AzurePortal.WestCentralUS", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "westcentralus", "regionId": 36, "platform": "Azure", "systemService": "AzurePortal", "addressPrefixes": [ - "13.77.202.2/32", - "13.78.132.155/32", - "13.78.230.142/32", "40.67.121.128/28", "52.150.139.224/27", "52.150.140.216/30", "52.150.152.16/28", "52.150.152.224/27", "52.150.156.232/29", - "52.161.101.86/32", "2603:1030:b04::700/121" ], "networkFeatures": null @@ -75214,23 +78551,19 @@ "name": "AzurePortal.WestEurope", "id": "AzurePortal.WestEurope", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "westeurope", "regionId": 18, "platform": "Azure", "systemService": "AzurePortal", "addressPrefixes": [ "13.69.112.176/28", - "13.69.126.92/32", "20.50.1.32/27", "20.50.1.160/27", "20.50.1.200/30", "20.50.1.208/28", "20.61.98.128/29", - "40.113.117.57/32", - "40.114.236.251/32", "57.153.246.128/27", - "213.199.128.226/32", "2603:1020:206::100/121", "2603:1020:206:1::680/121" ], @@ -75259,7 +78592,7 @@ "name": "AzurePortal.WestUS", "id": "AzurePortal.WestUS", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "westus", "regionId": 37, "platform": "Azure", @@ -75270,7 +78603,6 @@ "20.49.126.156/30", "20.49.127.224/28", "40.82.253.224/27", - "104.42.195.92/32", "2603:1030:a07::700/121" ], "networkFeatures": null @@ -75280,7 +78612,7 @@ "name": "AzurePortal.WestUS2", "id": "AzurePortal.WestUS2", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "westus2", "regionId": 38, "platform": "Azure", @@ -75290,9 +78622,7 @@ "40.64.132.88/30", "40.64.132.96/28", "40.64.135.88/29", - "40.65.114.234/32", "40.78.245.208/28", - "52.233.66.46/32", "74.179.37.192/27", "2603:1030:c06:1::680/121" ], @@ -75668,6 +78998,22 @@ "networkFeatures": null } }, + { + "name": "AzureResourceManager.EastUS3", + "id": "AzureResourceManager.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureResourceManager", + "addressPrefixes": [ + "134.138.74.0/23", + "2603:1030:1402:1::500/120" + ], + "networkFeatures": null + } + }, { "name": "AzureResourceManager.EastUSSTG", "id": "AzureResourceManager.EastUSSTG", @@ -77454,6 +80800,32 @@ ] } }, + { + "name": "Sql.EastUS3", + "id": "Sql.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureSQL", + "addressPrefixes": [ + "134.138.83.32/27", + "134.138.83.64/27", + "134.138.83.128/26", + "134.138.96.48/29", + "134.138.96.224/27", + "2603:1030:1402:2::760/123", + "2603:1030:1402:3::80/121" + ], + "networkFeatures": [ + "API", + "NSG", + "UDR", + "FW" + ] + } + }, { "name": "Sql.EastUSSTG", "id": "Sql.EastUSSTG", @@ -79514,6 +82886,46 @@ "networkFeatures": null } }, + { + "name": "AzureSecurityCenter.AustriaEast", + "id": "AzureSecurityCenter.AustriaEast", + "properties": { + "changeNumber": 1, + "region": "austriaeast", + "regionId": 95, + "platform": "Azure", + "systemService": "AzureSecurityCenter", + "addressPrefixes": [ + "68.210.30.216/30", + "68.210.30.240/28", + "68.210.56.160/27", + "68.210.56.192/26", + "68.210.57.0/24", + "68.210.58.0/25" + ], + "networkFeatures": null + } + }, + { + "name": "AzureSecurityCenter.BelgiumCentral", + "id": "AzureSecurityCenter.BelgiumCentral", + "properties": { + "changeNumber": 1, + "region": "belgiumcentral", + "regionId": 97, + "platform": "Azure", + "systemService": "AzureSecurityCenter", + "addressPrefixes": [ + "9.160.66.136/30", + "9.160.66.208/28", + "9.160.67.128/25", + "9.160.68.0/24", + "9.160.69.0/26", + "9.160.69.64/27" + ], + "networkFeatures": null + } + }, { "name": "AzureSecurityCenter.BrazilSouth", "id": "AzureSecurityCenter.BrazilSouth", @@ -79661,6 +83073,26 @@ "networkFeatures": null } }, + { + "name": "AzureSecurityCenter.ChileCentral", + "id": "AzureSecurityCenter.ChileCentral", + "properties": { + "changeNumber": 1, + "region": "chilec", + "regionId": 10, + "platform": "Azure", + "systemService": "AzureSecurityCenter", + "addressPrefixes": [ + "57.156.1.176/28", + "57.156.1.192/26", + "57.156.2.0/24", + "57.156.3.0/25", + "57.156.3.128/27", + "68.211.31.220/30" + ], + "networkFeatures": null + } + }, { "name": "AzureSecurityCenter.EastAsia", "id": "AzureSecurityCenter.EastAsia", @@ -79837,6 +83269,66 @@ "networkFeatures": null } }, + { + "name": "AzureSecurityCenter.IndonesiaCentral", + "id": "AzureSecurityCenter.IndonesiaCentral", + "properties": { + "changeNumber": 1, + "region": "indonesiacentral", + "regionId": 6, + "platform": "Azure", + "systemService": "AzureSecurityCenter", + "addressPrefixes": [ + "70.153.92.140/30", + "70.153.92.160/27", + "70.153.92.192/26", + "70.153.93.0/24", + "70.153.94.0/25", + "70.153.94.128/28" + ], + "networkFeatures": null + } + }, + { + "name": "AzureSecurityCenter.IsraelCentral", + "id": "AzureSecurityCenter.IsraelCentral", + "properties": { + "changeNumber": 1, + "region": "israelcentral", + "regionId": 85, + "platform": "Azure", + "systemService": "AzureSecurityCenter", + "addressPrefixes": [ + "51.58.49.60/30", + "51.58.49.64/26", + "51.58.49.128/25", + "51.58.50.0/24", + "51.58.51.0/27", + "51.58.51.32/28" + ], + "networkFeatures": null + } + }, + { + "name": "AzureSecurityCenter.ItalyNorth", + "id": "AzureSecurityCenter.ItalyNorth", + "properties": { + "changeNumber": 1, + "region": "italynorth", + "regionId": 93, + "platform": "Azure", + "systemService": "AzureSecurityCenter", + "addressPrefixes": [ + "9.235.70.152/30", + "9.235.70.160/27", + "9.235.70.192/26", + "9.235.71.0/24", + "9.235.168.0/25", + "9.235.168.128/28" + ], + "networkFeatures": null + } + }, { "name": "AzureSecurityCenter.JapanEast", "id": "AzureSecurityCenter.JapanEast", @@ -79957,6 +83449,66 @@ "networkFeatures": null } }, + { + "name": "AzureSecurityCenter.MalaysiaWest", + "id": "AzureSecurityCenter.MalaysiaWest", + "properties": { + "changeNumber": 1, + "region": "malaysiawest", + "regionId": 92, + "platform": "Azure", + "systemService": "AzureSecurityCenter", + "addressPrefixes": [ + "85.211.140.136/30", + "85.211.143.176/28", + "85.211.143.192/26", + "85.211.232.0/24", + "85.211.233.0/25", + "85.211.233.128/27" + ], + "networkFeatures": null + } + }, + { + "name": "AzureSecurityCenter.MexicoCentral", + "id": "AzureSecurityCenter.MexicoCentral", + "properties": { + "changeNumber": 1, + "region": "mexicocentral", + "regionId": 53, + "platform": "Azure", + "systemService": "AzureSecurityCenter", + "addressPrefixes": [ + "172.195.50.60/30", + "172.195.50.64/26", + "172.195.50.128/25", + "172.195.51.0/24", + "172.195.52.0/27", + "172.195.52.32/28" + ], + "networkFeatures": null + } + }, + { + "name": "AzureSecurityCenter.NewZealandNorth", + "id": "AzureSecurityCenter.NewZealandNorth", + "properties": { + "changeNumber": 1, + "region": "newzealandnorth", + "regionId": 91, + "platform": "Azure", + "systemService": "AzureSecurityCenter", + "addressPrefixes": [ + "172.196.57.128/25", + "172.196.58.0/24", + "172.196.59.0/26", + "172.196.59.64/27", + "172.196.59.96/28", + "172.204.255.248/30" + ], + "networkFeatures": null + } + }, { "name": "AzureSecurityCenter.NorthCentralUS", "id": "AzureSecurityCenter.NorthCentralUS", @@ -80040,6 +83592,46 @@ "networkFeatures": null } }, + { + "name": "AzureSecurityCenter.PolandCentral", + "id": "AzureSecurityCenter.PolandCentral", + "properties": { + "changeNumber": 1, + "region": "polandcentral", + "regionId": 52, + "platform": "Azure", + "systemService": "AzureSecurityCenter", + "addressPrefixes": [ + "20.215.122.24/30", + "20.215.122.32/27", + "20.215.122.64/26", + "20.215.123.0/24", + "20.215.124.0/25", + "20.215.124.128/28" + ], + "networkFeatures": null + } + }, + { + "name": "AzureSecurityCenter.QatarCentral", + "id": "AzureSecurityCenter.QatarCentral", + "properties": { + "changeNumber": 1, + "region": "qatarcentral", + "regionId": 84, + "platform": "Azure", + "systemService": "AzureSecurityCenter", + "addressPrefixes": [ + "20.173.57.8/30", + "20.173.57.16/28", + "20.173.57.32/27", + "20.173.57.64/26", + "20.173.57.128/25", + "20.173.58.0/24" + ], + "networkFeatures": null + } + }, { "name": "AzureSecurityCenter.SouthAfricaNorth", "id": "AzureSecurityCenter.SouthAfricaNorth", @@ -80158,6 +83750,26 @@ "networkFeatures": null } }, + { + "name": "AzureSecurityCenter.SpainCentral", + "id": "AzureSecurityCenter.SpainCentral", + "properties": { + "changeNumber": 1, + "region": "spaincentral", + "regionId": 88, + "platform": "Azure", + "systemService": "AzureSecurityCenter", + "addressPrefixes": [ + "70.156.174.4/30", + "70.156.174.16/28", + "70.156.174.32/27", + "70.156.174.64/26", + "70.156.175.0/24", + "158.158.128.0/25" + ], + "networkFeatures": null + } + }, { "name": "AzureSecurityCenter.SwedenCentral", "id": "AzureSecurityCenter.SwedenCentral", @@ -80963,6 +84575,25 @@ ] } }, + { + "name": "ServiceBus.EastUS3", + "id": "ServiceBus.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureServiceBus", + "addressPrefixes": [ + "134.138.71.128/25", + "2603:1030:1402:1::180/121" + ], + "networkFeatures": [ + "API", + "NSG" + ] + } + }, { "name": "ServiceBus.EastUSSTG", "id": "ServiceBus.EastUSSTG", @@ -83395,7 +87026,7 @@ "name": "Storage.AustraliaEast", "id": "Storage.AustraliaEast", "properties": { - "changeNumber": 15, + "changeNumber": 16, "region": "australiaeast", "regionId": 3, "platform": "Azure", @@ -83432,6 +87063,7 @@ "57.150.210.0/23", "104.46.31.16/28", "135.130.126.0/23", + "145.190.129.0/24", "191.238.66.0/26", "2603:1010:7::/48" ], @@ -83488,7 +87120,7 @@ "name": "Storage.AustriaEast", "id": "Storage.AustriaEast", "properties": { - "changeNumber": 1, + "changeNumber": 3, "region": "austriaeast", "regionId": 95, "platform": "Azure", @@ -83498,6 +87130,8 @@ "20.33.245.0/24", "57.150.117.0/24", "57.150.120.0/22", + "135.130.188.0/23", + "145.190.128.0/24", "2603:1020:101::/48" ], "networkFeatures": [ @@ -83575,7 +87209,7 @@ "name": "Storage.BrazilSoutheast", "id": "Storage.BrazilSoutheast", "properties": { - "changeNumber": 4, + "changeNumber": 5, "region": "brazilse", "regionId": 77, "platform": "Azure", @@ -83587,6 +87221,7 @@ "20.157.42.0/24", "20.157.189.0/24", "20.209.210.0/23", + "135.130.178.0/23", "2603:1050:404::/48" ], "networkFeatures": [ @@ -83601,7 +87236,7 @@ "name": "Storage.CanadaCentral", "id": "Storage.CanadaCentral", "properties": { - "changeNumber": 14, + "changeNumber": 15, "region": "canadacentral", "regionId": 11, "platform": "Azure", @@ -83632,6 +87267,7 @@ "52.239.189.0/24", "57.150.54.0/23", "135.130.52.0/23", + "145.190.132.0/24", "2603:1030:f08::/48" ], "networkFeatures": [ @@ -83684,7 +87320,7 @@ "name": "Storage.CentralIndia", "id": "Storage.CentralIndia", "properties": { - "changeNumber": 11, + "changeNumber": 12, "region": "centralindia", "regionId": 21, "platform": "Azure", @@ -83710,6 +87346,7 @@ "104.211.109.32/27", "104.211.109.80/28", "104.211.109.96/28", + "135.130.174.0/23", "2603:1040:a07::/48" ], "networkFeatures": [ @@ -83724,7 +87361,7 @@ "name": "Storage.CentralUS", "id": "Storage.CentralUS", "properties": { - "changeNumber": 32, + "changeNumber": 34, "region": "centralus", "regionId": 31, "platform": "Azure", @@ -83757,6 +87394,7 @@ "20.153.72.0/23", "20.153.74.0/24", "20.153.76.0/24", + "20.153.126.0/24", "20.157.34.0/23", "20.157.142.0/23", "20.157.163.0/24", @@ -83827,6 +87465,7 @@ "135.130.34.128/26", "135.130.70.0/23", "135.130.104.0/23", + "135.130.186.0/23", "168.61.128.192/26", "168.61.129.0/25", "168.61.130.64/26", @@ -83852,7 +87491,7 @@ "name": "Storage.CentralUSEUAP", "id": "Storage.CentralUSEUAP", "properties": { - "changeNumber": 10, + "changeNumber": 11, "region": "centraluseuap", "regionId": 48, "platform": "Azure", @@ -83865,6 +87504,7 @@ "20.150.47.0/25", "20.153.69.192/26", "20.153.77.0/24", + "20.153.120.0/24", "20.157.235.0/24", "20.209.124.0/23", "40.83.24.96/27", @@ -83965,7 +87605,7 @@ "name": "Storage.EastUS", "id": "Storage.EastUS", "properties": { - "changeNumber": 47, + "changeNumber": 50, "region": "eastus", "regionId": 32, "platform": "Azure", @@ -84007,6 +87647,7 @@ "20.153.88.0/24", "20.153.105.0/24", "20.153.107.0/24", + "20.153.124.0/24", "20.157.39.0/24", "20.157.59.0/24", "20.157.61.0/24", @@ -84078,8 +87719,12 @@ "135.130.64.0/23", "135.130.108.0/23", "135.130.112.0/23", + "135.130.160.0/23", + "135.130.170.0/23", + "135.130.196.0/23", "138.91.96.64/26", "138.91.96.128/26", + "145.190.134.0/24", "168.62.32.0/26", "168.62.32.192/26", "168.62.33.128/26", @@ -84106,7 +87751,7 @@ "name": "Storage.EastUS2", "id": "Storage.EastUS2", "properties": { - "changeNumber": 44, + "changeNumber": 46, "region": "eastus2", "regionId": 33, "platform": "Azure", @@ -84202,20 +87847,24 @@ "52.239.157.192/27", "52.239.172.0/22", "52.239.184.0/25", + "52.239.184.128/27", "52.239.184.160/28", "52.239.184.192/27", "52.239.185.32/27", + "52.239.185.64/27", "52.239.192.0/26", "52.239.192.64/28", "52.239.192.96/27", "52.239.192.160/27", "52.239.192.192/26", "52.239.198.0/25", + "52.239.198.160/27", "52.239.198.192/26", "52.239.206.0/24", "52.239.207.32/28", "52.239.207.64/26", "52.239.207.128/27", + "52.239.207.160/27", "52.239.222.0/23", "57.150.4.0/23", "57.150.74.0/23", @@ -84233,6 +87882,11 @@ "135.130.10.0/23", "135.130.38.0/23", "135.130.62.0/23", + "135.130.158.0/23", + "135.130.168.0/23", + "135.130.180.0/23", + "135.130.182.0/23", + "135.130.184.0/23", "137.116.1.0/25", "137.116.2.0/26", "137.116.2.96/29", @@ -84247,10 +87901,12 @@ "137.116.3.128/26", "137.116.96.0/25", "137.116.96.128/26", + "145.190.133.0/24", "191.237.160.64/26", "191.237.160.224/28", "191.239.224.0/26", - "2603:1030:40f::/48" + "2603:1030:40f::/49", + "2603:1030:40f:8000::/63" ], "networkFeatures": [ "API", @@ -84360,6 +88016,31 @@ ] } }, + { + "name": "Storage.EastUS3", + "id": "Storage.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "AzureStorage", + "addressPrefixes": [ + "20.153.48.0/24", + "20.153.58.0/24", + "57.150.249.0/24", + "135.130.0.0/23", + "135.130.2.0/24", + "2603:1030:1403::/48" + ], + "networkFeatures": [ + "API", + "NSG", + "UDR", + "FW" + ] + } + }, { "name": "Storage.EastUSSTG", "id": "Storage.EastUSSTG", @@ -84455,7 +88136,7 @@ "name": "Storage.GermanyNorth", "id": "Storage.GermanyNorth", "properties": { - "changeNumber": 7, + "changeNumber": 8, "region": "germanyn", "regionId": 72, "platform": "Azure", @@ -84465,6 +88146,7 @@ "20.47.45.0/24", "20.150.60.0/24", "20.150.112.0/24", + "20.153.123.0/24", "20.157.229.0/24", "20.209.206.0/23", "57.150.216.0/23", @@ -84482,7 +88164,7 @@ "name": "Storage.GermanyWestCentral", "id": "Storage.GermanyWestCentral", "properties": { - "changeNumber": 12, + "changeNumber": 14, "region": "germanywc", "regionId": 71, "platform": "Azure", @@ -84495,12 +88177,14 @@ "20.60.22.0/23", "20.150.54.0/24", "20.150.125.0/24", + "20.153.119.0/24", "20.157.160.0/24", "20.157.183.0/24", "20.209.32.0/23", "20.209.176.0/23", "20.209.242.0/23", "57.150.218.0/23", + "135.130.200.0/23", "2603:1020:c05::/48" ], "networkFeatures": [ @@ -84948,7 +88632,7 @@ "name": "Storage.NorthCentralUS", "id": "Storage.NorthCentralUS", "properties": { - "changeNumber": 20, + "changeNumber": 21, "region": "northcentralus", "regionId": 34, "platform": "Azure", @@ -84970,6 +88654,8 @@ "20.153.67.0/24", "20.153.75.0/24", "20.153.115.0/24", + "20.153.117.0/24", + "20.153.118.0/24", "20.157.47.0/24", "20.157.172.0/24", "20.209.38.0/23", @@ -85009,6 +88695,8 @@ "135.130.92.0/23", "135.130.134.0/23", "135.130.136.0/23", + "135.130.142.0/23", + "135.130.146.0/23", "157.56.216.0/26", "168.62.96.128/26", "168.62.96.210/32", @@ -85055,7 +88743,7 @@ "name": "Storage.NorthEurope", "id": "Storage.NorthEurope", "properties": { - "changeNumber": 27, + "changeNumber": 28, "region": "northeurope", "regionId": 17, "platform": "Azure", @@ -85133,11 +88821,13 @@ "57.150.220.0/23", "104.41.232.16/28", "135.130.68.0/23", + "135.130.164.0/23", "137.135.192.64/26", "137.135.192.192/26", "137.135.193.192/26", "137.135.194.0/25", "137.135.194.192/26", + "145.190.130.0/24", "168.61.120.32/27", "168.61.120.64/27", "168.61.121.0/26", @@ -85249,7 +88939,7 @@ "name": "Storage.QatarCentral", "id": "Storage.QatarCentral", "properties": { - "changeNumber": 6, + "changeNumber": 7, "region": "qatarcentral", "regionId": 84, "platform": "Azure", @@ -85262,6 +88952,7 @@ "20.209.2.0/23", "20.209.54.0/23", "20.209.202.0/23", + "145.190.131.0/24", "2603:1040:1004::/48" ], "networkFeatures": [ @@ -85276,7 +88967,7 @@ "name": "Storage.SouthAfricaNorth", "id": "Storage.SouthAfricaNorth", "properties": { - "changeNumber": 10, + "changeNumber": 11, "region": "southafricanorth", "regionId": 82, "platform": "Azure", @@ -85290,6 +88981,7 @@ "20.150.21.0/24", "20.150.62.0/24", "20.150.101.0/24", + "20.153.121.0/24", "20.157.162.0/24", "20.209.130.0/23", "20.209.208.0/23", @@ -85336,7 +89028,7 @@ "name": "Storage.SouthCentralUS", "id": "Storage.SouthCentralUS", "properties": { - "changeNumber": 29, + "changeNumber": 31, "region": "southcentralus", "regionId": 35, "platform": "Azure", @@ -85373,6 +89065,7 @@ "20.153.69.0/25", "20.153.79.0/24", "20.153.95.0/24", + "20.153.125.0/24", "20.157.43.0/24", "20.157.54.0/24", "20.157.134.0/24", @@ -85427,6 +89120,7 @@ "135.130.24.0/24", "135.130.74.0/23", "135.130.114.0/23", + "135.130.172.0/23", "168.62.128.128/26", "2603:1030:80b::/49", "2603:1030:80b:8000::/58", @@ -85533,7 +89227,7 @@ "name": "Storage.SoutheastAsia", "id": "Storage.SoutheastAsia", "properties": { - "changeNumber": 15, + "changeNumber": 16, "region": "southeastasia", "regionId": 2, "platform": "Azure", @@ -85568,6 +89262,7 @@ "57.150.44.0/23", "104.215.240.64/28", "104.215.240.96/28", + "135.130.202.0/23", "168.63.160.0/26", "168.63.160.192/26", "168.63.161.64/26", @@ -85620,7 +89315,7 @@ "name": "Storage.SoutheastUS3", "id": "Storage.SoutheastUS3", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "southeastus3", "regionId": 105, "platform": "Azure", @@ -85632,6 +89327,7 @@ "57.150.186.0/23", "57.150.214.0/23", "135.130.124.0/23", + "135.130.144.0/23", "2603:1030:1303::/48" ], "networkFeatures": [ @@ -85675,7 +89371,7 @@ "name": "Storage.SwedenCentral", "id": "Storage.SwedenCentral", "properties": { - "changeNumber": 10, + "changeNumber": 11, "region": "swedencentral", "regionId": 76, "platform": "Azure", @@ -85693,6 +89389,7 @@ "20.209.216.0/23", "57.150.58.0/23", "135.130.110.0/23", + "145.190.140.0/24", "2603:1020:1005::/48" ], "networkFeatures": [ @@ -86000,7 +89697,7 @@ "name": "Storage.WestCentralUS", "id": "Storage.WestCentralUS", "properties": { - "changeNumber": 18, + "changeNumber": 19, "region": "westcentralus", "regionId": 36, "platform": "Azure", @@ -86041,6 +89738,7 @@ "52.239.244.0/23", "135.130.60.0/23", "135.130.116.0/23", + "145.190.137.0/24", "2603:1030:b06::/49" ], "networkFeatures": [ @@ -86055,7 +89753,7 @@ "name": "Storage.WestEurope", "id": "Storage.WestEurope", "properties": { - "changeNumber": 38, + "changeNumber": 40, "region": "westeurope", "regionId": 18, "platform": "Azure", @@ -86141,6 +89839,8 @@ "57.150.224.0/23", "104.214.243.32/28", "135.130.102.0/23", + "135.130.162.0/23", + "145.190.135.0/24", "168.61.57.64/26", "168.61.57.128/25", "168.61.58.0/26", @@ -86201,7 +89901,7 @@ "name": "Storage.WestUS", "id": "Storage.WestUS", "properties": { - "changeNumber": 25, + "changeNumber": 26, "region": "westus", "regionId": 37, "platform": "Azure", @@ -86292,6 +89992,7 @@ "104.42.200.16/28", "135.130.26.0/23", "135.130.66.0/23", + "135.130.176.0/23", "138.91.128.128/26", "138.91.129.0/26", "168.62.0.0/26", @@ -86315,7 +90016,7 @@ "name": "Storage.WestUS2", "id": "Storage.WestUS2", "properties": { - "changeNumber": 28, + "changeNumber": 30, "region": "westus2", "regionId": 38, "platform": "Azure", @@ -86347,6 +90048,7 @@ "20.153.61.0/24", "20.153.89.0/24", "20.153.99.0/24", + "20.153.127.0/24", "20.157.50.0/23", "20.157.180.0/24", "20.157.249.0/24", @@ -86371,6 +90073,7 @@ "135.130.48.0/23", "135.130.78.0/23", "135.130.120.0/23", + "135.130.166.0/23", "2603:1030:d01::/48" ], "networkFeatures": [ @@ -87215,6 +90918,25 @@ ] } }, + { + "name": "BatchNodeManagement.EastUS3", + "id": "BatchNodeManagement.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "BatchNodeManagement", + "addressPrefixes": [ + "134.138.68.0/27", + "2603:1030:1402::500/122" + ], + "networkFeatures": [ + "API", + "NSG" + ] + } + }, { "name": "BatchNodeManagement.EastUSSTG", "id": "BatchNodeManagement.EastUSSTG", @@ -88910,6 +92632,27 @@ ] } }, + { + "name": "DataFactory.EastUS3", + "id": "DataFactory.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "DataFactory", + "addressPrefixes": [ + "134.138.80.0/23", + "134.138.98.224/28", + "2603:1030:1402:2::500/121", + "2603:1030:1402:400::200/124" + ], + "networkFeatures": [ + "API", + "NSG" + ] + } + }, { "name": "DataFactory.EastUSSTG", "id": "DataFactory.EastUSSTG", @@ -89057,7 +92800,7 @@ "name": "DataFactory.IndonesiaCentral", "id": "DataFactory.IndonesiaCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "indonesiacentral", "regionId": 6, "platform": "Azure", @@ -89072,6 +92815,7 @@ "2603:1040:1802:2::98/125", "2603:1040:1802:2::100/121", "2603:1040:1802:2::4b0/124", + "2603:1040:1802:5::700/121", "2603:1040:1802:400::f0/124", "2603:1040:1802:800::70/124", "2603:1040:1802:c00::70/124" @@ -90103,7 +93847,7 @@ "name": "DataFactory.UAECentral", "id": "DataFactory.UAECentral", "properties": { - "changeNumber": 3, + "changeNumber": 4, "region": "uaecentral", "regionId": 61, "platform": "Azure", @@ -90115,6 +93859,7 @@ "40.120.8.56/29", "40.120.9.192/28", "74.243.20.176/28", + "74.243.172.128/27", "2603:1040:b04::440/122", "2603:1040:b04::500/121", "2603:1040:b04:402::330/124", @@ -91057,6 +94802,24 @@ ] } }, + { + "name": "GatewayManager.EastUS3", + "id": "GatewayManager.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "GatewayManager", + "addressPrefixes": [ + "134.138.64.64/26", + "2603:1030:1402::40/122" + ], + "networkFeatures": [ + "NSG" + ] + } + }, { "name": "GatewayManager.EastUSSTG", "id": "GatewayManager.EastUSSTG", @@ -92497,6 +96260,27 @@ ] } }, + { + "name": "HDInsight.EastUS3", + "id": "HDInsight.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "HDInsight", + "addressPrefixes": [ + "134.138.73.152/29", + "2603:1030:1402:1::490/124" + ], + "networkFeatures": [ + "API", + "NSG", + "UDR", + "FW" + ] + } + }, { "name": "HDInsight.EastUSSTG", "id": "HDInsight.EastUSSTG", @@ -94310,6 +98094,24 @@ "networkFeatures": null } }, + { + "name": "LogicApps.EastUS3", + "id": "LogicApps.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "LogicApps", + "addressPrefixes": [ + "134.138.84.192/28", + "134.138.84.224/27", + "2603:1030:1402:3::2e0/124", + "2603:1030:1402:3::300/123" + ], + "networkFeatures": null + } + }, { "name": "LogicApps.EastUSSTG", "id": "LogicApps.EastUSSTG", @@ -94532,16 +98334,18 @@ "name": "LogicApps.IndonesiaCentral", "id": "LogicApps.IndonesiaCentral", "properties": { - "changeNumber": 3, + "changeNumber": 4, "region": "indonesiacentral", "regionId": 6, "platform": "Azure", "systemService": "LogicApps", "addressPrefixes": [ + "48.193.52.192/27", "70.153.175.192/26", "70.153.180.64/28", "70.153.180.96/27", "2603:1040:1802:3::340/123", + "2603:1040:1802:5::7c0/123", "2603:1040:1802:400::360/123", "2603:1040:1802:400::380/123" ], @@ -96475,16 +100279,25 @@ "name": "MicrosoftCloudAppSecurity.AustraliaEast", "id": "MicrosoftCloudAppSecurity.AustraliaEast", "properties": { - "changeNumber": 3, + "changeNumber": 4, "region": "australiaeast", "regionId": 3, "platform": "Azure", "systemService": "MicrosoftCloudAppSecurity", "addressPrefixes": [ + "4.197.50.82/32", + "4.197.50.98/32", "13.70.74.160/27", + "20.5.98.114/32", + "20.213.24.76/32", + "20.213.31.166/32", "20.227.120.240/28", "20.227.121.128/25", "20.227.125.0/29", + "52.187.211.151/32", + "52.187.211.192/32", + "52.187.211.233/32", + "52.187.211.243/32", "68.218.141.6/31", "68.218.141.8/29", "68.218.141.16/28", @@ -96497,12 +100310,14 @@ "name": "MicrosoftCloudAppSecurity.AustraliaSoutheast", "id": "MicrosoftCloudAppSecurity.AustraliaSoutheast", "properties": { - "changeNumber": 3, + "changeNumber": 4, "region": "australiasoutheast", "regionId": 4, "platform": "Azure", "systemService": "MicrosoftCloudAppSecurity", "addressPrefixes": [ + "4.199.4.56/32", + "4.199.4.94/32", "13.77.53.96/27", "20.40.160.184/32", "20.40.161.119/32", @@ -96518,6 +100333,9 @@ "20.40.163.130/32", "20.40.163.133/32", "20.40.163.178/31", + "20.70.76.207/32", + "20.70.92.207/32", + "20.92.28.74/32", "40.81.56.80/32", "40.81.57.138/32", "40.81.57.141/32", @@ -96568,7 +100386,7 @@ "name": "MicrosoftCloudAppSecurity.BrazilSouth", "id": "MicrosoftCloudAppSecurity.BrazilSouth", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "brazilsouth", "regionId": 9, "platform": "Azure", @@ -96580,7 +100398,11 @@ "4.203.121.120/31", "4.203.148.128/25", "4.203.149.0/28", - "4.203.149.16/29" + "4.203.149.16/29", + "20.226.65.185/32", + "191.232.73.128/32", + "191.232.73.148/32", + "191.232.73.167/32" ], "networkFeatures": null } @@ -96589,7 +100411,7 @@ "name": "MicrosoftCloudAppSecurity.CanadaCentral", "id": "MicrosoftCloudAppSecurity.CanadaCentral", "properties": { - "changeNumber": 3, + "changeNumber": 4, "region": "canadacentral", "regionId": 11, "platform": "Azure", @@ -96603,12 +100425,24 @@ "4.174.239.128/25", "4.204.19.0/26", "4.204.19.64/30", + "4.205.225.60/32", + "4.205.228.57/32", + "4.205.228.61/32", + "4.205.229.25/32", "13.71.175.0/27", "13.88.224.38/32", "13.88.224.211/32", "13.88.224.222/32", "13.88.226.74/32", "13.88.227.7/32", + "20.48.252.223/32", + "20.48.253.250/32", + "20.104.80.97/32", + "20.104.84.184/32", + "20.116.67.152/32", + "20.175.155.221/32", + "20.175.157.44/32", + "20.175.157.255/32", "40.82.184.80/32", "40.82.185.36/32", "40.82.185.117/32", @@ -96680,7 +100514,7 @@ "name": "MicrosoftCloudAppSecurity.CentralIndia", "id": "MicrosoftCloudAppSecurity.CentralIndia", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "centralindia", "regionId": 21, "platform": "Azure", @@ -96692,7 +100526,21 @@ "4.213.28.96/29", "4.213.106.240/28", "4.213.107.0/25", - "4.213.107.128/29" + "4.213.107.128/29", + "4.224.61.207/32", + "4.247.146.233/32", + "4.247.147.47/32", + "4.247.147.52/32", + "4.247.147.60/32", + "20.204.251.239/32", + "20.219.160.169/32", + "20.219.210.31/32", + "20.219.210.182/32", + "20.219.213.154/32", + "98.70.107.227/32", + "98.70.110.179/32", + "98.70.110.221/32", + "98.70.110.236/32" ], "networkFeatures": null } @@ -96701,15 +100549,91 @@ "name": "MicrosoftCloudAppSecurity.CentralUS", "id": "MicrosoftCloudAppSecurity.CentralUS", "properties": { - "changeNumber": 4, + "changeNumber": 5, "region": "centralus", "regionId": 31, "platform": "Azure", "systemService": "MicrosoftCloudAppSecurity", "addressPrefixes": [ + "13.67.131.12/32", + "13.67.131.233/32", + "13.67.132.9/32", + "13.67.132.162/32", + "13.67.133.80/32", + "13.67.133.167/32", + "13.67.134.82/32", + "13.67.134.233/32", + "13.67.137.155/32", + "13.67.142.200/32", + "13.67.177.139/32", + "13.67.178.24/32", + "13.67.178.45/32", + "13.67.178.119/32", + "13.67.178.125/32", + "13.67.178.140/32", + "13.67.178.146/32", + "13.67.178.172/32", + "13.67.178.175/32", + "13.67.178.191/32", + "13.67.178.216/32", + "13.67.178.218/32", + "13.67.178.247/32", + "13.67.213.93/32", + "13.67.213.103/32", "13.89.178.0/28", + "13.89.206.157/32", + "13.89.206.180/31", + "13.89.206.201/32", + "13.89.206.244/31", + "13.89.206.248/31", + "13.89.206.252/32", + "13.89.207.57/32", "20.44.8.208/28", + "20.221.114.243/32", + "20.221.115.81/32", + "20.221.115.101/32", + "23.99.136.70/32", + "23.99.140.238/32", + "40.83.10.91/32", + "40.83.10.185/32", + "40.83.14.26/32", + "40.83.14.64/32", + "40.83.14.124/32", + "40.83.14.204/32", + "40.86.64.83/32", + "40.86.64.87/32", + "40.86.64.88/32", + "40.86.71.78/32", + "40.86.71.103/32", + "40.86.71.120/32", + "40.86.71.127/32", "52.182.139.208/28", + "168.61.147.110/32", + "172.168.217.10/31", + "172.168.217.71/32", + "172.168.217.92/32", + "172.168.217.186/32", + "172.168.218.86/31", + "172.168.218.93/32", + "172.168.218.102/32", + "172.168.218.200/32", + "172.168.218.237/32", + "172.168.218.247/32", + "172.168.219.86/32", + "172.168.219.91/32", + "172.168.219.120/32", + "172.168.219.148/32", + "172.168.219.159/32", + "172.168.219.255/32", + "172.168.220.17/32", + "172.168.220.35/32", + "172.168.220.38/32", + "172.168.220.40/32", + "172.168.220.43/32", + "172.168.220.44/32", + "172.168.220.53/32", + "172.168.220.54/32", + "172.168.220.85/32", "172.202.90.196/32", "172.212.135.136/29", "172.212.135.144/30", @@ -96741,7 +100665,7 @@ "name": "MicrosoftCloudAppSecurity.EastAsia", "id": "MicrosoftCloudAppSecurity.EastAsia", "properties": { - "changeNumber": 3, + "changeNumber": 4, "region": "eastasia", "regionId": 1, "platform": "Azure", @@ -96754,7 +100678,11 @@ "4.252.149.40/29", "4.252.149.64/28", "4.252.149.128/25", - "13.75.39.128/27" + "13.75.39.128/27", + "20.24.111.211/32", + "20.187.120.211/32", + "20.255.128.79/32", + "20.255.128.143/32" ], "networkFeatures": null } @@ -96763,21 +100691,124 @@ "name": "MicrosoftCloudAppSecurity.EastUS", "id": "MicrosoftCloudAppSecurity.EastUS", "properties": { - "changeNumber": 4, + "changeNumber": 5, "region": "eastus", "regionId": 32, "platform": "Azure", "systemService": "MicrosoftCloudAppSecurity", "addressPrefixes": [ + "4.246.147.156/32", + "4.246.150.66/32", + "4.246.151.143/32", + "4.246.164.1/32", + "4.246.164.16/32", + "4.246.178.203/32", + "13.68.142.7/32", + "13.68.142.30/32", + "13.68.142.34/32", + "13.68.142.49/32", + "13.68.142.68/32", + "13.68.142.71/32", + "13.68.142.76/32", + "13.68.142.87/32", + "13.68.142.123/32", + "13.68.142.214/32", + "13.68.210.15/32", + "13.82.128.29/32", + "13.82.128.58/31", + "13.82.130.119/32", + "13.82.130.239/32", + "13.82.130.247/32", + "13.82.131.4/32", + "13.82.131.129/32", + "13.82.131.188/32", + "13.82.135.51/32", + "13.82.135.167/32", + "13.82.135.187/32", + "13.82.135.198/32", + "13.90.61.62/32", + "13.90.78.178/32", + "13.90.90.138/32", + "13.90.90.213/32", + "13.90.92.202/32", + "13.90.202.4/32", "20.42.29.162/32", "20.42.31.48/32", "20.42.31.251/32", + "20.81.62.249/32", + "20.81.63.102/32", + "20.81.63.110/32", + "20.85.132.139/32", + "20.120.28.100/32", + "20.121.182.157/32", + "20.124.125.37/32", + "20.169.209.255/32", + "20.169.246.183/32", + "20.185.148.189/32", + "20.185.148.249/32", + "20.185.149.7/32", + "20.185.149.37/32", + "20.185.149.122/32", + "20.185.149.159/32", + "20.185.149.185/32", + "20.185.149.202/32", + "20.185.149.206/32", + "20.185.149.208/32", + "20.185.181.28/32", "20.228.186.154/32", + "20.231.83.98/32", + "20.231.84.58/32", + "20.231.84.71/32", + "20.231.84.75/32", + "20.231.84.87/32", + "20.231.221.127/32", + "20.231.223.70/32", + "20.231.223.77/32", + "20.231.223.78/32", + "20.232.27.65/32", + "20.232.137.89/32", + "20.241.209.31/32", + "20.242.130.137/32", + "20.242.133.240/31", "40.71.14.16/28", + "40.71.43.67/32", + "40.71.114.4/32", + "40.71.114.81/32", + "40.71.120.58/32", + "40.71.120.126/32", + "40.71.121.55/32", + "40.71.122.28/32", + "40.71.123.128/32", + "40.71.125.234/32", + "40.71.160.53/32", + "40.71.160.87/32", + "40.71.161.1/32", + "40.71.161.45/32", + "40.71.165.147/32", + "40.71.165.156/32", + "40.71.166.47/32", + "40.71.167.104/32", + "40.71.167.123/32", + "40.71.207.129/32", "40.76.78.217/32", "40.78.229.64/28", "40.79.156.112/28", + "40.114.110.221/32", "40.114.112.147/32", + "40.114.115.90/32", + "40.117.48.151/32", + "40.117.121.2/32", + "40.117.121.77/32", + "40.117.121.99/32", + "40.117.121.116/32", + "40.117.121.214/32", + "40.117.122.3/32", + "40.117.122.31/32", + "40.117.122.70/32", + "40.117.122.91/32", + "40.117.210.129/32", + "40.117.210.135/32", + "40.117.210.149/32", "40.121.134.1/32", "48.211.15.16/28", "48.211.15.64/27", @@ -96786,11 +100817,16 @@ "52.151.238.5/32", "52.151.244.65/32", "52.151.247.27/32", + "52.168.65.64/32", + "52.170.103.154/32", + "52.179.19.214/32", "52.188.217.236/32", "52.190.26.220/32", "52.190.31.62/32", + "52.191.78.45/32", "52.191.237.188/32", "52.191.238.65/32", + "52.224.124.102/32", "52.224.188.157/32", "52.224.188.168/32", "52.224.190.225/32", @@ -96799,10 +100835,19 @@ "52.224.201.223/32", "52.224.202.86/32", "52.224.202.91/32", + "52.224.233.31/32", + "52.224.237.191/32", + "52.224.237.208/32", + "52.224.237.247/32", "57.152.117.114/31", "57.152.117.120/29", "57.152.117.128/25", "57.152.118.0/27", + "104.41.130.175/32", + "104.41.130.203/32", + "104.41.130.229/32", + "104.41.130.235/32", + "104.41.131.81/32", "104.45.168.103/32", "104.45.168.104/32", "104.45.168.106/32", @@ -96824,7 +100869,31 @@ "104.45.170.191/32", "104.45.170.194/32", "104.45.170.196/32", - "104.211.9.226/32" + "104.211.9.226/32", + "172.171.220.218/32", + "172.178.34.48/32", + "172.178.34.50/32", + "172.178.34.63/32", + "172.178.34.68/32", + "172.178.34.70/32", + "172.178.34.73/32", + "172.178.34.86/32", + "172.178.34.105/32", + "172.178.34.217/32", + "172.178.34.218/32", + "172.178.35.3/32", + "172.178.35.5/32", + "172.178.35.13/32", + "172.178.35.17/32", + "172.178.35.23/32", + "172.178.35.37/32", + "172.178.36.171/32", + "172.178.36.172/32", + "172.190.201.131/32", + "172.190.201.141/32", + "172.190.202.29/32", + "172.191.178.94/32", + "172.191.180.161/32" ], "networkFeatures": null } @@ -96833,14 +100902,33 @@ "name": "MicrosoftCloudAppSecurity.EastUS2", "id": "MicrosoftCloudAppSecurity.EastUS2", "properties": { - "changeNumber": 4, + "changeNumber": 5, "region": "eastus2", "regionId": 33, "platform": "Azure", "systemService": "MicrosoftCloudAppSecurity", "addressPrefixes": [ + "4.153.214.151/32", + "4.153.214.156/31", + "4.153.214.162/31", + "4.153.214.170/31", + "4.153.214.174/31", + "4.153.214.186/31", + "4.153.214.188/31", + "4.153.214.228/31", + "4.153.214.234/31", + "4.153.214.240/31", + "4.153.215.66/31", + "4.153.215.68/31", + "4.153.215.76/31", + "4.153.215.88/31", + "13.68.76.47/32", "13.77.80.28/32", + "20.7.201.146/32", + "20.10.130.214/32", "20.15.114.156/32", + "20.22.197.89/32", + "20.36.179.218/32", "20.36.220.93/32", "20.36.222.59/32", "20.36.222.60/32", @@ -96855,6 +100943,13 @@ "20.44.72.173/32", "20.44.72.217/32", "20.44.73.253/32", + "20.75.35.99/32", + "20.75.36.108/32", + "20.75.36.138/32", + "20.114.237.80/32", + "20.161.14.15/32", + "20.242.80.35/32", + "20.242.83.183/32", "23.100.67.153/32", "40.65.233.253/32", "40.65.235.54/32", @@ -96866,6 +100961,33 @@ "40.70.0.255/32", "40.70.29.49/32", "40.70.29.200/32", + "40.70.42.29/32", + "40.70.42.116/32", + "40.70.42.119/32", + "40.70.43.72/32", + "40.70.43.128/32", + "40.70.43.238/32", + "40.70.45.68/32", + "40.70.45.98/32", + "40.70.45.103/32", + "40.70.45.160/32", + "40.70.45.162/32", + "40.70.45.164/32", + "40.70.45.170/32", + "40.70.45.173/32", + "40.70.45.175/32", + "40.70.45.179/32", + "40.70.45.181/32", + "40.70.45.184/32", + "40.70.45.194/32", + "40.70.45.203/32", + "40.70.45.211/32", + "40.70.45.212/32", + "40.70.45.214/32", + "40.70.45.216/32", + "40.70.45.218/32", + "40.70.45.222/32", + "40.70.45.247/32", "40.70.148.112/28", "40.70.184.90/32", "40.84.2.83/32", @@ -96888,6 +101010,9 @@ "52.232.225.84/32", "52.232.228.217/32", "52.232.245.96/32", + "52.242.92.172/30", + "52.242.92.200/30", + "52.242.92.204/32", "104.46.116.211/32", "104.46.121.72/32", "104.46.122.189/32", @@ -96898,7 +101023,15 @@ "104.209.168.251/32", "104.210.0.32/32", "135.237.169.0/25", - "137.116.52.31/32" + "137.116.52.31/32", + "172.177.185.228/32", + "172.203.46.30/31", + "172.203.46.56/31", + "172.203.46.60/31", + "172.203.46.66/31", + "172.203.46.74/31", + "172.203.46.78/31", + "172.203.46.82/32" ], "networkFeatures": null } @@ -96923,7 +101056,7 @@ "name": "MicrosoftCloudAppSecurity.FranceCentral", "id": "MicrosoftCloudAppSecurity.FranceCentral", "properties": { - "changeNumber": 3, + "changeNumber": 4, "region": "centralfrance", "regionId": 19, "platform": "Azure", @@ -96932,9 +101065,22 @@ "4.178.134.40/29", "4.178.134.64/26", "4.178.134.128/25", + "4.211.203.169/32", + "4.211.203.229/32", + "4.211.205.90/32", + "20.19.97.64/32", + "20.19.98.239/32", + "20.19.99.17/32", "20.40.132.195/32", "20.40.134.79/32", "20.40.134.94/32", + "20.74.26.252/32", + "20.74.73.84/32", + "20.74.73.102/32", + "20.74.73.111/32", + "20.74.73.116/32", + "20.74.73.118/32", + "20.111.23.234/32", "40.66.56.158/32", "40.66.57.164/32", "40.66.57.203/32", @@ -96978,6 +101124,12 @@ "40.89.137.101/32", "40.89.142.184/32", "40.89.143.43/32", + "51.103.95.227/32", + "51.103.116.87/32", + "51.103.116.97/32", + "51.103.116.121/32", + "51.103.117.35/32", + "52.143.149.102/32", "98.66.147.184/31", "98.66.147.192/27", "98.66.147.224/28" @@ -97005,11 +101157,56 @@ "networkFeatures": null } }, + { + "name": "MicrosoftCloudAppSecurity.GermanyWestCentral", + "id": "MicrosoftCloudAppSecurity.GermanyWestCentral", + "properties": { + "changeNumber": 1, + "region": "germanywc", + "regionId": 71, + "platform": "Azure", + "systemService": "MicrosoftCloudAppSecurity", + "addressPrefixes": [ + "20.52.42.71/32", + "20.52.42.88/32", + "20.52.42.103/32", + "20.52.48.3/32", + "20.170.36.122/32", + "20.170.36.209/32", + "20.218.181.177/32", + "20.218.182.135/32" + ], + "networkFeatures": null + } + }, + { + "name": "MicrosoftCloudAppSecurity.JapanEast", + "id": "MicrosoftCloudAppSecurity.JapanEast", + "properties": { + "changeNumber": 1, + "region": "japaneast", + "regionId": 24, + "platform": "Azure", + "systemService": "MicrosoftCloudAppSecurity", + "addressPrefixes": [ + "23.100.96.86/32", + "23.100.96.219/32", + "23.100.97.128/32", + "23.100.103.168/32", + "48.218.204.67/32", + "48.218.204.249/32", + "48.218.205.71/32", + "48.218.205.90/32", + "104.46.210.120/32" + ], + "networkFeatures": null + } + }, { "name": "MicrosoftCloudAppSecurity.NorthEurope", "id": "MicrosoftCloudAppSecurity.NorthEurope", "properties": { - "changeNumber": 4, + "changeNumber": 5, "region": "northeurope", "regionId": 17, "platform": "Azure", @@ -97019,10 +101216,85 @@ "4.207.252.0/27", "4.207.252.32/28", "4.207.252.48/30", + "4.208.80.40/32", + "4.208.80.132/32", + "4.208.81.209/32", + "4.208.81.254/32", + "4.208.83.48/32", + "4.208.83.252/32", + "4.208.84.125/32", + "4.208.84.135/32", + "4.208.84.137/32", + "4.208.84.173/32", + "4.208.84.174/32", + "4.208.84.202/32", + "4.208.84.218/32", + "4.208.85.9/32", + "4.208.85.13/32", + "4.208.85.35/32", + "4.208.85.38/32", + "4.208.85.40/32", + "4.208.85.43/32", + "4.208.85.53/32", + "4.208.85.61/32", + "4.208.85.83/32", + "4.208.85.97/32", + "4.208.85.104/32", + "4.208.85.113/32", + "4.208.85.118/32", + "4.231.211.174/32", + "4.231.211.178/32", + "4.231.231.106/32", + "4.245.184.192/32", + "4.245.189.46/32", "13.69.190.115/32", "13.69.230.48/28", + "13.69.255.22/32", + "13.70.193.21/32", + "13.70.193.23/32", + "13.70.193.54/32", + "13.70.193.120/32", + "13.70.193.125/32", + "13.74.66.73/32", "13.74.108.176/28", + "13.74.120.169/32", + "13.74.120.187/32", + "13.74.120.207/32", + "13.74.121.38/32", + "13.74.121.55/32", + "13.74.122.62/32", + "13.74.122.94/32", + "13.74.122.124/32", + "13.74.124.198/32", + "13.74.125.250/32", + "13.74.127.169/32", "13.74.168.152/32", + "13.79.130.20/32", + "13.94.104.20/32", + "13.94.104.195/32", + "13.94.105.134/31", + "13.94.105.181/32", + "13.94.108.37/32", + "13.94.119.137/32", + "20.67.174.121/32", + "20.67.174.122/32", + "20.67.174.230/32", + "20.105.50.43/32", + "20.107.200.159/32", + "20.107.201.215/32", + "20.166.122.152/32", + "20.166.122.229/32", + "20.166.230.171/32", + "20.166.230.184/32", + "20.166.230.192/32", + "20.166.244.38/32", + "20.223.173.77/32", + "20.223.173.134/32", + "20.223.173.172/32", + "20.223.238.244/32", + "20.234.102.149/32", + "20.234.102.216/32", + "20.238.91.220/32", "40.67.251.0/32", "40.67.254.233/32", "48.209.133.128/25", @@ -97072,8 +101344,53 @@ "52.156.206.43/32", "52.156.206.45/32", "52.156.206.46/31", + "52.156.217.132/32", + "52.156.217.136/32", + "52.156.217.138/32", + "52.156.217.142/32", + "52.156.217.144/32", + "52.156.217.147/32", + "52.156.217.155/32", + "52.156.217.156/32", + "52.156.217.158/32", + "52.156.217.161/32", + "52.156.217.163/32", + "52.156.217.164/32", + "52.156.217.169/32", + "52.156.217.172/32", + "52.156.217.199/32", + "52.156.217.213/32", + "52.156.217.217/32", + "52.156.217.219/32", + "52.156.217.223/32", + "52.156.217.224/32", + "52.156.217.227/32", + "52.156.217.233/32", + "52.156.217.234/32", + "52.156.217.239/32", + "52.156.217.240/32", + "52.156.217.248/32", "52.158.28.235/32", + "52.164.210.39/32", + "52.164.251.14/32", + "52.169.72.211/32", + "52.169.72.234/32", + "52.169.72.237/32", + "52.169.72.241/32", + "52.169.72.245/32", + "52.169.72.246/32", + "52.169.74.1/32", + "52.169.74.13/32", + "52.169.74.19/32", + "52.169.74.34/32", + "52.169.74.43/32", + "52.169.74.46/32", + "52.169.74.52/32", + "52.169.74.63/32", + "52.169.74.76/32", + "52.169.74.78/32", "52.169.192.237/32", + "52.178.140.160/32", "65.52.229.200/32", "137.116.224.49/32", "168.63.38.153/32" @@ -97119,16 +101436,22 @@ "name": "MicrosoftCloudAppSecurity.SoutheastAsia", "id": "MicrosoftCloudAppSecurity.SoutheastAsia", "properties": { - "changeNumber": 4, + "changeNumber": 5, "region": "southeastasia", "regionId": 2, "platform": "Azure", "systemService": "MicrosoftCloudAppSecurity", "addressPrefixes": [ + "4.194.97.213/32", + "4.194.97.243/32", + "4.194.98.36/32", + "4.194.98.51/32", "13.67.10.192/28", "13.67.48.221/32", "13.76.43.73/32", "13.76.129.255/32", + "20.24.11.193/32", + "20.184.14.171/32", "20.184.57.4/32", "20.184.57.218/32", "20.184.58.46/32", @@ -97176,10 +101499,14 @@ "52.139.245.48/32", "52.139.251.219/32", "52.139.252.105/32", + "52.148.80.190/32", "52.148.115.188/32", "52.148.115.194/32", "52.148.115.238/32", "52.148.116.37/32", + "52.230.23.237/32", + "52.230.66.140/32", + "52.230.68.241/32", "57.155.34.165/32", "57.155.34.166/31", "57.155.34.192/27", @@ -97194,13 +101521,73 @@ "name": "MicrosoftCloudAppSecurity.UKSouth", "id": "MicrosoftCloudAppSecurity.UKSouth", "properties": { - "changeNumber": 6, + "changeNumber": 7, "region": "uksouth", "regionId": 27, "platform": "Azure", "systemService": "MicrosoftCloudAppSecurity", "addressPrefixes": [ + "4.234.118.145/32", + "4.234.119.52/32", + "4.234.119.55/32", + "4.234.119.56/32", + "4.234.119.68/32", + "4.234.119.72/32", + "4.234.119.75/32", + "4.234.119.89/32", + "4.234.119.90/32", + "4.234.119.93/32", + "4.234.119.94/32", + "4.234.119.96/32", + "4.234.119.108/32", + "4.234.119.121/32", + "4.234.119.123/32", + "4.234.119.124/32", + "4.234.119.126/32", + "4.234.146.138/31", + "4.234.146.142/32", + "4.234.207.171/32", + "4.234.207.176/32", + "4.234.207.186/32", + "4.234.207.189/32", + "4.234.207.193/32", + "4.234.207.195/32", + "4.234.207.199/32", + "4.234.207.201/32", + "4.234.207.203/32", + "4.234.207.209/32", + "4.234.207.219/32", + "4.234.207.224/32", + "4.234.207.226/32", + "4.250.138.232/32", + "4.250.138.235/32", + "4.250.138.249/32", + "4.250.139.28/32", + "4.250.139.146/32", + "4.250.139.205/32", + "4.250.139.207/32", + "4.250.139.216/32", + "4.250.139.248/32", + "4.250.140.0/32", + "4.250.140.17/32", + "4.250.140.73/32", + "4.250.140.125/32", + "4.250.140.167/32", + "4.250.140.169/32", + "4.250.140.178/32", + "4.250.140.231/32", + "4.250.140.235/32", + "4.250.140.252/32", + "4.250.140.254/32", + "4.250.141.57/32", + "4.250.141.61/32", + "4.250.141.72/32", + "4.250.141.90/32", + "4.250.141.94/32", + "4.250.141.110/32", "20.0.210.84/32", + "20.49.154.244/32", + "20.108.151.45/32", "40.81.152.126/32", "40.81.152.171/32", "40.81.152.172/32", @@ -97213,8 +101600,11 @@ "51.11.26.95/32", "51.104.9.16/28", "51.105.37.244/32", + "51.105.55.62/32", "51.105.67.224/28", "51.105.75.176/28", + "51.132.213.122/32", + "51.132.215.124/32", "51.140.1.10/32", "51.140.8.108/32", "51.140.8.180/32", @@ -97225,14 +101615,75 @@ "51.140.125.227/32", "51.140.164.179/32", "51.140.191.146/32", + "51.142.123.241/32", "51.145.108.227/32", "51.145.108.250/32", + "51.145.113.171/32", "85.210.105.64/28", "85.210.105.80/29", "85.210.105.128/25", "85.210.196.208/28", "85.210.196.224/27", "85.210.225.0/24", + "172.165.146.40/32", + "172.166.112.11/32", + "172.166.112.48/32", + "172.166.112.116/32", + "172.166.112.191/32", + "172.166.112.221/32", + "172.166.112.228/32", + "172.166.112.239/32", + "172.166.112.241/32", + "172.166.112.244/32", + "172.166.171.159/32", + "172.166.232.187/32", + "172.166.250.140/31", + "172.166.255.134/32", + "172.166.255.143/32", + "172.166.255.172/32", + "172.166.255.185/32", + "172.166.255.194/32", + "172.166.255.196/32", + "172.166.255.239/32", + "172.166.255.255/32", + "172.167.6.202/32", + "172.167.19.179/32", + "172.167.25.100/32", + "172.167.67.46/32", + "172.167.67.221/32", + "172.167.68.4/32", + "172.167.68.108/32", + "172.167.68.139/32", + "172.167.68.185/32", + "172.167.69.240/32", + "172.167.70.27/32", + "172.167.72.11/32", + "172.167.72.29/32", + "172.167.72.37/32", + "172.167.72.54/32", + "172.167.122.219/32", + "172.167.130.140/32", + "172.167.130.237/32", + "172.167.132.179/32", + "172.167.134.22/32", + "172.167.134.206/32", + "172.167.134.213/32", + "172.167.135.219/32", + "172.167.150.117/32", + "172.167.150.126/32", + "172.167.150.162/32", + "172.167.150.247/32", + "172.167.151.10/32", + "172.167.151.13/32", + "172.167.151.32/32", + "172.167.151.51/32", + "172.167.151.55/32", + "172.167.151.60/32", + "172.167.166.75/32", + "172.167.178.182/32", + "172.167.201.89/32", + "172.167.230.177/32", + "172.167.230.190/32", "172.187.102.112/32", "172.187.102.114/31" ], @@ -97243,7 +101694,7 @@ "name": "MicrosoftCloudAppSecurity.UKWest", "id": "MicrosoftCloudAppSecurity.UKWest", "properties": { - "changeNumber": 6, + "changeNumber": 7, "region": "ukwest", "regionId": 28, "platform": "Azure", @@ -97252,6 +101703,41 @@ "20.40.106.50/31", "20.40.107.84/32", "20.90.9.64/32", + "20.162.89.46/32", + "20.162.91.242/32", + "20.162.91.246/32", + "20.162.91.248/32", + "20.162.91.251/32", + "20.162.92.10/32", + "20.162.92.34/32", + "20.162.92.38/32", + "20.162.92.49/32", + "20.162.92.51/32", + "20.162.92.69/32", + "20.162.92.70/32", + "20.162.92.79/32", + "20.162.92.85/32", + "20.162.92.105/32", + "20.162.92.113/32", + "20.162.92.116/32", + "20.162.92.141/32", + "20.162.92.167/32", + "20.162.92.186/32", + "20.162.92.204/32", + "20.162.92.239/32", + "20.162.92.240/32", + "20.162.92.253/32", + "20.162.92.255/32", + "20.162.93.13/32", + "20.254.135.150/32", + "20.254.148.98/31", + "20.254.148.126/32", + "20.254.151.234/32", + "20.254.167.71/32", + "20.254.250.3/32", + "20.254.250.8/30", + "20.254.250.24/30", + "20.254.250.36/32", "40.81.120.13/32", "40.81.120.24/31", "40.81.120.97/32", @@ -97282,6 +101768,7 @@ "40.81.127.229/32", "40.81.127.230/32", "40.81.127.239/32", + "51.104.56.5/32", "51.137.136.13/32", "51.137.136.14/32", "51.137.136.34/32", @@ -97290,11 +101777,66 @@ "51.137.137.121/32", "51.137.137.200/32", "51.137.137.237/32", + "51.137.152.86/31", + "51.137.153.145/32", + "51.137.153.146/31", + "51.137.155.182/32", + "51.137.157.48/30", "51.140.212.128/27", + "51.140.224.48/32", + "51.140.224.53/32", + "51.140.224.60/32", + "51.140.224.104/32", + "51.140.228.167/32", + "51.140.229.17/32", + "51.140.229.251/32", "51.140.230.246/32", + "51.140.231.1/32", + "51.140.231.96/32", + "51.140.231.99/32", "51.140.231.138/32", + "51.140.231.150/32", + "51.140.231.243/32", + "51.141.2.156/32", + "51.141.2.162/32", "51.141.2.189/32", + "51.141.3.241/32", + "51.141.4.9/32", "51.141.7.11/32", + "51.141.7.40/32", + "51.141.7.97/32", + "51.141.72.120/31", + "51.141.72.136/31", + "51.141.72.158/31", + "51.141.73.140/31", + "51.141.73.242/32", + "51.141.74.162/31", + "51.141.74.194/31", + "51.141.75.38/31", + "51.141.75.142/32", + "51.141.75.232/31", + "51.141.77.119/32", + "51.141.77.148/31", + "51.141.77.162/31", + "51.141.77.168/31", + "51.141.77.188/31", + "51.142.149.23/32", + "51.142.149.47/32", + "51.142.149.255/32", + "51.142.151.46/32", + "51.142.151.67/32", + "51.142.151.70/32", + "51.142.160.25/32", + "51.142.160.76/32", + "51.142.161.25/32", + "51.142.161.233/32", + "51.142.162.217/32", + "51.142.162.241/32", + "51.142.163.76/32", + "51.142.163.104/32", + "51.142.163.117/32", + "51.142.163.158/32", + "51.142.164.55/32", "172.186.6.144/31", "172.186.6.160/27", "172.186.6.192/29", @@ -97310,14 +101852,70 @@ "name": "MicrosoftCloudAppSecurity.WestCentralUS", "id": "MicrosoftCloudAppSecurity.WestCentralUS", "properties": { - "changeNumber": 4, + "changeNumber": 5, "region": "westcentralus", "regionId": 36, "platform": "Azure", "systemService": "MicrosoftCloudAppSecurity", "addressPrefixes": [ + "4.255.138.74/32", + "4.255.144.104/32", + "4.255.146.128/32", + "4.255.147.5/32", + "4.255.160.17/32", + "4.255.161.37/32", + "4.255.162.19/32", + "4.255.169.151/32", + "4.255.169.215/32", + "4.255.192.31/32", + "4.255.192.94/32", + "4.255.193.22/32", + "4.255.216.225/32", "4.255.218.227/32", + "4.255.219.16/32", + "4.255.225.20/32", + "4.255.225.35/32", "13.71.196.192/27", + "13.78.164.187/32", + "13.78.176.17/32", + "13.78.177.204/32", + "13.78.177.243/32", + "13.78.177.245/32", + "13.78.177.248/32", + "13.78.177.250/32", + "13.78.178.196/32", + "13.78.183.147/32", + "13.78.183.154/32", + "13.78.183.161/32", + "13.78.183.162/32", + "13.78.183.194/32", + "13.78.183.203/32", + "13.78.183.215/32", + "13.78.183.219/32", + "13.78.183.221/32", + "13.78.183.223/32", + "13.78.190.216/32", + "20.165.199.244/32", + "20.165.199.247/32", + "20.165.216.32/32", + "20.165.217.37/32", + "20.165.224.30/32", + "20.165.224.128/32", + "20.165.224.181/32", + "20.165.225.66/32", + "20.165.232.199/32", + "20.165.234.25/32", + "52.161.13.132/32", + "52.161.13.138/32", + "52.161.13.153/32", + "52.161.15.92/32", + "52.161.15.223/32", + "52.161.128.12/32", + "52.161.145.118/32", + "52.161.151.13/32", + "52.161.176.67/32", + "57.151.144.75/32", + "57.151.144.95/32", "172.208.163.48/28", "172.208.163.128/25", "172.208.164.0/30", @@ -97333,26 +101931,86 @@ "name": "MicrosoftCloudAppSecurity.WestEurope", "id": "MicrosoftCloudAppSecurity.WestEurope", "properties": { - "changeNumber": 4, + "changeNumber": 5, "region": "westeurope", "regionId": 18, "platform": "Azure", "systemService": "MicrosoftCloudAppSecurity", "addressPrefixes": [ + "4.180.55.239/32", + "4.180.89.202/32", + "4.180.92.135/32", + "4.210.151.239/32", "13.69.67.96/28", + "13.69.81.118/32", "13.69.107.96/28", "13.80.7.94/32", "13.80.22.71/32", "13.80.125.22/32", + "13.81.70.12/32", "13.81.123.49/32", + "13.81.123.253/32", "13.81.204.189/32", + "13.81.209.46/32", + "13.81.209.51/32", + "13.81.209.72/32", + "13.81.209.74/32", + "13.81.209.90/32", + "13.81.209.120/32", "13.81.212.71/32", + "13.81.212.241/32", + "13.81.213.20/32", + "13.81.214.24/32", "13.93.32.114/32", "13.93.113.192/32", + "13.94.252.39/32", "13.95.1.33/32", "13.95.29.177/32", "13.95.30.46/32", + "20.4.235.160/32", + "20.4.235.220/32", + "20.4.236.147/32", + "20.16.146.100/32", + "20.16.148.115/32", + "20.16.148.134/32", + "20.16.148.186/32", + "20.16.148.239/32", + "20.16.149.20/32", + "20.16.156.66/32", + "20.16.156.73/32", + "20.16.224.113/32", + "20.23.198.34/32", + "20.31.11.50/32", + "20.31.11.61/32", + "20.31.253.108/32", + "20.31.253.111/32", + "20.31.253.241/32", + "20.61.115.29/32", "20.71.203.39/32", + "20.126.7.61/32", + "20.160.200.26/32", + "20.160.201.249/32", + "20.160.202.5/32", + "20.160.202.9/32", + "20.160.207.88/32", + "20.160.207.234/32", + "20.160.207.247/32", + "20.229.66.33/32", + "20.229.66.58/32", + "20.229.66.60/32", + "20.229.90.40/32", + "20.229.90.50/32", + "20.229.90.63/32", + "20.229.90.66/32", + "20.229.90.71/32", + "20.229.100.222/32", + "20.234.199.217/32", + "20.234.199.218/32", + "20.234.199.228/32", + "20.234.199.249/32", + "23.97.155.253/32", + "23.97.206.58/32", + "23.97.231.71/32", "40.67.216.253/32", "40.67.219.133/32", "40.68.245.184/32", @@ -97360,11 +102018,15 @@ "40.74.6.204/32", "40.91.198.19/32", "40.113.121.176/32", + "40.114.147.82/32", "40.114.217.8/32", + "40.114.242.47/32", "40.115.24.65/32", "40.115.25.50/32", "40.118.63.137/32", "40.118.97.232/32", + "40.119.136.146/32", + "40.119.136.195/32", "40.119.145.130/32", "40.119.147.102/32", "40.119.154.72/32", @@ -97384,12 +102046,38 @@ "51.105.166.102/31", "51.105.166.106/32", "51.105.179.157/32", + "51.124.217.86/31", + "51.124.219.184/31", + "51.124.219.192/31", + "51.124.219.206/31", + "51.124.220.18/31", + "51.124.232.122/32", + "51.124.232.126/32", + "51.137.34.189/32", + "51.137.34.190/32", + "51.137.34.197/32", + "51.137.34.198/32", + "51.137.34.202/32", + "51.137.34.205/32", + "51.137.34.211/32", + "51.137.34.218/32", + "51.137.34.225/32", + "51.137.34.239/32", + "51.137.34.243/32", + "51.137.35.1/32", + "51.137.35.6/32", + "51.137.35.31/32", + "51.137.35.42/32", + "51.137.35.44/32", + "51.137.35.48/32", + "51.137.200.32/32", "51.144.56.60/32", "51.145.181.195/32", "51.145.181.214/32", "52.137.56.200/32", "52.142.220.179/32", "52.142.232.120/32", + "52.148.198.189/32", "52.157.218.219/32", "52.157.218.232/32", "52.157.232.110/32", @@ -97409,19 +102097,69 @@ "52.157.238.58/32", "52.157.239.110/32", "52.157.239.132/32", + "52.166.161.57/32", + "52.166.201.48/32", + "52.166.201.203/32", "52.174.56.180/32", "52.178.44.248/32", "52.178.89.44/32", + "52.232.100.107/32", "52.236.187.80/28", "57.153.217.0/25", "57.153.217.128/27", "57.153.217.160/28", "57.153.217.176/29", "65.52.138.123/32", + "65.52.150.35/32", + "98.64.96.3/32", + "98.64.96.4/32", + "98.64.96.33/32", + "98.64.96.41/32", + "98.64.96.43/32", + "98.64.96.46/32", + "98.64.96.52/32", + "98.64.96.173/32", + "98.64.96.192/32", + "98.64.96.197/32", + "98.64.96.204/32", + "98.71.179.31/32", + "98.71.179.39/32", + "98.71.179.70/32", + "98.71.179.108/32", + "98.71.179.127/32", + "98.71.179.230/32", + "98.71.179.246/32", + "98.71.179.252/32", + "98.71.180.12/32", + "98.71.180.20/32", + "104.40.129.14/32", "104.40.129.120/32", "104.45.7.95/32", "104.45.65.169/32", "104.214.225.33/32", + "108.142.79.39/32", + "108.142.79.115/32", + "108.142.79.130/32", + "108.142.79.154/32", + "108.142.79.192/30", + "108.142.79.210/32", + "108.142.79.214/32", + "108.142.79.228/30", + "108.142.79.242/31", + "108.143.4.252/32", + "108.143.4.255/32", + "108.143.6.27/32", + "108.143.6.28/32", + "108.143.103.225/32", + "108.143.103.226/32", + "108.143.103.231/32", + "108.143.103.242/32", + "108.143.103.252/32", + "108.143.143.50/32", + "108.143.166.28/32", + "108.143.172.54/32", + "137.116.192.123/32", + "137.117.138.98/32", "172.211.127.250/31", "172.211.127.252/30" ], @@ -97432,12 +102170,17 @@ "name": "MicrosoftCloudAppSecurity.WestUS", "id": "MicrosoftCloudAppSecurity.WestUS", "properties": { - "changeNumber": 4, + "changeNumber": 5, "region": "westus", "regionId": 37, "platform": "Azure", "systemService": "MicrosoftCloudAppSecurity", "addressPrefixes": [ + "13.64.16.129/32", + "13.64.16.130/31", + "13.64.16.132/30", + "13.64.16.136/31", + "13.64.16.138/32", "13.64.26.88/32", "13.64.28.87/32", "13.64.29.32/32", @@ -97446,39 +102189,184 @@ "13.64.30.117/32", "13.64.30.118/32", "13.64.31.116/32", + "13.64.186.156/32", + "13.64.186.167/32", + "13.64.186.181/32", + "13.64.187.15/32", + "13.64.187.17/32", "13.64.196.27/32", "13.64.198.19/32", "13.64.198.97/32", "13.64.199.41/32", + "13.64.238.253/32", "13.64.252.115/32", + "13.83.13.102/32", + "13.83.55.150/32", + "13.83.86.230/32", + "13.86.154.103/32", + "13.86.155.23/32", + "13.86.156.71/32", + "13.86.156.125/32", + "13.86.156.215/32", + "13.86.157.8/32", + "13.86.157.143/32", + "13.86.157.196/32", + "13.86.157.226/32", + "13.86.157.235/32", + "13.86.157.236/32", "13.86.176.189/32", "13.86.176.211/32", "13.86.219.224/27", "13.86.235.202/32", "13.86.239.236/32", + "13.87.201.31/32", + "13.88.12.151/32", + "13.88.14.203/32", + "13.88.153.73/32", + "13.88.154.223/32", + "13.88.169.60/32", + "13.88.169.86/32", + "13.88.169.140/32", + "13.88.169.142/32", + "13.88.169.154/32", + "13.88.169.161/32", + "13.88.169.190/32", + "13.88.174.223/32", + "13.88.176.110/32", + "13.88.177.58/32", + "13.88.177.81/32", + "13.88.177.149/32", + "13.88.177.172/32", + "13.88.177.200/32", + "13.88.181.242/32", + "13.88.181.247/32", + "13.88.182.8/32", + "13.88.182.11/32", + "13.88.182.59/32", + "13.88.182.72/32", + "13.88.182.75/32", + "13.88.183.60/32", + "13.88.183.144/32", + "13.88.183.220/32", + "13.91.18.254/32", "13.91.61.249/32", + "13.91.63.30/32", "13.91.91.243/32", "13.91.98.185/32", + "13.91.162.201/32", + "13.93.180.150/32", + "13.93.183.128/32", "13.93.196.52/32", + "13.93.208.115/32", + "13.93.213.236/32", "13.93.216.68/32", "13.93.233.42/32", + "20.59.107.42/32", + "20.245.20.237/32", + "20.245.22.60/32", + "20.245.22.80/32", + "20.245.22.99/32", + "20.245.22.117/32", + "20.245.124.138/32", + "20.245.124.190/32", + "20.245.135.225/32", + "20.245.224.228/32", + "20.245.224.234/32", + "20.245.224.250/32", + "20.253.131.82/32", + "20.253.152.1/32", + "20.253.153.93/32", + "20.253.153.175/32", + "20.253.185.152/32", + "20.253.202.136/32", + "20.253.202.155/32", + "20.253.202.164/32", + "20.253.203.68/32", + "20.253.203.71/32", + "20.253.203.104/32", + "20.253.203.148/32", + "20.253.203.162/32", + "20.253.203.167/32", + "20.253.203.178/32", + "20.253.203.218/32", + "20.253.203.229/32", + "20.253.203.234/32", + "20.253.204.18/32", + "20.253.204.42/32", + "20.253.204.52/32", + "20.253.204.69/32", + "20.253.228.46/32", + "20.253.229.11/32", + "23.100.36.80/32", "23.101.201.123/32", "40.78.23.204/32", "40.78.56.129/32", + "40.83.182.65/32", + "40.83.183.7/32", + "40.83.183.17/32", + "40.83.183.233/32", + "40.83.183.239/32", + "40.83.202.10/32", + "40.112.150.29/32", + "40.112.150.74/32", + "40.112.150.149/32", + "40.112.208.79/32", + "40.112.209.70/32", + "40.112.209.221/32", + "40.112.214.62/32", + "40.112.220.103/32", + "40.112.220.120/32", + "40.112.220.123/32", + "40.112.220.137/32", + "40.112.220.148/32", + "40.112.220.253/32", + "40.112.221.26/32", + "40.112.221.63/32", + "40.112.221.64/32", + "40.112.221.68/32", + "40.112.248.94/32", + "40.112.249.87/32", + "40.112.249.128/32", + "40.112.250.243/32", + "40.112.251.1/32", + "40.112.251.12/32", + "40.112.251.43/32", + "40.112.252.169/32", + "40.112.253.169/32", + "40.112.253.206/32", + "40.112.253.241/32", + "40.118.165.68/32", + "40.118.165.112/32", + "40.118.165.126/32", + "40.118.167.227/32", + "40.118.200.201/32", "40.118.211.172/32", "52.157.19.228/32", "52.157.20.142/32", "52.159.213.32/27", "52.159.213.128/25", + "52.160.104.221/32", "57.154.150.0/23", "104.40.28.202/32", + "104.40.69.220/32", + "104.40.69.224/32", + "104.40.73.30/32", + "104.40.92.144/32", "104.42.15.41/32", "104.42.34.58/32", "104.42.38.254/32", "104.42.54.24/32", + "104.42.54.148/32", "104.42.75.120/32", + "104.42.97.60/32", + "104.42.97.112/32", + "104.42.97.144/32", + "104.42.101.156/32", + "104.42.101.222/32", "104.42.211.215/32", + "104.45.237.102/32", "104.209.35.177/32", + "137.117.15.130/32", "138.91.147.71/32" ], "networkFeatures": null @@ -97488,12 +102376,13 @@ "name": "MicrosoftCloudAppSecurity.WestUS2", "id": "MicrosoftCloudAppSecurity.WestUS2", "properties": { - "changeNumber": 4, + "changeNumber": 5, "region": "westus2", "regionId": 38, "platform": "Azure", "systemService": "MicrosoftCloudAppSecurity", "addressPrefixes": [ + "4.246.50.94/32", "13.66.134.18/32", "13.66.142.80/28", "13.66.158.8/32", @@ -97507,6 +102396,25 @@ "13.77.165.61/32", "20.3.226.231/32", "20.9.204.0/25", + "20.36.0.108/32", + "20.72.220.20/32", + "20.94.202.208/31", + "20.94.202.212/31", + "20.94.203.0/31", + "20.94.203.4/31", + "20.94.203.8/31", + "20.94.203.22/31", + "20.94.203.32/31", + "20.94.203.46/31", + "20.94.203.202/32", + "20.187.50.88/32", + "20.187.53.13/32", + "20.190.8.13/32", + "20.190.8.21/32", + "20.190.8.196/32", + "20.191.83.23/32", + "20.191.83.144/32", + "20.191.109.188/32", "40.78.245.0/28", "40.78.251.128/28", "40.90.218.196/31", @@ -97518,6 +102426,12 @@ "40.90.220.190/32", "40.90.220.196/32", "40.90.222.64/32", + "40.91.70.79/32", + "40.91.70.114/31", + "40.91.70.182/32", + "40.91.70.192/31", + "40.91.70.212/31", + "40.91.70.238/32", "40.91.74.37/32", "40.91.78.105/32", "40.91.114.40/29", @@ -97533,14 +102447,62 @@ "51.143.122.59/32", "51.143.122.60/32", "52.137.89.147/32", + "52.137.122.32/32", + "52.137.122.57/32", + "52.137.122.59/32", + "52.137.122.78/32", + "52.137.122.94/32", + "52.137.122.119/32", + "52.137.122.120/32", + "52.137.122.129/32", + "52.137.122.217/32", + "52.137.122.234/32", + "52.137.123.26/32", + "52.137.123.109/32", + "52.137.125.143/32", + "52.137.125.151/32", + "52.137.125.167/32", + "52.137.125.172/32", + "52.137.125.184/32", + "52.137.125.210/32", + "52.137.125.231/32", + "52.137.125.238/32", "52.143.73.88/32", "52.143.74.31/32", "52.148.161.45/32", "52.148.161.53/32", + "52.151.1.88/32", + "52.156.117.16/32", "52.183.24.254/32", "52.183.30.204/32", "52.183.75.62/32", + "52.183.114.151/32", + "52.183.114.152/32", + "52.183.114.167/32", + "52.183.114.168/32", + "52.183.114.171/32", + "52.183.114.177/32", + "52.183.114.189/32", + "52.183.127.5/32", + "52.183.127.13/32", "52.191.129.65/32", + "172.171.122.248/32", + "172.171.123.5/32", + "172.171.124.0/32", + "172.171.124.10/32", + "172.171.124.17/32", + "172.171.124.36/32", + "172.171.124.45/32", + "172.171.124.103/32", + "172.171.124.115/32", + "172.171.124.123/32", + "172.171.124.140/32", + "172.171.124.143/32", + "172.171.124.149/32", + "172.171.124.166/32", + "172.171.124.173/32", + "172.171.124.175/32", + "172.171.124.176/32", "172.179.39.68/31", "172.179.39.72/29", "172.179.39.96/27", @@ -97556,12 +102518,17 @@ "name": "MicrosoftCloudAppSecurity.WestUS3", "id": "MicrosoftCloudAppSecurity.WestUS3", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "westus3", "regionId": 79, "platform": "Azure", "systemService": "MicrosoftCloudAppSecurity", "addressPrefixes": [ + "20.118.160.96/32", + "20.118.178.95/32", + "20.118.179.32/32", + "20.118.180.58/32", + "20.150.157.211/32", "57.154.63.144/28", "57.154.63.160/29", "57.154.81.0/25", @@ -97997,6 +102964,27 @@ ] } }, + { + "name": "MicrosoftContainerRegistry.EastUS3", + "id": "MicrosoftContainerRegistry.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "MicrosoftContainerRegistry", + "addressPrefixes": [ + "134.138.96.0/29", + "2603:1030:1402:400::/125" + ], + "networkFeatures": [ + "API", + "NSG", + "UDR", + "FW" + ] + } + }, { "name": "MicrosoftContainerRegistry.EastUSSTG", "id": "MicrosoftContainerRegistry.EastUSSTG", @@ -98117,15 +103105,17 @@ "name": "MicrosoftContainerRegistry.IndonesiaCentral", "id": "MicrosoftContainerRegistry.IndonesiaCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "indonesiacentral", "regionId": 6, "platform": "Azure", "systemService": "MicrosoftContainerRegistry", "addressPrefixes": [ + "48.193.50.40/29", "70.153.176.0/29", "70.153.200.0/29", "70.153.216.0/29", + "2603:1040:1802:5::1b8/125", "2603:1040:1802:400::/125", "2603:1040:1802:800::/125", "2603:1040:1802:c00::/125" @@ -99254,12 +104244,13 @@ "name": "PowerBI.AustraliaEast", "id": "PowerBI.AustraliaEast", "properties": { - "changeNumber": 3, + "changeNumber": 4, "region": "australiaeast", "regionId": 3, "platform": "Azure", "systemService": "PowerBI", "addressPrefixes": [ + "4.195.7.224/27", "4.198.215.224/27", "20.37.195.24/31", "20.37.195.48/29", @@ -99507,12 +104498,14 @@ "name": "PowerBI.CentralIndia", "id": "PowerBI.CentralIndia", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "centralindia", "regionId": 21, "platform": "Azure", "systemService": "PowerBI", "addressPrefixes": [ + "4.247.186.224/28", + "4.247.187.0/26", "20.192.47.128/30", "20.192.47.132/31", "20.192.168.144/30", @@ -99708,7 +104701,7 @@ "name": "PowerBI.EastUS2", "id": "PowerBI.EastUS2", "properties": { - "changeNumber": 2, + "changeNumber": 4, "region": "eastus2", "regionId": 33, "platform": "Azure", @@ -99730,6 +104723,8 @@ "104.208.203.176/28", "135.232.93.144/28", "145.132.126.160/27", + "172.175.125.0/26", + "172.176.2.192/26", "2603:1030:40c::/122", "2603:1030:40c::40/123", "2603:1030:40c:1::5e0/123", @@ -99776,6 +104771,30 @@ ] } }, + { + "name": "PowerBI.EastUS3", + "id": "PowerBI.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "PowerBI", + "addressPrefixes": [ + "134.138.76.126/31", + "134.138.79.84/30", + "134.138.82.0/29", + "2603:1030:1402:2::3e0/123", + "2603:1030:1402:2::440/122" + ], + "networkFeatures": [ + "API", + "NSG", + "UDR", + "FW" + ] + } + }, { "name": "PowerBI.EastUSSTG", "id": "PowerBI.EastUSSTG", @@ -100038,12 +105057,14 @@ "name": "PowerBI.JapanEast", "id": "PowerBI.JapanEast", "properties": { - "changeNumber": 3, + "changeNumber": 4, "region": "japaneast", "regionId": 24, "platform": "Azure", "systemService": "PowerBI", "addressPrefixes": [ + "4.189.206.176/28", + "4.189.206.192/29", "20.43.65.152/31", "20.43.65.176/29", "20.43.65.192/28", @@ -100297,12 +105318,13 @@ "name": "PowerBI.NewZealandNorth", "id": "PowerBI.NewZealandNorth", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "newzealandnorth", "regionId": 91, "platform": "Azure", "systemService": "PowerBI", "addressPrefixes": [ + "172.196.59.232/29", "172.204.165.78/31", "172.204.165.120/30", "172.204.166.64/29", @@ -100323,12 +105345,13 @@ "name": "PowerBI.NorthCentralUS", "id": "PowerBI.NorthCentralUS", "properties": { - "changeNumber": 3, + "changeNumber": 5, "region": "northcentralus", "regionId": 34, "platform": "Azure", "systemService": "PowerBI", "addressPrefixes": [ + "20.41.160.192/26", "20.51.0.204/30", "20.51.1.32/28", "20.51.5.4/30", @@ -100338,6 +105361,7 @@ "40.80.188.64/27", "40.80.188.128/25", "40.80.189.0/24", + "52.240.160.192/26", "130.213.49.176/28", "130.213.49.192/27", "130.213.74.128/26", @@ -100360,7 +105384,7 @@ "name": "PowerBI.NorthEurope", "id": "PowerBI.NorthEurope", "properties": { - "changeNumber": 4, + "changeNumber": 5, "region": "northeurope", "regionId": 17, "platform": "Azure", @@ -100368,6 +105392,7 @@ "addressPrefixes": [ "4.207.16.32/27", "4.207.16.128/26", + "4.207.188.128/26", "4.207.242.96/27", "4.207.242.128/26", "4.207.247.176/28", @@ -101022,7 +106047,7 @@ "name": "PowerBI.UKSouth", "id": "PowerBI.UKSouth", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "uksouth", "regionId": 27, "platform": "Azure", @@ -101040,6 +106065,7 @@ "74.177.72.32/28", "74.177.108.64/26", "131.145.145.192/27", + "172.165.73.32/27", "172.187.71.96/27", "2603:1020:705::/122", "2603:1020:705::40/123", @@ -101058,12 +106084,13 @@ "name": "PowerBI.UKWest", "id": "PowerBI.UKWest", "properties": { - "changeNumber": 3, + "changeNumber": 4, "region": "ukwest", "regionId": 28, "platform": "Azure", "systemService": "PowerBI", "addressPrefixes": [ + "20.58.120.224/27", "20.90.32.144/28", "20.90.36.40/29", "20.90.36.96/28", @@ -101090,14 +106117,16 @@ "name": "PowerBI.WestCentralUS", "id": "PowerBI.WestCentralUS", "properties": { - "changeNumber": 2, + "changeNumber": 4, "region": "westcentralus", "regionId": 36, "platform": "Azure", "systemService": "PowerBI", "addressPrefixes": [ + "20.51.36.160/27", "20.69.4.224/28", "20.69.4.240/30", + "48.194.140.0/27", "52.148.44.160/28", "52.148.46.0/28", "52.150.139.76/31", @@ -101121,7 +106150,7 @@ "name": "PowerBI.WestEurope", "id": "PowerBI.WestEurope", "properties": { - "changeNumber": 3, + "changeNumber": 5, "region": "westeurope", "regionId": 18, "platform": "Azure", @@ -101136,12 +106165,14 @@ "40.74.30.160/27", "40.74.30.192/26", "40.74.31.0/26", + "48.199.6.192/26", "48.222.183.64/26", "48.222.186.224/27", "48.222.187.0/26", "68.219.160.0/25", "74.178.240.160/28", "134.149.156.0/26", + "172.199.129.128/26", "172.201.237.92/30", "172.211.114.96/28", "172.211.127.128/26", @@ -101194,7 +106225,7 @@ "name": "PowerBI.WestUS", "id": "PowerBI.WestUS", "properties": { - "changeNumber": 2, + "changeNumber": 4, "region": "westus", "regionId": 37, "platform": "Azure", @@ -101207,6 +106238,8 @@ "40.82.253.128/26", "40.82.254.0/25", "52.159.201.0/25", + "52.190.166.64/26", + "52.238.37.192/26", "172.185.241.128/27", "2603:1030:a07::620/123", "2603:1030:a07::640/122" @@ -103943,7 +108976,7 @@ "name": "PowerPlatformPlex.EastUS", "id": "PowerPlatformPlex.EastUS", "properties": { - "changeNumber": 6, + "changeNumber": 7, "region": "eastus", "regionId": 32, "platform": "Azure", @@ -103960,6 +108993,10 @@ "20.232.89.32/27", "20.232.89.64/27", "20.232.89.96/29", + "48.195.163.0/24", + "48.195.164.0/22", + "48.195.216.128/25", + "48.195.217.0/25", "48.223.173.64/26", "48.223.173.128/26", "52.255.218.64/26", @@ -104288,15 +109325,19 @@ "name": "PowerPlatformPlex.NorthEurope", "id": "PowerPlatformPlex.NorthEurope", "properties": { - "changeNumber": 5, + "changeNumber": 6, "region": "northeurope", "regionId": 17, "platform": "Azure", "systemService": "PowerPlatformPlex", "addressPrefixes": [ + "4.207.189.192/26", + "4.207.190.0/23", "4.207.240.0/26", "4.207.240.64/28", "4.207.251.72/29", + "4.209.232.0/23", + "4.209.234.0/25", "20.107.239.220/30", "20.223.65.68/30", "20.223.65.72/29", @@ -104759,7 +109800,7 @@ "name": "PowerPlatformPlex.WestEurope", "id": "PowerPlatformPlex.WestEurope", "properties": { - "changeNumber": 5, + "changeNumber": 6, "region": "westeurope", "regionId": 18, "platform": "Azure", @@ -104780,6 +109821,9 @@ "68.219.162.232/29", "68.219.162.240/28", "68.219.175.184/29", + "172.199.131.64/26", + "172.199.131.128/25", + "172.199.132.0/22", "172.201.236.144/28", "172.201.236.160/27", "172.201.236.192/26", @@ -104797,7 +109841,7 @@ "name": "PowerPlatformPlex.WestUS", "id": "PowerPlatformPlex.WestUS", "properties": { - "changeNumber": 5, + "changeNumber": 6, "region": "westus", "regionId": 37, "platform": "Azure", @@ -104820,6 +109864,12 @@ "20.59.103.192/27", "20.59.103.224/28", "20.59.103.240/30", + "48.195.24.64/26", + "48.195.24.128/25", + "48.195.25.0/24", + "48.195.26.0/23", + "48.195.28.0/23", + "48.195.30.0/26", "52.159.212.216/29", "52.250.195.128/26", "2603:1061:2004:7100::/56" @@ -104924,14 +109974,17 @@ "name": "PowerQueryOnline.AustriaEast", "id": "PowerQueryOnline.AustriaEast", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "austriaeast", "regionId": 95, "platform": "Azure", "systemService": "PowerQueryOnline", "addressPrefixes": [ + "68.210.30.96/27", "68.210.160.40/29", - "2603:1020:104:4::20/123" + "2603:1020:104:4::20/123", + "2603:1020:104:6::430/124", + "2603:1020:104:6::4a0/123" ], "networkFeatures": null } @@ -105118,14 +110171,17 @@ "name": "PowerQueryOnline.ChileCentral", "id": "PowerQueryOnline.ChileCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "chilec", "regionId": 10, "platform": "Azure", "systemService": "PowerQueryOnline", "addressPrefixes": [ "68.211.19.176/29", - "2603:1050:301::1c0/123" + "68.211.31.64/27", + "2603:1050:301::1c0/123", + "2603:1050:301:4::350/124", + "2603:1050:301:4::360/123" ], "networkFeatures": null } @@ -105159,7 +110215,7 @@ "name": "PowerQueryOnline.EastUS", "id": "PowerQueryOnline.EastUS", "properties": { - "changeNumber": 6, + "changeNumber": 7, "region": "eastus", "regionId": 32, "platform": "Azure", @@ -105168,11 +110224,14 @@ "20.42.4.200/30", "20.42.76.134/31", "20.232.88.0/29", + "48.195.223.8/29", + "48.195.223.128/30", "52.168.118.142/31", "57.152.116.160/28", "57.152.116.176/29", "68.220.88.36/31", "2603:1030:210:1::200/123", + "2603:1030:210:2c::440/122", "2603:1030:210:402::160/125", "2603:1030:210:802::140/125", "2603:1030:210:c00::20/125" @@ -105184,7 +110243,7 @@ "name": "PowerQueryOnline.EastUS2", "id": "PowerQueryOnline.EastUS2", "properties": { - "changeNumber": 7, + "changeNumber": 8, "region": "eastus2", "regionId": 33, "platform": "Azure", @@ -105197,7 +110256,10 @@ "52.179.200.128/31", "104.208.207.40/29", "104.208.207.48/28", + "172.175.14.20/30", + "172.175.14.24/29", "2603:1030:40c:1::200/123", + "2603:1030:40c:23::1c0/122", "2603:1030:40c:402::160/125", "2603:1030:40c:802::140/125", "2603:1030:40c:c00::20/125" @@ -105231,6 +110293,22 @@ "networkFeatures": null } }, + { + "name": "PowerQueryOnline.EastUS3", + "id": "PowerQueryOnline.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "PowerQueryOnline", + "addressPrefixes": [ + "134.138.64.32/29", + "2603:1030:1402::1a0/123" + ], + "networkFeatures": null + } + }, { "name": "PowerQueryOnline.EastUSSTG", "id": "PowerQueryOnline.EastUSSTG", @@ -105346,14 +110424,18 @@ "name": "PowerQueryOnline.IndonesiaCentral", "id": "PowerQueryOnline.IndonesiaCentral", "properties": { - "changeNumber": 1, + "changeNumber": 3, "region": "indonesiacentral", "regionId": 6, "platform": "Azure", "systemService": "PowerQueryOnline", "addressPrefixes": [ + "70.153.90.96/27", "70.153.152.40/29", - "2603:1040:1802:3::a0/123" + "2603:1040:1802:3::a0/123", + "2603:1040:1802:4::550/124", + "2603:1040:1802:4::560/123", + "2603:1040:1802:5::80/122" ], "networkFeatures": null } @@ -105681,7 +110763,7 @@ "name": "PowerQueryOnline.NorthEurope", "id": "PowerQueryOnline.NorthEurope", "properties": { - "changeNumber": 6, + "changeNumber": 7, "region": "northeurope", "regionId": 17, "platform": "Azure", @@ -105689,12 +110771,16 @@ "addressPrefixes": [ "4.207.249.176/28", "4.207.251.64/29", + "4.209.237.150/31", + "4.209.237.176/29", + "4.209.237.184/30", "13.69.239.110/31", "20.38.80.70/31", "20.50.74.150/31", "20.50.83.88/31", "20.223.64.128/29", "2603:1020:5:1::200/123", + "2603:1020:5:1a::200/122", "2603:1020:5:402::160/125", "2603:1020:5:802::140/125", "2603:1020:5:c00::20/125" @@ -105706,7 +110792,7 @@ "name": "PowerQueryOnline.NorwayEast", "id": "PowerQueryOnline.NorwayEast", "properties": { - "changeNumber": 5, + "changeNumber": 6, "region": "norwaye", "regionId": 63, "platform": "Azure", @@ -105717,7 +110803,13 @@ "51.120.40.70/31", "51.120.110.220/31", "51.120.214.210/31", + "131.163.111.114/31", + "131.163.111.116/30", + "131.163.111.120/29", + "131.163.111.192/28", "2603:1020:e04:1::200/123", + "2603:1020:e04:a::6e0/123", + "2603:1020:e04:b::80/124", "2603:1020:e04:402::160/125", "2603:1020:e04:802::140/125", "2603:1020:e04:c00::20/125" @@ -106247,7 +111339,7 @@ "name": "PowerQueryOnline.WestEurope", "id": "PowerQueryOnline.WestEurope", "properties": { - "changeNumber": 6, + "changeNumber": 7, "region": "westeurope", "regionId": 18, "platform": "Azure", @@ -106255,10 +111347,13 @@ "addressPrefixes": [ "20.105.215.40/29", "40.74.30.104/30", + "48.199.0.188/30", + "48.199.8.208/29", "104.40.170.68/31", "172.211.127.192/28", "172.211.127.208/29", "2603:1020:206:1::200/123", + "2603:1020:206:21::340/122", "2603:1020:206:402::160/126", "2603:1020:206:403::1a0/126" ], @@ -106290,7 +111385,7 @@ "name": "PowerQueryOnline.WestUS", "id": "PowerQueryOnline.WestUS", "properties": { - "changeNumber": 7, + "changeNumber": 8, "region": "westus", "regionId": 37, "platform": "Azure", @@ -106300,7 +111395,9 @@ "20.189.175.164/31", "40.82.253.72/29", "52.159.212.192/28", + "52.238.20.48/29", "2603:1030:a07::200/123", + "2603:1030:a07:1f::5c0/122", "2603:1030:a07:402::358/126" ], "networkFeatures": null @@ -106337,7 +111434,7 @@ "name": "PowerQueryOnline.WestUS3", "id": "PowerQueryOnline.WestUS3", "properties": { - "changeNumber": 6, + "changeNumber": 7, "region": "westus3", "regionId": 79, "platform": "Azure", @@ -106347,11 +111444,14 @@ "20.118.139.216/29", "20.150.160.108/31", "20.150.174.158/31", + "20.172.60.176/29", + "20.172.60.184/30", "172.173.16.4/31", "172.173.24.4/31", "172.182.191.88/29", "172.182.191.96/28", "2603:1030:504:1::200/123", + "2603:1030:504:14::140/122", "2603:1030:504:402::450/125", "2603:1030:504:802::480/125", "2603:1030:504:c00::20/125" @@ -106423,12 +111523,13 @@ "name": "SCCservice.BrazilSouth", "id": "SCCservice.BrazilSouth", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "brazilsouth", "regionId": 9, "platform": "Azure", "systemService": "SCCservice", "addressPrefixes": [ + "51.59.58.192/27", "191.233.207.192/29" ], "networkFeatures": null @@ -107564,6 +112665,22 @@ "networkFeatures": null } }, + { + "name": "ServiceFabric.EastUS3", + "id": "ServiceFabric.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "ServiceFabric", + "addressPrefixes": [ + "134.138.96.8/30", + "2603:1030:1402:400::18/125" + ], + "networkFeatures": null + } + }, { "name": "ServiceFabric.EastUSSTG", "id": "ServiceFabric.EastUSSTG", @@ -107665,15 +112782,17 @@ "name": "ServiceFabric.IndonesiaCentral", "id": "ServiceFabric.IndonesiaCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "indonesiacentral", "regionId": 6, "platform": "Azure", "systemService": "ServiceFabric", "addressPrefixes": [ + "48.193.50.104/29", "70.153.176.12/30", "70.153.200.8/30", "70.153.216.8/30", + "2603:1040:1802:5::5a8/125", "2603:1040:1802:400::18/125", "2603:1040:1802:800::10/125", "2603:1040:1802:c00::10/125" @@ -108662,12 +113781,13 @@ "name": "StorageSyncService.BelgiumCentral", "id": "StorageSyncService.BelgiumCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "belgiumcentral", "regionId": 97, "platform": "Azure", "systemService": "StorageSyncService", "addressPrefixes": [ + "9.160.69.152/29", "9.160.80.48/29", "2603:1020:1502:400::120/123" ], @@ -108876,6 +113996,22 @@ "networkFeatures": null } }, + { + "name": "StorageSyncService.EastUS3", + "id": "StorageSyncService.EastUS3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "StorageSyncService", + "addressPrefixes": [ + "134.138.79.88/29", + "2603:1030:1402:2::3c0/123" + ], + "networkFeatures": null + } + }, { "name": "StorageSyncService.EastUSSTG", "id": "StorageSyncService.EastUSSTG", @@ -108965,7 +114101,7 @@ "name": "StorageSyncService.IndonesiaCentral", "id": "StorageSyncService.IndonesiaCentral", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "indonesiacentral", "regionId": 6, "platform": "Azure", @@ -108973,6 +114109,7 @@ "addressPrefixes": [ "70.153.88.232/29", "70.153.176.56/29", + "2603:1040:1802:5::160/123", "2603:1040:1802:400::c0/123" ], "networkFeatures": null @@ -109946,12 +115083,14 @@ "name": "WindowsVirtualDesktop.ChileCentral", "id": "WindowsVirtualDesktop.ChileCentral", "properties": { - "changeNumber": 1, + "changeNumber": 2, "region": "chilec", "regionId": 10, "platform": "Azure", "systemService": "WindowsVirtualDesktop", "addressPrefixes": [ + "57.156.5.248/29", + "57.156.73.192/28", "2603:1061:2010:7::/117" ], "networkFeatures": null @@ -111451,7 +116590,7 @@ "name": "AzureActiveDirectory.ServiceEndpoint", "id": "AzureActiveDirectory.ServiceEndpoint", "properties": { - "changeNumber": 46, + "changeNumber": 47, "region": "", "regionId": 0, "platform": "Azure", @@ -111571,6 +116710,15 @@ "20.20.55.96/28", "20.20.55.128/28", "20.20.55.160/28", + "20.20.55.192/28", + "20.20.55.224/28", + "20.20.56.0/28", + "20.20.56.32/28", + "20.20.56.64/28", + "20.20.56.96/28", + "20.20.56.128/28", + "20.20.56.160/28", + "20.20.56.192/28", "20.72.21.96/27", "20.190.128.0/26", "20.190.128.64/28", @@ -111606,8 +116754,6 @@ "20.190.138.32/29", "20.190.138.64/27", "20.190.138.96/29", - "20.190.138.128/27", - "20.190.138.160/29", "20.190.139.0/27", "20.190.139.32/29", "20.190.139.64/27", @@ -111975,6 +117121,15 @@ "20.231.151.192/28", "20.231.151.224/28", "20.231.152.0/28", + "20.231.152.32/28", + "20.231.152.64/28", + "20.231.152.96/28", + "20.231.152.128/28", + "20.231.152.160/28", + "20.231.152.192/28", + "20.231.152.224/28", + "20.231.153.0/28", + "20.231.153.32/28", "40.126.0.0/26", "40.126.0.64/28", "40.126.0.128/27", @@ -112009,8 +117164,6 @@ "40.126.10.32/29", "40.126.10.64/27", "40.126.10.96/29", - "40.126.10.128/27", - "40.126.10.160/29", "40.126.11.0/27", "40.126.11.32/29", "40.126.11.64/27", @@ -112470,6 +117623,9 @@ "2603:1036:3000:2d0::/121", "2603:1036:3000:2e0::/121", "2603:1036:3000:300::/121", + "2603:1036:3000:320::/121", + "2603:1036:3000:328::/121", + "2603:1036:3000:330::/121", "2603:1037:1::/121", "2603:1037:1:8::/121", "2603:1037:1:10::/121", @@ -112528,6 +117684,9 @@ "2603:1037:1:2e0::/121", "2603:1037:1:300::/121", "2603:1037:1:320::/121", + "2603:1037:1:340::/121", + "2603:1037:1:348::/121", + "2603:1037:1:350::/121", "2603:1046:2000::/121", "2603:1046:2000:8::/121", "2603:1046:2000:10::/121", @@ -112591,6 +117750,12 @@ "2603:1046:2000:2a0::/121", "2603:1046:2000:2a8::/121", "2603:1046:2000:2b0::/121", + "2603:1046:2000:2c0::/121", + "2603:1046:2000:2c8::/121", + "2603:1046:2000:2d0::/121", + "2603:1046:2000:2e0::/121", + "2603:1046:2000:2e8::/121", + "2603:1046:2000:2f0::/121", "2603:1047:1::/121", "2603:1047:1:8::/121", "2603:1047:1:10::/121", @@ -112653,6 +117818,12 @@ "2603:1047:1:2a0::/121", "2603:1047:1:2a8::/121", "2603:1047:1:2b0::/121", + "2603:1047:1:2c0::/121", + "2603:1047:1:2c8::/121", + "2603:1047:1:2d0::/121", + "2603:1047:1:2e0::/121", + "2603:1047:1:2e8::/121", + "2603:1047:1:2f0::/121", "2603:1056:2000::/121", "2603:1056:2000:8::/121", "2603:1056:2000:10::/121", @@ -112677,7 +117848,7 @@ "name": "AzureMonitor.Core", "id": "AzureMonitor.Core", "properties": { - "changeNumber": 73, + "changeNumber": 76, "region": "", "regionId": 0, "platform": "Azure", @@ -112739,15 +117910,19 @@ "4.250.1.104/29", "4.251.224.224/27", "9.160.56.0/27", + "9.160.70.96/27", "9.160.84.32/29", "9.160.90.136/29", "9.160.114.136/29", "9.205.48.0/27", + "9.205.62.0/27", "9.205.74.136/29", "9.205.98.136/29", "9.205.114.136/29", "9.235.22.224/27", "9.235.23.0/28", + "9.235.171.24/29", + "9.235.171.32/28", "13.66.145.232/29", "13.66.150.216/29", "13.67.15.112/29", @@ -112832,6 +118007,7 @@ "20.72.28.192/27", "20.83.192.192/29", "20.83.195.120/29", + "20.88.80.0/27", "20.89.1.32/29", "20.91.102.96/27", "20.98.192.0/27", @@ -112941,20 +118117,25 @@ "40.124.64.144/29", "40.124.67.184/29", "48.192.43.0/24", + "48.193.48.96/27", "48.194.2.0/24", "48.196.100.96/27", "48.197.92.32/27", + "48.198.101.224/27", "48.215.146.8/29", "48.215.167.96/27", "48.215.167.128/26", "48.216.10.184/29", "48.216.33.192/27", + "48.219.9.32/27", "48.219.208.0/27", + "48.219.221.128/27", "48.219.236.48/29", "48.221.170.8/29", "48.223.21.160/27", "48.223.21.192/26", "51.4.136.0/27", + "51.4.154.64/27", "51.4.164.48/29", "51.11.97.96/27", "51.11.100.16/29", @@ -113029,7 +118210,10 @@ "57.152.116.224/27", "57.153.246.160/27", "57.154.128.96/29", + "57.156.5.128/27", "68.154.137.88/29", + "68.154.151.96/27", + "68.210.59.224/27", "68.210.154.184/29", "68.210.174.192/27", "68.210.194.136/29", @@ -113055,8 +118239,10 @@ "72.155.111.128/26", "72.155.111.192/27", "74.7.56.128/27", + "74.7.65.192/27", "74.7.83.32/29", "74.7.192.160/27", + "74.7.201.192/27", "74.7.218.224/29", "74.161.189.192/26", "74.161.190.0/27", @@ -113067,6 +118253,7 @@ "74.242.188.0/27", "74.243.3.192/27", "74.243.21.0/29", + "85.211.235.160/27", "98.66.146.96/27", "102.37.64.128/27", "102.37.72.240/29", @@ -113089,6 +118276,7 @@ "134.112.76.112/28", "134.112.77.0/27", "134.138.82.192/27", + "134.138.94.192/27", "134.138.98.136/29", "135.116.174.224/27", "135.116.175.0/26", @@ -113106,6 +118294,8 @@ "158.158.61.224/28", "167.105.106.8/29", "167.105.144.192/27", + "167.105.250.104/29", + "167.105.250.112/28", "168.61.142.0/27", "168.61.239.96/27", "172.160.223.224/27", @@ -113122,6 +118312,7 @@ "172.194.112.120/29", "172.195.21.16/28", "172.195.21.32/27", + "172.196.61.192/27", "172.198.98.192/27", "172.198.112.168/29", "172.198.144.168/29", @@ -113151,15 +118342,18 @@ "2603:1000:4:1::280/123", "2603:1000:4:1::300/121", "2603:1000:4:2::7c0/123", + "2603:1000:4:7::200/120", "2603:1000:4:402::500/121", "2603:1000:104:2::/123", "2603:1000:104:2::80/121", "2603:1000:104:6::40/123", + "2603:1000:104:a::600/120", "2603:1000:104:402::500/121", "2603:1000:104:802::480/121", "2603:1000:104:c02::480/121", "2603:1010:6::500/121", "2603:1010:6:7::40/123", + "2603:1010:6:e::100/120", "2603:1010:6:402::500/121", "2603:1010:6:802::480/121", "2603:1010:6:802::500/121", @@ -113169,9 +118363,11 @@ "2603:1010:101:1::300/121", "2603:1010:101:2::5c0/123", "2603:1010:101:402::500/121", + "2603:1010:207:4::/120", "2603:1010:304:1::280/123", "2603:1010:304:1::300/121", "2603:1010:304:5::7e0/123", + "2603:1010:304:a::300/120", "2603:1010:304:402::500/121", "2603:1010:404:1::280/123", "2603:1010:404:1::300/121", @@ -113182,6 +118378,7 @@ "2603:1020:5::500/121", "2603:1020:5:b::120/123", "2603:1020:5:b::140/123", + "2603:1020:5:1b::100/120", "2603:1020:5:402::500/121", "2603:1020:5:802::480/121", "2603:1020:5:c02::480/121", @@ -113190,22 +118387,26 @@ "2603:1020:206::500/121", "2603:1020:206:10::120/123", "2603:1020:206:10::140/123", + "2603:1020:206:22::/120", "2603:1020:206:402::500/121", "2603:1020:206:802::480/121", "2603:1020:206:c00::100/121", "2603:1020:605:1::280/123", "2603:1020:605:1::300/121", "2603:1020:605:7::400/123", + "2603:1020:605:b::600/120", "2603:1020:605:402::500/121", "2603:1020:705::360/123", "2603:1020:705::500/121", "2603:1020:705:8::260/123", + "2603:1020:705:15::/120", "2603:1020:705:402::500/121", "2603:1020:705:802::480/121", "2603:1020:705:c02::480/121", "2603:1020:805::360/123", "2603:1020:805::500/121", "2603:1020:805:3::3c0/123", + "2603:1020:805:d::500/120", "2603:1020:805:402::500/121", "2603:1020:805:802::480/121", "2603:1020:805:c02::480/121", @@ -113216,6 +118417,7 @@ "2603:1020:a04::360/123", "2603:1020:a04::500/121", "2603:1020:a04:3::7e0/123", + "2603:1020:a04:9::600/120", "2603:1020:a04:402::500/121", "2603:1020:a04:800::100/121", "2603:1020:a04:c02::480/121", @@ -113226,16 +118428,19 @@ "2603:1020:c04::360/123", "2603:1020:c04::500/121", "2603:1020:c04:5::5c0/122", + "2603:1020:c04:a::500/120", "2603:1020:c04:402::500/121", "2603:1020:c04:800::100/121", "2603:1020:c04:c02::480/121", "2603:1020:d04:1::280/123", "2603:1020:d04:1::300/121", "2603:1020:d04:5::7c0/123", + "2603:1020:d04:9::400/120", "2603:1020:d04:402::500/121", "2603:1020:e04::360/123", "2603:1020:e04::500/121", "2603:1020:e04:4::6e0/123", + "2603:1020:e04:c::/120", "2603:1020:e04:402::500/121", "2603:1020:e04:802::480/121", "2603:1020:e04:c00::80/121", @@ -113245,6 +118450,7 @@ "2603:1020:f04:402::500/121", "2603:1020:1004:2::180/121", "2603:1020:1004:6::c0/123", + "2603:1020:1004:c::700/120", "2603:1020:1004:400::420/123", "2603:1020:1004:400::4a0/123", "2603:1020:1004:400::580/121", @@ -113257,19 +118463,24 @@ "2603:1020:1104:400::480/121", "2603:1020:1204:2::400/121", "2603:1020:1204:3::5a0/123", + "2603:1020:1204:7::500/120", "2603:1020:1302:2::80/121", "2603:1020:1302:3::180/123", + "2603:1020:1302:5::600/120", "2603:1020:1403:2::/123", "2603:1020:1403:2::400/121", + "2603:1020:1403:7::300/120", "2603:1020:1502:2::500/121", "2603:1020:1602:2::500/121", "2603:1030:f:2::280/123", "2603:1030:f:2::300/121", "2603:1030:f:a::c0/123", + "2603:1030:f:f::500/120", "2603:1030:f:400::d00/121", "2603:1030:10::360/123", "2603:1030:10::500/121", "2603:1030:10:d::4a0/123", + "2603:1030:10:1f::100/120", "2603:1030:10:402::500/121", "2603:1030:10:802::480/121", "2603:1030:10:c02::480/121", @@ -113285,6 +118496,7 @@ "2603:1030:210::500/121", "2603:1030:210:c::180/121", "2603:1030:210:f::5e0/123", + "2603:1030:210:2d::400/120", "2603:1030:210:402::500/121", "2603:1030:210:802::480/121", "2603:1030:210:c00::100/121", @@ -113295,6 +118507,7 @@ "2603:1030:40b:2::240/123", "2603:1030:40b:2::300/121", "2603:1030:40b:8::640/123", + "2603:1030:40b:10::500/120", "2603:1030:40b:400::d00/121", "2603:1030:40b:800::400/121", "2603:1030:40b:c00::480/121", @@ -113302,12 +118515,14 @@ "2603:1030:40c::360/123", "2603:1030:40c::500/121", "2603:1030:40c:11::2c0/123", + "2603:1030:40c:24::200/120", "2603:1030:40c:402::500/121", "2603:1030:40c:802::480/121", "2603:1030:40c:c02::400/121", "2603:1030:504::540/123", "2603:1030:504::700/121", "2603:1030:504:8::5c0/123", + "2603:1030:504:15::/120", "2603:1030:504:402::500/121", "2603:1030:504:802::400/121", "2603:1030:504:c02::100/123", @@ -113316,14 +118531,17 @@ "2603:1030:608:1::280/123", "2603:1030:608:1::300/121", "2603:1030:608:8::80/123", + "2603:1030:608:14::200/120", "2603:1030:608:402::500/121", "2603:1030:608:802::80/121", "2603:1030:608:c00::300/121", "2603:1030:702:2::20/123", "2603:1030:702:2::400/121", + "2603:1030:702:7::100/120", "2603:1030:807::360/123", "2603:1030:807::500/121", "2603:1030:807:9::200/123", + "2603:1030:807:16::/120", "2603:1030:807:402::500/121", "2603:1030:807:802::480/121", "2603:1030:807:c02::480/121", @@ -113331,28 +118549,33 @@ "2603:1030:a07:1::280/123", "2603:1030:a07:1::300/121", "2603:1030:a07:e::a0/123", + "2603:1030:a07:21::300/120", "2603:1030:a07:402::380/121", "2603:1030:a07:800::/121", "2603:1030:a07:c00::300/121", "2603:1030:b04:1::280/123", "2603:1030:b04:1::300/121", "2603:1030:b04:6::780/123", + "2603:1030:b04:f::100/120", "2603:1030:b04:402::500/121", "2603:1030:c06:2::240/123", "2603:1030:c06:2::300/121", "2603:1030:c06:c::320/123", + "2603:1030:c06:21::/120", "2603:1030:c06:400::d00/121", "2603:1030:c06:802::400/121", "2603:1030:c06:c02::480/121", "2603:1030:f05::360/123", "2603:1030:f05::500/121", "2603:1030:f05:4::5a0/123", + "2603:1030:f05:d::100/120", "2603:1030:f05:402::500/121", "2603:1030:f05:802::480/121", "2603:1030:f05:c02::480/121", "2603:1030:1005:1::280/123", "2603:1030:1005:1::300/121", "2603:1030:1005:3::6a0/123", + "2603:1030:1005:b::700/120", "2603:1030:1005:402::500/121", "2603:1030:1102:2::600/121", "2603:1030:1202:2::500/121", @@ -113364,24 +118587,28 @@ "2603:1040:5::460/123", "2603:1040:5::600/121", "2603:1040:5:8::5c0/123", + "2603:1040:5:16::100/120", "2603:1040:5:402::500/121", "2603:1040:5:802::480/121", "2603:1040:5:c02::480/121", "2603:1040:207:1::280/123", "2603:1040:207:1::300/121", "2603:1040:207:6::380/123", + "2603:1040:207:11::/120", "2603:1040:207:402::500/121", "2603:1040:207:800::300/121", "2603:1040:207:c00::300/121", "2603:1040:407::360/123", "2603:1040:407::500/121", "2603:1040:407:7::420/123", + "2603:1040:407:e::300/120", "2603:1040:407:402::500/121", "2603:1040:407:802::480/121", "2603:1040:407:c00::100/121", "2603:1040:606:1::280/123", "2603:1040:606:1::300/121", "2603:1040:606:3::540/123", + "2603:1040:606:b::400/120", "2603:1040:606:402::500/121", "2603:1040:606:800::300/121", "2603:1040:606:c00::/121", @@ -113392,12 +118619,14 @@ "2603:1040:904::360/123", "2603:1040:904::500/121", "2603:1040:904:3::680/123", + "2603:1040:904:8::500/120", "2603:1040:904:402::500/121", "2603:1040:904:800::100/121", "2603:1040:904:c02::480/121", "2603:1040:a06::460/123", "2603:1040:a06::600/121", "2603:1040:a06:7::e0/123", + "2603:1040:a06:c::500/120", "2603:1040:a06:402::500/121", "2603:1040:a06:802::480/121", "2603:1040:a06:c02::480/121", @@ -113408,10 +118637,12 @@ "2603:1040:c06:1::280/123", "2603:1040:c06:1::300/121", "2603:1040:c06:6::600/123", + "2603:1040:c06:b::100/120", "2603:1040:c06:402::500/121", "2603:1040:d04:2::/123", "2603:1040:d04:2::100/120", "2603:1040:d04:3::5c0/123", + "2603:1040:d04:7::300/120", "2603:1040:d04:400::420/123", "2603:1040:d04:400::580/121", "2603:1040:d04:800::400/121", @@ -113419,15 +118650,18 @@ "2603:1040:e05::40/123", "2603:1040:e05::80/121", "2603:1040:e05:6::40/123", + "2603:1040:e05:9::500/120", "2603:1040:e05:402::80/121", "2603:1040:f05::360/123", "2603:1040:f05::500/121", "2603:1040:f05:3::760/123", + "2603:1040:f05:c::100/120", "2603:1040:f05:402::500/121", "2603:1040:f05:802::480/121", "2603:1040:f05:c02::480/121", "2603:1040:1002:2::200/121", "2603:1040:1002:5::360/123", + "2603:1040:1002:8::300/120", "2603:1040:1104:1::580/121", "2603:1040:1104:5::200/123", "2603:1040:1104:400::460/123", @@ -113437,6 +118671,7 @@ "2603:1040:1302:2::540/123", "2603:1040:1402:2::80/121", "2603:1040:1402:2::5e0/123", + "2603:1040:1402:8::200/120", "2603:1040:1503:2::280/121", "2603:1040:1503:2::500/123", "2603:1040:1602:2::580/121", @@ -113444,9 +118679,11 @@ "2603:1040:1802:2::380/121", "2603:1040:1904:3::180/121", "2603:1040:1a02:3::300/121", + "2603:1040:1b02:3::400/121", "2603:1050:6::360/123", "2603:1050:6::500/121", "2603:1050:6:7::40/123", + "2603:1050:6:b::400/120", "2603:1050:6:402::580/121", "2603:1050:6:402::600/121", "2603:1050:6:802::480/121", @@ -113469,7 +118706,7 @@ "name": "DataFactoryManagement", "id": "DataFactoryManagement", "properties": { - "changeNumber": 71, + "changeNumber": 74, "region": "", "regionId": 0, "platform": "Azure", @@ -113682,6 +118919,8 @@ "48.196.98.128/27", "48.197.89.112/28", "48.197.89.160/27", + "48.198.97.224/28", + "48.198.101.0/27", "48.209.130.96/28", "48.209.130.112/29", "48.210.4.0/27", @@ -113790,6 +119029,7 @@ "74.242.37.32/27", "74.242.188.224/27", "74.243.20.176/28", + "74.243.172.128/27", "74.248.90.128/27", "85.210.193.192/27", "98.70.130.88/29", @@ -114114,11 +119354,13 @@ "2603:1040:1702:400::320/124", "2603:1040:1802:2::98/125", "2603:1040:1802:2::4b0/124", + "2603:1040:1802:5::700/121", "2603:1040:1802:400::f0/124", "2603:1040:1802:800::70/124", "2603:1040:1802:c00::70/124", "2603:1040:1904:2::680/121", "2603:1040:1a02:3::80/121", + "2603:1040:1b02:3::180/121", "2603:1050:6:1::500/122", "2603:1050:6:1::780/122", "2603:1050:6:402::330/124", @@ -114144,7 +119386,7 @@ "name": "LogicAppsManagement", "id": "LogicAppsManagement", "properties": { - "changeNumber": 56, + "changeNumber": 57, "region": "", "regionId": 0, "platform": "Azure", @@ -114594,6 +119836,7 @@ "40.127.242.203/32", "48.196.101.112/28", "48.197.94.0/28", + "48.198.102.240/28", "48.216.12.32/28", "48.216.48.80/28", "48.219.213.160/28", @@ -114964,6 +120207,7 @@ "2603:1040:1802:400::360/123", "2603:1040:1904:4::10/124", "2603:1040:1a02:3::680/124", + "2603:1040:1b02:3::760/124", "2603:1050:6:402::3c0/124", "2603:1050:301:3::5a0/124", "2603:1050:301:400::330/124", @@ -115051,7 +120295,7 @@ "name": "AzureCloud.australiacentral", "id": "AzureCloud.australiacentral", "properties": { - "changeNumber": 36, + "changeNumber": 37, "region": "australiacentral", "regionId": 58, "platform": "Azure", @@ -115083,6 +120327,7 @@ "20.227.128.0/17", "20.248.0.0/17", "40.64.146.240/28", + "40.64.151.224/27", "40.64.177.128/25", "40.82.240.0/22", "40.90.130.48/28", @@ -115131,7 +120376,7 @@ "name": "AzureCloud.australiaeast", "id": "AzureCloud.australiaeast", "properties": { - "changeNumber": 107, + "changeNumber": 113, "region": "australiaeast", "regionId": 3, "platform": "Azure", @@ -115188,6 +120433,7 @@ "20.95.204.0/23", "20.95.208.0/24", "20.135.120.0/21", + "20.143.162.0/23", "20.150.66.0/24", "20.150.92.0/24", "20.150.117.0/24", @@ -115227,6 +120473,7 @@ "20.248.128.0/17", "23.101.208.0/20", "40.64.146.16/28", + "40.64.150.32/27", "40.64.160.0/25", "40.79.160.0/20", "40.79.211.0/24", @@ -115249,11 +120496,10 @@ "40.107.39.0/24", "40.107.40.0/23", "40.112.37.128/26", - "40.120.176.0/24", - "40.120.177.0/25", - "40.120.177.128/26", - "40.120.177.192/28", - "40.120.177.208/31", + "40.120.176.0/23", + "40.120.178.0/25", + "40.120.178.128/28", + "40.120.178.144/31", "40.126.14.0/25", "40.126.39.0/24", "40.126.224.0/19", @@ -115278,6 +120524,7 @@ "52.109.112.0/22", "52.109.167.0/24", "52.111.224.0/24", + "52.113.1.0/24", "52.113.88.0/22", "52.113.103.0/24", "52.114.16.0/22", @@ -115308,6 +120555,7 @@ "70.152.0.0/24", "70.152.49.0/24", "70.152.50.0/23", + "70.152.236.0/24", "104.44.90.64/26", "104.44.93.96/27", "104.44.95.48/28", @@ -115316,6 +120564,7 @@ "104.209.80.0/20", "104.210.64.0/18", "135.130.126.0/23", + "145.190.129.0/24", "151.206.88.0/24", "151.206.142.0/24", "191.238.66.0/23", @@ -115375,7 +120624,7 @@ "name": "AzureCloud.australiasoutheast", "id": "AzureCloud.australiasoutheast", "properties": { - "changeNumber": 65, + "changeNumber": 67, "region": "australiasoutheast", "regionId": 4, "platform": "Azure", @@ -115426,6 +120675,7 @@ "20.231.151.0/26", "23.101.224.0/19", "40.64.146.64/28", + "40.64.150.128/27", "40.64.160.128/25", "40.79.212.0/24", "40.81.48.0/20", @@ -115485,6 +120735,7 @@ "52.255.32.0/19", "68.218.160.0/19", "70.152.1.0/24", + "70.152.235.0/24", "104.44.90.32/27", "104.44.93.128/27", "104.44.95.64/28", @@ -115555,7 +120806,7 @@ "name": "AzureCloud.austriaeast", "id": "AzureCloud.austriaeast", "properties": { - "changeNumber": 4, + "changeNumber": 9, "region": "austriaeast", "regionId": 95, "platform": "Azure", @@ -115579,6 +120830,7 @@ "40.78.213.0/24", "40.80.28.0/22", "40.93.89.0/24", + "40.98.18.0/24", "40.100.4.128/25", "40.100.5.0/26", "40.101.116.0/25", @@ -115602,9 +120854,13 @@ "68.210.128.0/18", "68.210.192.0/20", "68.210.208.0/21", + "68.210.224.0/19", "70.152.214.0/23", "70.152.216.0/22", "70.152.220.0/23", + "70.152.248.0/24", + "135.130.188.0/23", + "145.190.128.0/24", "209.199.22.176/28", "209.199.24.64/26", "209.199.24.128/26", @@ -115615,6 +120871,7 @@ "2603:1020:104::/48", "2603:1020:106::/48", "2603:1026:900:20::/64", + "2603:1026:900:49::/64", "2603:1026:2410::/48", "2603:1026:3000:1e0::/59", "2603:1027:1:1e0::/59", @@ -115651,7 +120908,7 @@ "name": "AzureCloud.belgiumcentral", "id": "AzureCloud.belgiumcentral", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "belgiumcentral", "regionId": 97, "platform": "Azure", @@ -115662,9 +120919,7 @@ "20.20.52.32/27", "20.20.52.64/26", "20.20.120.0/25", - "20.20.120.128/27", - "20.20.120.160/28", - "20.20.120.176/29", + "20.20.120.128/26", "20.33.113.0/24", "20.38.49.0/24", "20.143.96.0/23", @@ -115698,7 +120953,7 @@ "2603:1027:1:260::/59", "2603:1061:1016::/58", "2603:1061:1016:40::/60", - "2603:1061:1016:50::/62", + "2603:1061:1016:50::/61", "2603:1061:1311:400::/54", "2603:1061:173f::/48", "2603:1061:2010:3f::/64", @@ -115735,7 +120990,7 @@ "name": "AzureCloud.brazilsouth", "id": "AzureCloud.brazilsouth", "properties": { - "changeNumber": 79, + "changeNumber": 85, "region": "brazilsouth", "regionId": 9, "platform": "Azure", @@ -115751,9 +121006,10 @@ "4.238.128.0/17", "13.105.52.80/28", "13.105.52.128/26", - "20.20.96.0/26", - "20.20.96.64/27", - "20.20.96.96/30", + "20.20.96.0/24", + "20.20.97.0/27", + "20.20.97.32/28", + "20.20.97.48/30", "20.33.5.0/24", "20.33.63.0/24", "20.33.161.0/24", @@ -115800,6 +121056,7 @@ "23.97.112.160/27", "40.64.144.224/29", "40.64.145.64/28", + "40.64.148.128/27", "40.64.161.0/25", "40.90.29.64/26", "40.90.29.128/26", @@ -115857,6 +121114,8 @@ "52.253.186.0/24", "57.150.130.0/23", "70.152.2.0/24", + "70.152.249.0/24", + "70.152.250.0/24", "74.163.0.0/16", "104.41.0.0/18", "151.206.87.0/25", @@ -115939,7 +121198,7 @@ "name": "AzureCloud.brazilse", "id": "AzureCloud.brazilse", "properties": { - "changeNumber": 33, + "changeNumber": 35, "region": "brazilse", "regionId": 77, "platform": "Azure", @@ -115994,7 +121253,9 @@ "52.123.182.0/24", "52.253.197.0/24", "70.152.3.0/24", + "70.152.234.0/24", "108.140.0.0/16", + "135.130.178.0/23", "151.206.87.128/25", "191.232.16.0/21", "191.233.8.0/21", @@ -116050,7 +121311,7 @@ "name": "AzureCloud.canadacentral", "id": "AzureCloud.canadacentral", "properties": { - "changeNumber": 86, + "changeNumber": 92, "region": "canadacentral", "regionId": 11, "platform": "Azure", @@ -116118,6 +121379,7 @@ "20.220.0.0/18", "20.220.128.0/17", "40.64.145.208/28", + "40.64.149.160/27", "40.64.161.128/25", "40.79.216.0/24", "40.80.44.0/22", @@ -116136,10 +121398,10 @@ "40.107.192.0/23", "40.107.194.0/24", "40.120.184.0/24", - "40.120.185.0/26", - "40.120.185.64/27", - "40.120.185.96/30", - "40.120.185.100/31", + "40.120.185.0/25", + "40.120.185.128/26", + "40.120.185.192/28", + "40.120.185.208/29", "40.126.11.0/25", "40.126.33.0/24", "48.208.49.0/24", @@ -116182,7 +121444,9 @@ "104.44.95.16/28", "130.107.0.0/16", "135.130.52.0/23", + "145.190.132.0/24", "145.191.0.0/17", + "151.206.107.128/25", "216.220.210.0/24", "2603:1030:f00::/47", "2603:1030:f02::/48", @@ -116237,7 +121501,7 @@ "name": "AzureCloud.canadaeast", "id": "AzureCloud.canadaeast", "properties": { - "changeNumber": 50, + "changeNumber": 52, "region": "canadaeast", "regionId": 12, "platform": "Azure", @@ -116271,6 +121535,7 @@ "20.209.64.0/23", "20.220.64.0/18", "40.64.146.208/28", + "40.64.151.160/27", "40.64.162.0/25", "40.69.96.0/19", "40.79.217.0/24", @@ -116322,6 +121587,7 @@ "104.44.93.64/27", "104.44.95.32/28", "135.130.50.0/23", + "151.206.107.0/25", "2603:1030:1000::/47", "2603:1030:1002::/48", "2603:1030:1004::/48", @@ -116373,7 +121639,7 @@ "name": "AzureCloud.centralindia", "id": "AzureCloud.centralindia", "properties": { - "changeNumber": 109, + "changeNumber": 115, "region": "centralindia", "regionId": 21, "platform": "Azure", @@ -116391,10 +121657,11 @@ "13.105.98.0/27", "13.105.98.32/28", "13.105.98.64/27", - "20.20.84.0/25", - "20.20.84.128/26", - "20.20.84.192/28", - "20.20.84.208/29", + "20.20.84.0/24", + "20.20.85.0/27", + "20.20.85.32/29", + "20.20.85.40/30", + "20.20.85.44/31", "20.33.9.0/24", "20.33.19.0/24", "20.33.28.0/24", @@ -116435,6 +121702,7 @@ "20.95.144.0/24", "20.135.90.0/23", "20.135.92.0/22", + "20.143.160.0/23", "20.150.114.0/24", "20.153.128.0/23", "20.153.132.0/23", @@ -116475,6 +121743,7 @@ "20.244.0.0/17", "40.64.144.232/29", "40.64.145.80/28", + "40.64.148.192/27", "40.64.162.128/25", "40.79.207.32/27", "40.79.207.64/28", @@ -116544,6 +121813,7 @@ "104.47.210.0/23", "104.211.64.0/18", "135.13.128.0/17", + "135.130.174.0/23", "135.235.128.0/17", "151.206.68.128/25", "2603:1040:a00::/46", @@ -116599,7 +121869,7 @@ "name": "AzureCloud.centraluseuap", "id": "AzureCloud.centraluseuap", "properties": { - "changeNumber": 80, + "changeNumber": 83, "region": "centraluseuap", "regionId": 48, "platform": "Azure", @@ -116626,9 +121896,9 @@ "20.152.64.0/23", "20.153.69.192/26", "20.153.77.0/24", + "20.153.120.0/24", "20.157.96.0/24", "20.157.235.0/24", - "20.190.138.128/25", "20.190.150.0/24", "20.209.124.0/23", "20.228.0.0/18", @@ -116715,7 +121985,6 @@ "40.123.170.188/30", "40.123.170.194/31", "40.123.170.222/31", - "40.126.10.128/25", "40.126.22.0/24", "48.208.51.0/24", "48.208.52.0/24", @@ -116752,6 +122021,8 @@ "57.157.5.120/30", "57.157.5.124/31", "57.157.5.200/31", + "57.157.7.32/28", + "57.157.7.48/31", "104.208.48.0/20", "134.138.128.0/17", "168.61.136.0/21", @@ -116825,6 +122096,10 @@ "2603:1030:9:6d2::/63", "2603:1030:9:6d4::/64", "2603:1030:9:6fa::/64", + "2603:1030:9:7a6::/63", + "2603:1030:9:7a8::/62", + "2603:1030:9:7ac::/63", + "2603:1030:9:7ae::/64", "2603:1030:e::/48", "2603:1030:f::/48", "2603:1030:12::/48", @@ -116864,7 +122139,7 @@ "name": "AzureCloud.centralus", "id": "AzureCloud.centralus", "properties": { - "changeNumber": 177, + "changeNumber": 183, "region": "centralus", "regionId": 31, "platform": "Azure", @@ -116949,6 +122224,7 @@ "20.143.4.0/24", "20.143.68.0/22", "20.143.126.0/23", + "20.143.164.0/23", "20.150.43.128/25", "20.150.58.0/24", "20.150.63.0/24", @@ -116961,6 +122237,7 @@ "20.153.72.0/23", "20.153.74.0/24", "20.153.76.0/24", + "20.153.126.0/24", "20.153.137.0/24", "20.153.146.0/24", "20.153.188.0/23", @@ -116991,6 +122268,7 @@ "23.101.112.0/20", "23.102.202.0/24", "40.64.145.176/28", + "40.64.149.96/27", "40.64.163.0/25", "40.67.160.0/19", "40.69.128.0/18", @@ -117370,8 +122648,17 @@ "57.157.5.204/30", "57.157.5.208/28", "57.157.5.224/27", - "57.157.6.0/28", - "57.157.6.16/29", + "57.157.6.0/24", + "57.157.7.0/27", + "57.157.7.50/31", + "57.157.7.52/30", + "57.157.7.56/29", + "57.157.7.64/26", + "57.157.7.128/25", + "57.157.44.0/27", + "57.157.44.32/28", + "57.157.44.48/29", + "57.157.44.56/30", "64.236.0.0/17", "65.55.144.0/23", "65.55.146.0/24", @@ -117380,6 +122667,8 @@ "70.152.92.0/22", "70.152.96.0/21", "70.152.104.0/23", + "70.152.251.0/24", + "70.152.252.0/23", "72.152.0.0/17", "74.249.128.0/17", "104.43.128.0/17", @@ -117401,6 +122690,7 @@ "135.130.34.128/26", "135.130.70.0/23", "135.130.104.0/23", + "135.130.186.0/23", "135.233.0.0/17", "145.190.0.0/23", "145.190.2.0/24", @@ -117610,8 +122900,16 @@ "2603:1030:9:6f8::/63", "2603:1030:9:6fb::/64", "2603:1030:9:6fc::/62", - "2603:1030:9:700::/59", - "2603:1030:9:720::/63", + "2603:1030:9:700::/57", + "2603:1030:9:780::/59", + "2603:1030:9:7a0::/62", + "2603:1030:9:7a4::/63", + "2603:1030:9:7af::/64", + "2603:1030:9:7b0::/60", + "2603:1030:9:7c0::/58", + "2603:1030:9:800::/59", + "2603:1030:9:820::/60", + "2603:1030:9:830::/62", "2603:1030:a::/47", "2603:1030:d::/48", "2603:1030:10::/47", @@ -117670,7 +122968,7 @@ "name": "AzureCloud.chilec", "id": "AzureCloud.chilec", "properties": { - "changeNumber": 9, + "changeNumber": 10, "region": "chilec", "regionId": 10, "platform": "Azure", @@ -117701,6 +122999,7 @@ "48.212.51.0/24", "48.212.179.0/24", "48.213.51.0/24", + "51.5.72.0/24", "52.101.203.0/24", "52.101.204.0/22", "52.102.150.0/24", @@ -117763,7 +123062,7 @@ "name": "AzureCloud.eastasia", "id": "AzureCloud.eastasia", "properties": { - "changeNumber": 73, + "changeNumber": 78, "region": "eastasia", "regionId": 1, "platform": "Azure", @@ -117791,10 +123090,9 @@ "20.6.128.0/17", "20.20.53.128/26", "20.20.53.192/27", - "20.20.80.0/25", - "20.20.80.128/26", - "20.20.80.192/27", - "20.20.80.224/28", + "20.20.80.0/24", + "20.20.81.0/27", + "20.20.81.32/29", "20.24.64.0/18", "20.24.192.0/18", "20.33.184.0/24", @@ -117849,6 +123147,7 @@ "23.102.200.0/23", "23.102.224.0/19", "40.64.145.192/28", + "40.64.149.128/27", "40.64.164.0/25", "40.77.134.0/24", "40.77.136.16/28", @@ -118004,7 +123303,7 @@ "name": "AzureCloud.eastus2euap", "id": "AzureCloud.eastus2euap", "properties": { - "changeNumber": 119, + "changeNumber": 123, "region": "eastus2euap", "regionId": 49, "platform": "Azure", @@ -118053,7 +123352,6 @@ "20.157.58.0/24", "20.157.149.0/24", "20.168.168.0/21", - "20.187.200.0/21", "20.190.138.0/25", "20.190.149.0/24", "20.201.151.0/24", @@ -118296,6 +123594,15 @@ "57.157.1.160/30", "57.157.2.76/31", "57.157.2.124/31", + "57.157.3.190/31", + "57.157.3.192/29", + "57.157.3.200/31", + "57.157.48.44/31", + "57.157.48.164/30", + "57.157.48.170/31", + "57.157.48.172/31", + "57.157.48.206/31", + "57.157.48.208/31", "68.220.64.0/20", "68.220.80.0/21", "68.220.96.0/19", @@ -118473,12 +123780,22 @@ "2603:1030:401:8b8::/63", "2603:1030:401:90e::/64", "2603:1030:401:926::/64", + "2603:1030:401:9c7::/64", + "2603:1030:401:9c8::/62", + "2603:1030:401:9cc::/64", + "2603:1030:401:9fe::/64", + "2603:1030:401:a3a::/63", + "2603:1030:401:a3d::/64", + "2603:1030:401:a3e::/64", + "2603:1030:401:a4f::/64", + "2603:1030:401:a50::/64", "2603:1030:405::/48", "2603:1030:409::/48", "2603:1030:40a::/64", "2603:1030:40a:3::/64", "2603:1030:40a:4::/62", "2603:1030:40a:8::/63", + "2603:1030:40a:10::/64", "2603:1030:40b::/48", "2603:1030:40d::/60", "2603:1030:40d:4000::/50", @@ -118526,7 +123843,7 @@ "name": "AzureCloud.eastus2", "id": "AzureCloud.eastus2", "properties": { - "changeNumber": 198, + "changeNumber": 205, "region": "eastus2", "regionId": 33, "platform": "Azure", @@ -118672,6 +123989,7 @@ "20.201.165.0/24", "20.201.192.0/21", "20.201.224.0/22", + "20.201.230.0/24", "20.202.21.0/24", "20.202.31.0/24", "20.202.32.0/23", @@ -118702,6 +124020,7 @@ "23.102.208.0/20", "40.64.144.192/29", "40.64.145.0/28", + "40.64.148.32/27", "40.64.165.0/25", "40.65.192.0/18", "40.67.128.0/19", @@ -118871,7 +124190,6 @@ "40.91.13.128/27", "40.91.13.240/28", "40.91.14.0/24", - "40.93.3.0/24", "40.93.12.0/24", "40.97.47.128/25", "40.97.52.0/26", @@ -119096,11 +124414,8 @@ "52.101.36.0/22", "52.101.56.0/22", "52.101.60.0/24", - "52.102.131.0/24", "52.102.138.0/24", - "52.103.5.0/24", "52.103.12.0/24", - "52.103.131.0/24", "52.103.138.0/24", "52.106.3.0/24", "52.106.8.0/24", @@ -119114,6 +124429,9 @@ "52.112.104.0/24", "52.112.108.0/24", "52.112.116.0/24", + "52.112.131.0/24", + "52.112.136.0/24", + "52.112.160.0/24", "52.114.136.0/21", "52.114.180.0/22", "52.114.186.0/23", @@ -119165,20 +124483,23 @@ "52.239.157.192/27", "52.239.172.0/22", "52.239.184.0/25", + "52.239.184.128/27", "52.239.184.160/28", "52.239.184.192/27", "52.239.185.32/27", + "52.239.185.64/27", "52.239.192.0/26", "52.239.192.64/28", "52.239.192.96/27", "52.239.192.160/27", "52.239.192.192/26", "52.239.198.0/25", + "52.239.198.160/27", "52.239.198.192/26", "52.239.206.0/24", "52.239.207.32/28", "52.239.207.64/26", - "52.239.207.128/27", + "52.239.207.128/26", "52.239.222.0/23", "52.242.64.0/18", "52.245.44.0/24", @@ -119242,9 +124563,36 @@ "57.157.2.112/29", "57.157.2.120/30", "57.157.2.126/31", - "57.157.2.128/26", - "57.157.2.192/27", - "57.157.2.224/31", + "57.157.2.128/25", + "57.157.3.0/25", + "57.157.3.128/27", + "57.157.3.160/28", + "57.157.3.176/29", + "57.157.3.184/30", + "57.157.3.188/31", + "57.157.3.202/31", + "57.157.3.204/30", + "57.157.3.208/28", + "57.157.3.224/27", + "57.157.48.0/27", + "57.157.48.32/29", + "57.157.48.40/30", + "57.157.48.46/31", + "57.157.48.48/28", + "57.157.48.64/26", + "57.157.48.128/27", + "57.157.48.160/30", + "57.157.48.168/31", + "57.157.48.174/31", + "57.157.48.176/28", + "57.157.48.192/29", + "57.157.48.200/30", + "57.157.48.204/31", + "57.157.48.210/31", + "57.157.48.212/30", + "57.157.48.216/29", + "57.157.48.224/30", + "57.157.48.228/31", "65.52.108.0/23", "65.52.110.0/24", "65.55.44.16/28", @@ -119320,6 +124668,10 @@ "135.130.10.0/23", "135.130.38.0/23", "135.130.62.0/23", + "135.130.158.0/23", + "135.130.168.0/23", + "135.130.180.0/22", + "135.130.184.0/23", "135.222.128.0/18", "135.224.128.0/17", "135.232.0.0/17", @@ -119328,6 +124680,8 @@ "137.116.64.0/19", "137.116.96.0/22", "145.132.0.0/17", + "145.190.133.0/24", + "151.206.108.0/23", "151.206.130.0/24", "157.55.7.128/26", "157.55.10.192/26", @@ -119662,9 +125016,34 @@ "2603:1030:401:927::/64", "2603:1030:401:928::/61", "2603:1030:401:930::/60", - "2603:1030:401:940::/60", - "2603:1030:401:950::/61", - "2603:1030:401:958::/64", + "2603:1030:401:940::/58", + "2603:1030:401:980::/58", + "2603:1030:401:9c0::/62", + "2603:1030:401:9c4::/63", + "2603:1030:401:9c6::/64", + "2603:1030:401:9cd::/64", + "2603:1030:401:9ce::/63", + "2603:1030:401:9d0::/60", + "2603:1030:401:9e0::/60", + "2603:1030:401:9f0::/61", + "2603:1030:401:9f8::/62", + "2603:1030:401:9fc::/63", + "2603:1030:401:9ff::/64", + "2603:1030:401:a00::/59", + "2603:1030:401:a20::/60", + "2603:1030:401:a30::/61", + "2603:1030:401:a38::/63", + "2603:1030:401:a3c::/64", + "2603:1030:401:a3f::/64", + "2603:1030:401:a40::/61", + "2603:1030:401:a48::/62", + "2603:1030:401:a4c::/63", + "2603:1030:401:a4e::/64", + "2603:1030:401:a51::/64", + "2603:1030:401:a52::/63", + "2603:1030:401:a54::/62", + "2603:1030:401:a58::/63", + "2603:1030:401:a5a::/64", "2603:1030:402::/47", "2603:1030:406::/47", "2603:1030:408::/48", @@ -119723,11 +125102,61 @@ ] } }, + { + "name": "AzureCloud.eastus3", + "id": "AzureCloud.eastus3", + "properties": { + "changeNumber": 1, + "region": "eastus3", + "regionId": 104, + "platform": "Azure", + "systemService": "", + "addressPrefixes": [ + "20.20.54.96/27", + "20.38.53.0/24", + "20.143.108.0/23", + "20.153.48.0/24", + "20.153.58.0/24", + "20.153.148.0/24", + "20.201.169.0/24", + "20.201.170.0/23", + "20.231.150.224/27", + "51.57.128.0/17", + "52.106.121.0/27", + "57.150.249.0/24", + "57.157.24.0/26", + "57.157.24.64/30", + "57.157.24.68/31", + "134.138.0.0/17", + "135.130.0.0/23", + "135.130.2.0/24", + "209.199.33.224/28", + "209.199.35.0/25", + "2603:1030:1401::/48", + "2603:1030:1402::/47", + "2603:1030:1404::/48", + "2603:1030:1405::/48", + "2603:1036:3000:260::/59", + "2603:1037:1:2e0::/59", + "2603:1061:101a::/60", + "2603:1061:101a:10::/61", + "2603:1061:101a:18::/62", + "2603:1061:1312:4000::/54", + "2603:1061:174c::/62", + "2603:1061:2011:47::/64", + "2603:1063:2202:6c::/64" + ], + "networkFeatures": [ + "API", + "NSG" + ] + } + }, { "name": "AzureCloud.usstagee", "id": "AzureCloud.usstagee", "properties": { - "changeNumber": 13, + "changeNumber": 15, "region": "usstagee", "regionId": 68, "platform": "Azure", @@ -119763,15 +125192,13 @@ "40.90.129.0/27", "40.90.129.32/28", "40.90.129.64/27", - "40.97.62.128/25", "40.119.100.0/27", "40.119.100.32/28", "40.119.100.48/30", "40.119.100.84/30", "40.119.100.88/29", "40.119.100.100/30", - "40.119.100.104/31", - "40.119.100.108/30", + "40.119.100.104/29", "40.119.100.112/29", "40.119.100.120/31", "40.119.100.124/30", @@ -119784,7 +125211,6 @@ "40.119.100.190/31", "40.126.63.128/26", "40.126.199.0/24", - "52.106.122.0/27", "52.108.118.0/24", "52.253.164.0/24", "52.253.199.0/24", @@ -119794,8 +125220,7 @@ "2603:1030:100:12::/63", "2603:1030:100:14::/62", "2603:1030:100:1a::/63", - "2603:1030:100:1c::/64", - "2603:1030:100:1e::/63", + "2603:1030:100:1c::/62", "2603:1030:100:20::/62", "2603:1030:100:24::/64", "2603:1030:100:26::/63", @@ -119832,7 +125257,7 @@ "name": "AzureCloud.eastus", "id": "AzureCloud.eastus", "properties": { - "changeNumber": 183, + "changeNumber": 190, "region": "eastus", "regionId": 32, "platform": "Azure", @@ -119847,7 +125272,6 @@ "13.68.128.0/17", "13.72.64.0/18", "13.82.0.0/16", - "13.87.112.0/21", "13.90.0.0/16", "13.92.0.0/16", "13.104.144.128/27", @@ -119872,10 +125296,7 @@ "13.105.106.0/27", "13.105.106.32/28", "13.105.106.64/27", - "20.20.108.0/23", - "20.20.110.0/24", - "20.20.111.0/26", - "20.20.111.64/28", + "20.20.108.0/22", "20.20.131.0/24", "20.20.140.0/24", "20.20.144.0/24", @@ -119988,6 +125409,7 @@ "20.153.88.0/24", "20.153.105.0/24", "20.153.107.0/24", + "20.153.124.0/24", "20.153.135.0/24", "20.153.144.0/24", "20.157.6.0/23", @@ -120053,6 +125475,7 @@ "23.100.16.0/20", "23.101.128.0/20", "40.64.146.80/28", + "40.64.150.160/27", "40.64.164.128/25", "40.71.0.0/16", "40.76.0.0/16", @@ -120060,6 +125483,7 @@ "40.78.224.0/21", "40.79.152.0/21", "40.80.144.0/21", + "40.81.96.2/32", "40.82.24.0/22", "40.82.60.0/22", "40.85.160.0/19", @@ -120103,6 +125527,7 @@ "40.126.23.0/24", "48.194.0.0/17", "48.195.128.0/17", + "48.202.128.0/17", "48.208.3.0/24", "48.208.4.0/22", "48.208.8.0/23", @@ -120128,13 +125553,10 @@ "52.101.20.0/22", "52.101.51.0/24", "52.101.52.0/22", - "52.102.129.0/24", "52.102.137.0/24", "52.102.159.0/24", "52.103.1.0/24", - "52.103.3.0/24", "52.103.11.0/24", - "52.103.129.0/24", "52.103.137.0/24", "52.106.2.0/24", "52.106.7.0/24", @@ -120148,7 +125570,13 @@ "52.112.112.0/24", "52.112.123.0/24", "52.112.127.0/24", + "52.113.8.0/24", "52.113.16.0/20", + "52.113.35.0/24", + "52.113.66.0/24", + "52.113.68.0/24", + "52.113.81.0/24", + "52.113.84.0/24", "52.114.132.0/22", "52.115.54.0/24", "52.115.62.0/23", @@ -120228,6 +125656,9 @@ "57.151.0.0/17", "57.152.0.0/17", "57.154.192.0/18", + "57.157.32.0/24", + "57.157.33.0/26", + "57.157.33.64/29", "65.54.19.128/27", "68.220.88.0/21", "70.152.8.0/24", @@ -120235,6 +125666,7 @@ "70.152.108.0/22", "70.152.112.0/21", "70.152.120.0/24", + "70.152.233.0/24", "72.152.128.0/17", "74.179.128.0/17", "74.235.0.0/16", @@ -120253,6 +125685,9 @@ "135.130.64.0/23", "135.130.108.0/23", "135.130.112.0/23", + "135.130.160.0/23", + "135.130.170.0/23", + "135.130.196.0/23", "135.222.0.0/17", "135.222.192.0/18", "135.234.128.0/17", @@ -120267,6 +125702,7 @@ "145.190.16.0/20", "145.190.32.0/22", "145.190.36.0/24", + "145.190.134.0/24", "151.206.83.0/24", "151.206.84.0/24", "151.206.100.0/23", @@ -120366,7 +125802,7 @@ "name": "AzureCloud.centralfrance", "id": "AzureCloud.centralfrance", "properties": { - "changeNumber": 85, + "changeNumber": 91, "region": "centralfrance", "regionId": 19, "platform": "Azure", @@ -120435,6 +125871,7 @@ "20.216.128.0/18", "20.216.192.0/19", "40.64.145.224/28", + "40.64.149.192/27", "40.64.165.128/25", "40.66.32.0/19", "40.79.128.0/20", @@ -120511,13 +125948,15 @@ "52.239.241.0/24", "52.245.116.0/22", "57.150.40.0/23", - "57.157.36.0/25", - "57.157.36.128/29", - "57.157.36.136/30", + "57.157.36.0/24", + "57.157.37.0/28", + "57.157.37.16/30", + "57.157.37.20/31", "70.37.152.0/24", "70.152.10.0/24", "70.152.46.0/23", "70.152.48.0/24", + "70.152.232.0/24", "98.66.128.0/17", "135.130.46.0/23", "151.206.75.0/24", @@ -120579,7 +126018,7 @@ "name": "AzureCloud.southfrance", "id": "AzureCloud.southfrance", "properties": { - "changeNumber": 35, + "changeNumber": 36, "region": "southfrance", "regionId": 20, "platform": "Azure", @@ -120603,6 +126042,7 @@ "20.190.178.0/24", "20.216.224.0/21", "40.64.147.192/29", + "40.64.153.128/27", "40.64.166.0/25", "40.79.176.0/21", "40.79.223.0/24", @@ -120698,7 +126138,7 @@ "name": "AzureCloud.germanyn", "id": "AzureCloud.germanyn", "properties": { - "changeNumber": 35, + "changeNumber": 37, "region": "germanyn", "regionId": 72, "platform": "Azure", @@ -120716,6 +126156,7 @@ "20.135.56.0/23", "20.150.60.0/24", "20.150.112.0/24", + "20.153.123.0/24", "20.157.229.0/24", "20.170.160.0/19", "20.170.192.0/18", @@ -120723,6 +126164,7 @@ "20.209.206.0/23", "20.218.0.0/18", "40.64.147.200/29", + "40.64.148.0/27", "40.64.182.0/25", "40.90.31.0/27", "40.90.128.240/28", @@ -120806,7 +126248,7 @@ "name": "AzureCloud.germanywc", "id": "AzureCloud.germanywc", "properties": { - "changeNumber": 78, + "changeNumber": 84, "region": "germanywc", "regionId": 71, "platform": "Azure", @@ -120856,6 +126298,7 @@ "20.135.156.0/23", "20.150.54.0/24", "20.150.125.0/24", + "20.153.119.0/24", "20.153.193.0/24", "20.153.194.0/23", "20.153.196.0/22", @@ -120880,6 +126323,7 @@ "20.218.128.0/17", "20.231.139.0/24", "40.64.145.240/28", + "40.64.149.224/27", "40.64.180.128/25", "40.90.129.48/28", "40.90.140.0/27", @@ -120895,6 +126339,8 @@ "40.119.92.0/22", "40.126.62.64/26", "40.126.197.0/24", + "48.201.0.0/16", + "48.203.0.0/17", "48.208.31.0/24", "48.212.28.0/24", "48.212.154.0/24", @@ -120920,11 +126366,14 @@ "52.253.169.0/24", "52.253.170.0/23", "57.150.218.0/23", - "57.157.60.0/30", + "57.157.60.0/25", + "57.157.60.128/28", + "57.157.60.144/30", "70.152.12.0/24", "72.144.0.0/16", "98.67.128.0/17", "131.189.0.0/16", + "135.130.200.0/23", "135.220.0.0/16", "145.190.52.0/23", "145.190.54.0/24", @@ -120981,7 +126430,7 @@ "name": "AzureCloud.indonesiacentral", "id": "AzureCloud.indonesiacentral", "properties": { - "changeNumber": 11, + "changeNumber": 15, "region": "indonesiacentral", "regionId": 6, "platform": "Azure", @@ -120994,11 +126443,10 @@ "20.20.48.0/26", "20.20.48.64/27", "20.20.50.0/24", - "20.20.64.0/25", - "20.20.64.128/26", - "20.20.64.192/27", - "20.20.64.224/29", - "20.20.64.232/30", + "20.20.64.0/24", + "20.20.65.0/26", + "20.20.65.64/28", + "20.20.65.80/30", "20.33.210.0/24", "20.33.219.0/24", "20.38.27.0/24", @@ -121049,11 +126497,9 @@ "2603:1046:140e::/48", "2603:1046:2000:240::/59", "2603:1047:1:220::/59", - "2603:1061:1010::/58", - "2603:1061:1010:40::/59", - "2603:1061:1010:60::/61", - "2603:1061:1010:68::/62", - "2603:1061:1010:6c::/63", + "2603:1061:1010::/57", + "2603:1061:1010:80::/59", + "2603:1061:1010:a0::/63", "2603:1061:1310:5800::/54", "2603:1061:1743::/48", "2603:1061:2000:660::/62", @@ -121084,7 +126530,7 @@ "name": "AzureCloud.israelcentral", "id": "AzureCloud.israelcentral", "properties": { - "changeNumber": 34, + "changeNumber": 38, "region": "israelcentral", "regionId": 85, "platform": "Azure", @@ -121096,11 +126542,7 @@ "13.105.106.208/28", "13.105.107.0/26", "20.20.36.0/24", - "20.20.104.0/26", - "20.20.104.64/28", - "20.20.104.80/29", - "20.20.104.88/30", - "20.20.104.92/31", + "20.20.104.0/25", "20.33.129.0/24", "20.33.169.0/24", "20.38.18.0/24", @@ -121126,6 +126568,7 @@ "20.217.192.0/19", "20.231.132.0/24", "40.64.144.248/29", + "40.64.152.128/27", "40.64.187.128/25", "40.93.79.0/24", "40.93.80.0/24", @@ -121167,9 +126610,8 @@ "2603:1047:1:260::/59", "2603:1061:1007::/57", "2603:1061:1007:80::/59", - "2603:1061:1007:a0::/62", - "2603:1061:1007:a4::/63", - "2603:1061:1007:a6::/64", + "2603:1061:1007:a0::/60", + "2603:1061:1007:b0::/61", "2603:1061:1310:800::/54", "2603:1061:1737::/48", "2603:1061:2000:720::/62", @@ -121214,7 +126656,7 @@ "name": "AzureCloud.israelnorthwest", "id": "AzureCloud.israelnorthwest", "properties": { - "changeNumber": 2, + "changeNumber": 3, "region": "israelnorthwest", "regionId": 86, "platform": "Azure", @@ -121223,8 +126665,9 @@ "20.20.52.192/26", "20.20.53.0/27", "20.20.116.0/26", - "20.20.116.64/30", - "20.20.116.68/31", + "20.20.116.64/27", + "20.20.116.96/29", + "20.20.116.104/31", "20.38.48.0/24", "20.152.58.0/23", "20.153.14.0/24", @@ -121252,11 +126695,10 @@ "2603:1046:a00:1c::/64", "2603:1046:2000:200::/59", "2603:1047:1:280::/59", - "2603:1061:1015::/60", - "2603:1061:1015:10::/62", - "2603:1061:1015:14::/63", - "2603:1061:1015:16::/64", - "2603:1061:1015:18::/62", + "2603:1061:1015::/59", + "2603:1061:1015:20::/61", + "2603:1061:1015:28::/62", + "2603:1061:1015:2c::/64", "2603:1061:1310:5000::/54", "2603:1061:1744::/48", "2603:1061:2010:44::/64", @@ -121273,7 +126715,7 @@ "name": "AzureCloud.italynorth", "id": "AzureCloud.italynorth", "properties": { - "changeNumber": 53, + "changeNumber": 59, "region": "italynorth", "regionId": 93, "platform": "Azure", @@ -121311,15 +126753,19 @@ "20.209.120.0/23", "20.231.131.0/24", "40.64.147.248/29", + "40.64.153.224/27", "40.64.189.128/25", "40.93.87.0/24", "40.93.88.0/24", + "40.98.19.0/25", "40.101.113.0/25", "40.101.113.128/26", "40.107.163.0/24", "40.107.164.0/23", "40.120.132.0/23", - "40.120.134.0/29", + "40.120.134.0/26", + "40.120.134.64/28", + "40.120.134.80/30", "48.212.19.0/24", "48.212.147.0/24", "48.213.19.0/24", @@ -121335,7 +126781,6 @@ "52.108.145.0/24", "52.109.80.0/23", "52.111.193.0/24", - "52.112.51.0/24", "52.112.132.0/24", "52.123.37.0/24", "52.123.208.0/24", @@ -121354,15 +126799,13 @@ "2603:1020:1206::/48", "2603:1026:900:3d::/64", "2603:1026:900:3e::/63", + "2603:1026:900:4a::/64", "2603:1026:2412::/48", "2603:1026:2500:3c::/64", "2603:1026:3000:240::/59", - "2603:1061:100b::/57", - "2603:1061:100b:80::/58", - "2603:1061:100b:c0::/59", - "2603:1061:100b:e0::/60", - "2603:1061:100b:f0::/61", - "2603:1061:100b:f8::/62", + "2603:1061:100b::/56", + "2603:1061:100b:100::/59", + "2603:1061:100b:120::/63", "2603:1061:1311:1c00::/54", "2603:1061:173b::/48", "2603:1061:2000:760::/62", @@ -121401,7 +126844,7 @@ "name": "AzureCloud.japaneast", "id": "AzureCloud.japaneast", "properties": { - "changeNumber": 107, + "changeNumber": 113, "region": "japaneast", "regionId": 24, "platform": "Azure", @@ -121488,6 +126931,7 @@ "23.100.96.0/21", "23.102.64.0/19", "40.64.146.32/28", + "40.64.150.64/27", "40.64.166.128/25", "40.79.184.0/21", "40.79.192.0/21", @@ -121512,8 +126956,11 @@ "40.100.80.0/25", "40.115.128.0/17", "40.120.180.0/23", - "40.120.182.0/29", - "40.120.182.8/30", + "40.120.182.0/25", + "40.120.182.128/26", + "40.120.182.192/28", + "40.120.182.208/30", + "40.120.182.212/31", "40.126.13.128/25", "40.126.38.0/24", "48.208.32.0/24", @@ -121650,7 +127097,7 @@ "name": "AzureCloud.japanwest", "id": "AzureCloud.japanwest", "properties": { - "changeNumber": 76, + "changeNumber": 77, "region": "japanwest", "regionId": 25, "platform": "Azure", @@ -121711,6 +127158,7 @@ "23.98.56.0/24", "23.100.104.0/21", "40.64.146.48/28", + "40.64.150.96/27", "40.64.167.0/25", "40.74.64.0/18", "40.74.128.0/20", @@ -121921,7 +127369,7 @@ "name": "AzureCloud.jioindiawest", "id": "AzureCloud.jioindiawest", "properties": { - "changeNumber": 22, + "changeNumber": 23, "region": "jioindiawest", "regionId": 65, "platform": "Azure", @@ -121950,6 +127398,7 @@ "20.244.128.0/17", "40.64.0.0/18", "40.64.147.48/28", + "40.64.152.96/27", "40.64.185.0/25", "40.100.63.192/26", "40.100.64.0/25", @@ -121989,7 +127438,7 @@ "name": "AzureCloud.koreacentral", "id": "AzureCloud.koreacentral", "properties": { - "changeNumber": 72, + "changeNumber": 73, "region": "koreacentral", "regionId": 26, "platform": "Azure", @@ -122043,6 +127492,7 @@ "20.249.0.0/16", "23.103.64.0/24", "40.64.147.0/28", + "40.64.152.0/27", "40.64.167.128/25", "40.79.221.0/24", "40.80.36.0/22", @@ -122161,7 +127611,7 @@ "name": "AzureCloud.koreasouth", "id": "AzureCloud.koreasouth", "properties": { - "changeNumber": 45, + "changeNumber": 46, "region": "koreasouth", "regionId": 50, "platform": "Azure", @@ -122187,6 +127637,7 @@ "20.202.40.0/24", "20.214.0.0/18", "40.64.147.16/28", + "40.64.152.32/27", "40.64.168.0/25", "40.79.220.0/24", "40.80.32.0/22", @@ -122286,7 +127737,7 @@ "name": "AzureCloud.malaysiasouth", "id": "AzureCloud.malaysiasouth", "properties": { - "changeNumber": 29, + "changeNumber": 30, "region": "malaysiasouth", "regionId": 98, "platform": "Azure", @@ -122320,6 +127771,8 @@ "40.120.128.0/25", "40.120.128.128/27", "40.120.128.160/29", + "40.120.128.168/30", + "40.120.128.172/31", "48.212.53.0/24", "48.212.181.0/24", "48.213.53.0/24", @@ -122360,6 +127813,8 @@ "2603:1061:100a::/58", "2603:1061:100a:40::/61", "2603:1061:100a:48::/62", + "2603:1061:100a:4c::/63", + "2603:1061:100a:4e::/64", "2603:1061:1310:5c00::/54", "2603:1061:1740::/48", "2603:1061:2010:40::/64", @@ -122394,7 +127849,7 @@ "name": "AzureCloud.malaysiawest", "id": "AzureCloud.malaysiawest", "properties": { - "changeNumber": 8, + "changeNumber": 11, "region": "malaysiawest", "regionId": 92, "platform": "Azure", @@ -122427,10 +127882,10 @@ "40.100.5.128/25", "40.100.67.192/26", "40.100.68.0/25", - "40.120.168.0/25", - "40.120.168.128/26", - "40.120.168.192/28", - "40.120.168.208/29", + "40.120.168.0/24", + "40.120.169.0/27", + "40.120.169.32/28", + "40.120.169.48/30", "48.212.54.0/24", "48.212.182.0/24", "48.213.54.0/24", @@ -122462,9 +127917,9 @@ "2603:1046:a00:58::/64", "2603:1046:2000:260::/59", "2603:1047:1::/59", - "2603:1061:100d::/58", - "2603:1061:100d:40::/59", - "2603:1061:100d:60::/62", + "2603:1061:100d::/57", + "2603:1061:100d:80::/60", + "2603:1061:100d:90::/63", "2603:1061:1310:2400::/54", "2603:1061:173a::/48", "2603:1061:2010:3a::/64", @@ -122494,7 +127949,7 @@ "name": "AzureCloud.mexicocentral", "id": "AzureCloud.mexicocentral", "properties": { - "changeNumber": 31, + "changeNumber": 33, "region": "mexicocentral", "regionId": 53, "platform": "Azure", @@ -122521,6 +127976,7 @@ "20.209.222.0/23", "20.231.133.0/24", "40.64.144.184/29", + "40.64.152.160/27", "40.64.187.0/25", "40.93.140.0/24", "40.100.66.64/26", @@ -122529,7 +127985,8 @@ "40.107.2.0/23", "40.120.140.0/24", "40.120.141.0/27", - "40.120.141.32/30", + "40.120.141.32/29", + "40.120.141.40/30", "48.208.36.0/24", "48.212.20.0/24", "48.212.148.0/24", @@ -122570,7 +128027,8 @@ "2603:1046:a00:52::/64", "2603:1061:100c::/57", "2603:1061:100c:80::/61", - "2603:1061:100c:88::/63", + "2603:1061:100c:88::/62", + "2603:1061:100c:8c::/63", "2603:1061:1312:1400::/54", "2603:1061:1736::/48", "2603:1061:2010:36::/64", @@ -122607,7 +128065,7 @@ "name": "AzureCloud.newzealandnorth", "id": "AzureCloud.newzealandnorth", "properties": { - "changeNumber": 20, + "changeNumber": 24, "region": "newzealandnorth", "regionId": 91, "platform": "Azure", @@ -122626,6 +128084,7 @@ "20.209.246.0/23", "20.231.137.0/24", "40.64.144.152/29", + "40.64.153.0/27", "40.64.188.128/25", "40.93.141.0/24", "40.100.26.0/25", @@ -122635,10 +128094,9 @@ "40.107.4.0/23", "40.107.10.0/24", "40.120.172.0/24", - "40.120.173.0/26", - "40.120.173.64/28", - "40.120.173.80/30", - "40.120.173.84/31", + "40.120.173.0/25", + "40.120.173.128/27", + "40.120.173.160/28", "48.212.21.0/24", "48.212.149.0/24", "48.213.21.0/24", @@ -122679,9 +128137,8 @@ "2603:1046:a00:59::/64", "2603:1046:a00:5a::/63", "2603:1061:100e::/57", - "2603:1061:100e:80::/59", - "2603:1061:100e:a0::/63", - "2603:1061:100e:a2::/64", + "2603:1061:100e:80::/58", + "2603:1061:100e:c0::/60", "2603:1061:1314:1000::/54", "2603:1061:1739::/48", "2603:1061:2002:b000::/57", @@ -122719,7 +128176,7 @@ "name": "AzureCloud.northcentralus", "id": "AzureCloud.northcentralus", "properties": { - "changeNumber": 97, + "changeNumber": 103, "region": "northcentralus", "regionId": 34, "platform": "Azure", @@ -122782,6 +128239,8 @@ "20.153.67.0/24", "20.153.75.0/24", "20.153.115.0/24", + "20.153.117.0/24", + "20.153.118.0/24", "20.157.47.0/24", "20.157.99.0/24", "20.157.172.0/24", @@ -122804,6 +128263,7 @@ "23.100.224.0/20", "23.101.160.0/20", "40.64.146.96/28", + "40.64.150.192/27", "40.64.168.128/25", "40.77.131.224/28", "40.77.136.96/28", @@ -122813,10 +128273,10 @@ "40.77.176.0/24", "40.77.182.128/27", "40.77.183.0/24", - "40.77.188.0/22", "40.77.196.0/24", "40.77.198.64/26", "40.77.200.128/25", + "40.77.202.0/24", "40.77.224.0/28", "40.77.224.32/27", "40.77.231.0/24", @@ -122847,10 +128307,10 @@ "40.107.200.0/23", "40.116.0.0/16", "40.120.188.0/23", - "40.120.190.0/25", - "40.120.190.128/27", - "40.120.190.160/28", - "40.120.190.176/30", + "40.120.190.0/24", + "40.120.191.0/27", + "40.120.191.32/28", + "40.120.191.48/31", "40.126.7.0/24", "40.126.28.0/24", "48.208.11.0/24", @@ -122918,6 +128378,8 @@ "65.55.218.0/24", "65.55.219.0/27", "70.152.18.0/24", + "70.152.245.0/24", + "70.152.246.0/24", "104.44.88.128/27", "104.44.91.128/27", "104.44.94.64/28", @@ -122952,6 +128414,8 @@ "135.130.92.0/23", "135.130.134.0/23", "135.130.136.0/23", + "135.130.142.0/23", + "135.130.146.0/23", "135.224.0.0/17", "135.232.128.0/17", "151.206.79.128/25", @@ -122993,6 +128457,7 @@ "209.199.17.80/28", "209.199.17.192/26", "209.199.18.0/26", + "216.220.211.0/24", "2603:1030:600::/46", "2603:1030:604::/47", "2603:1030:607::/48", @@ -123073,7 +128538,7 @@ "name": "AzureCloud.northeurope", "id": "AzureCloud.northeurope", "properties": { - "changeNumber": 129, + "changeNumber": 136, "region": "northeurope", "regionId": 17, "platform": "Azure", @@ -123204,6 +128669,7 @@ "23.101.48.0/20", "23.102.0.0/18", "40.64.144.64/27", + "40.64.147.64/28", "40.64.169.0/25", "40.67.224.0/19", "40.69.0.0/18", @@ -123354,6 +128820,11 @@ "57.150.164.0/23", "57.150.220.0/23", "57.157.28.0/24", + "57.157.29.0/25", + "57.157.29.128/27", + "57.157.29.160/28", + "57.157.29.176/29", + "57.157.29.184/30", "65.52.64.0/20", "65.52.224.0/21", "68.219.0.0/17", @@ -123393,10 +128864,12 @@ "132.164.128.0/17", "134.149.0.0/17", "135.130.68.0/23", + "135.130.164.0/23", "135.236.128.0/17", "137.116.224.0/19", "137.135.128.0/17", "138.91.48.0/20", + "145.190.130.0/24", "151.206.73.0/24", "151.206.74.0/24", "151.206.90.0/23", @@ -123476,7 +128949,7 @@ "name": "AzureCloud.norwaye", "id": "AzureCloud.norwaye", "properties": { - "changeNumber": 52, + "changeNumber": 53, "region": "norwaye", "regionId": 63, "platform": "Azure", @@ -123515,6 +128988,7 @@ "20.231.138.0/24", "20.251.0.0/16", "40.64.146.224/28", + "40.64.151.192/27", "40.64.181.0/25", "40.93.81.0/24", "40.101.25.192/26", @@ -123609,7 +129083,7 @@ "name": "AzureCloud.norwayw", "id": "AzureCloud.norwayw", "properties": { - "changeNumber": 34, + "changeNumber": 35, "region": "norwayw", "regionId": 74, "platform": "Azure", @@ -123630,6 +129104,7 @@ "20.157.3.0/24", "20.190.186.0/24", "40.64.147.216/29", + "40.64.153.192/27", "40.64.181.128/25", "40.93.82.0/24", "40.101.26.128/25", @@ -123714,7 +129189,7 @@ "name": "AzureCloud.polandcentral", "id": "AzureCloud.polandcentral", "properties": { - "changeNumber": 44, + "changeNumber": 48, "region": "polandcentral", "regionId": 52, "platform": "Azure", @@ -123723,7 +129198,7 @@ "13.105.104.80/28", "13.105.104.128/26", "20.20.34.0/24", - "20.20.105.0/25", + "20.20.105.0/24", "20.33.174.0/24", "20.33.204.0/24", "20.38.17.0/24", @@ -123739,12 +129214,15 @@ "20.215.0.0/16", "20.231.130.0/24", "40.64.147.240/29", + "40.64.154.0/27", "40.64.186.128/25", "40.93.83.0/24", + "40.98.19.128/25", "40.101.112.64/26", "40.101.112.128/25", "40.107.154.0/23", "40.107.156.0/24", + "40.123.138.0/30", "40.123.172.0/24", "48.208.38.0/24", "48.212.39.0/24", @@ -123777,12 +129255,15 @@ "2603:1020:1305::/48", "2603:1026:900:3a::/63", "2603:1026:900:3c::/64", + "2603:1026:900:4b::/64", "2603:1026:2413::/48", "2603:1026:3000:260::/59", "2603:1061:1006::/57", - "2603:1061:1006:80::/59", - "2603:1061:1006:a0::/60", - "2603:1061:1006:b0::/61", + "2603:1061:1006:80::/58", + "2603:1061:1006:c0::/59", + "2603:1061:1006:e0::/60", + "2603:1061:1006:f0::/61", + "2603:1061:1006:f8::/63", "2603:1061:1311:3000::/54", "2603:1061:1735::/48", "2603:1061:2000:6a0::/62", @@ -123821,7 +129302,7 @@ "name": "AzureCloud.qatarcentral", "id": "AzureCloud.qatarcentral", "properties": { - "changeNumber": 63, + "changeNumber": 68, "region": "qatarcentral", "regionId": 84, "platform": "Azure", @@ -123863,9 +129344,9 @@ "40.107.12.0/24", "40.107.38.0/24", "40.123.148.0/24", - "40.123.149.0/26", - "40.123.149.64/28", - "40.123.149.80/30", + "40.123.149.0/25", + "40.123.149.128/27", + "40.123.149.160/30", "40.126.63.192/26", "48.212.40.0/24", "48.212.167.0/24", @@ -123885,6 +129366,8 @@ "52.123.150.0/24", "52.253.200.0/23", "52.253.202.0/24", + "70.152.231.0/24", + "145.190.131.0/24", "2603:1040:1001::/48", "2603:1040:1002::/48", "2603:1040:1003::/48", @@ -123897,8 +129380,9 @@ "2603:1046:2000:1e0::/59", "2603:1047:1:1e0::/59", "2603:1061:1004::/57", - "2603:1061:1004:80::/59", - "2603:1061:1004:a0::/63", + "2603:1061:1004:80::/58", + "2603:1061:1004:c0::/61", + "2603:1061:1004:c8::/63", "2603:1061:1310:2800::/54", "2603:1061:1733::/48", "2603:1061:2000:6e0::/62", @@ -123936,7 +129420,7 @@ "name": "AzureCloud.southafricanorth", "id": "AzureCloud.southafricanorth", "properties": { - "changeNumber": 61, + "changeNumber": 63, "region": "southafricanorth", "regionId": 82, "platform": "Azure", @@ -123969,6 +129453,7 @@ "20.150.21.0/24", "20.150.62.0/24", "20.150.101.0/24", + "20.153.121.0/24", "20.157.162.0/24", "20.164.0.0/16", "20.190.190.0/26", @@ -123980,6 +129465,7 @@ "20.209.208.0/23", "20.231.142.0/24", "40.64.146.112/28", + "40.64.150.224/27", "40.64.176.0/25", "40.79.203.0/24", "40.82.20.0/22", @@ -124028,6 +129514,8 @@ "52.239.232.0/25", "57.150.226.0/23", "70.152.22.0/24", + "70.152.247.0/24", + "70.152.254.0/23", "102.37.0.0/20", "102.37.16.0/21", "102.37.24.0/23", @@ -124095,7 +129583,7 @@ "name": "AzureCloud.southafricawest", "id": "AzureCloud.southafricawest", "properties": { - "changeNumber": 38, + "changeNumber": 39, "region": "southafricawest", "regionId": 83, "platform": "Azure", @@ -124114,6 +129602,7 @@ "20.190.189.192/26", "20.201.218.0/24", "40.64.146.128/28", + "40.64.151.0/27", "40.64.175.128/25", "40.78.209.0/24", "40.90.17.0/27", @@ -124202,18 +129691,15 @@ "name": "AzureCloud.southcentralus2", "id": "AzureCloud.southcentralus2", "properties": { - "changeNumber": 7, + "changeNumber": 13, "region": "southcentralus2", "regionId": 102, "platform": "Azure", "systemService": "", "addressPrefixes": [ "20.20.47.128/27", - "20.20.72.0/26", - "20.20.72.64/28", - "20.20.72.80/29", - "20.20.72.88/30", - "20.20.72.92/31", + "20.20.72.0/25", + "20.20.72.128/28", "20.33.220.0/24", "20.38.29.0/24", "20.152.30.0/23", @@ -124240,10 +129726,7 @@ "2603:1030:1105::/48", "2603:1036:3000:220::/59", "2603:1037:1:220::/59", - "2603:1061:1012::/59", - "2603:1061:1012:20::/62", - "2603:1061:1012:24::/63", - "2603:1061:1012:26::/64", + "2603:1061:1012::/58", "2603:1061:1312:4c00::/54", "2603:1061:1747::/63", "2603:1063:2200:3c::/64" @@ -124258,7 +129741,7 @@ "name": "AzureCloud.usstagec", "id": "AzureCloud.usstagec", "properties": { - "changeNumber": 25, + "changeNumber": 26, "region": "usstagec", "regionId": 69, "platform": "Azure", @@ -124297,7 +129780,6 @@ "40.90.16.32/27", "40.90.128.32/28", "40.90.151.192/27", - "40.97.63.0/26", "40.123.164.138/31", "40.123.164.140/30", "40.123.165.0/30", @@ -124358,7 +129840,7 @@ "name": "AzureCloud.southcentralus", "id": "AzureCloud.southcentralus", "properties": { - "changeNumber": 170, + "changeNumber": 177, "region": "southcentralus", "regionId": 35, "platform": "Azure", @@ -124397,6 +129879,11 @@ "20.20.102.80/29", "20.20.102.90/31", "20.20.102.92/31", + "20.20.102.96/27", + "20.20.102.128/25", + "20.20.103.0/28", + "20.20.103.16/29", + "20.20.103.24/30", "20.20.138.0/24", "20.33.4.0/24", "20.33.42.0/24", @@ -124451,6 +129938,7 @@ "20.153.69.0/25", "20.153.79.0/24", "20.153.95.0/24", + "20.153.125.0/24", "20.153.156.0/24", "20.153.206.0/23", "20.153.208.0/22", @@ -124497,6 +129985,7 @@ "23.101.176.0/20", "23.102.128.0/18", "40.64.144.0/27", + "40.64.145.48/28", "40.64.169.128/25", "40.74.160.0/19", "40.74.192.0/18", @@ -124714,6 +130203,8 @@ "70.152.24.0/24", "70.152.55.0/24", "70.152.56.0/23", + "70.152.243.0/24", + "70.152.244.0/24", "72.147.128.0/17", "104.44.89.0/27", "104.44.89.64/27", @@ -124732,6 +130223,7 @@ "135.130.24.0/24", "135.130.74.0/23", "135.130.114.0/23", + "135.130.172.0/23", "135.233.128.0/17", "145.132.128.0/17", "145.190.43.0/24", @@ -124760,6 +130252,7 @@ "209.199.36.0/28", "209.199.36.128/25", "209.199.37.0/25", + "216.220.212.0/24", "2603:1030:800::/48", "2603:1030:802::/47", "2603:1030:804::/58", @@ -124847,6 +130340,16 @@ "2603:1030:804:51c::/63", "2603:1030:804:51f::/64", "2603:1030:804:520::/64", + "2603:1030:804:522::/63", + "2603:1030:804:524::/62", + "2603:1030:804:528::/61", + "2603:1030:804:530::/60", + "2603:1030:804:540::/59", + "2603:1030:804:560::/60", + "2603:1030:804:570::/61", + "2603:1030:804:578::/62", + "2603:1030:804:57c::/63", + "2603:1030:804:57e::/64", "2603:1030:805::/48", "2603:1030:806::/48", "2603:1030:807::/48", @@ -124913,7 +130416,7 @@ "name": "AzureCloud.southindia", "id": "AzureCloud.southindia", "properties": { - "changeNumber": 51, + "changeNumber": 53, "region": "southindia", "regionId": 22, "platform": "Azure", @@ -124950,6 +130453,7 @@ "20.235.128.0/18", "40.64.144.208/29", "40.64.145.32/28", + "40.64.148.96/27", "40.64.170.128/25", "40.78.192.0/21", "40.79.213.0/24", @@ -125015,6 +130519,7 @@ "2603:1040:c06::/47", "2603:1040:c08::/48", "2603:1046:a00:1a::/63", + "2603:1046:a00:38::/64", "2603:1046:1407::/48", "2603:1046:1500:4::/64", "2603:1046:2000:60::/59", @@ -125060,7 +130565,7 @@ "name": "AzureCloud.southeastasia", "id": "AzureCloud.southeastasia", "properties": { - "changeNumber": 96, + "changeNumber": 98, "region": "southeastasia", "regionId": 2, "platform": "Azure", @@ -125159,6 +130664,7 @@ "23.101.16.0/20", "40.64.144.216/29", "40.64.145.144/28", + "40.64.149.32/27", "40.64.170.0/25", "40.65.128.0/18", "40.78.223.0/24", @@ -125257,6 +130763,7 @@ "104.215.128.0/17", "111.221.80.0/20", "111.221.96.0/20", + "135.130.202.0/23", "135.171.0.0/16", "137.116.128.0/19", "138.91.32.0/20", @@ -125334,7 +130841,7 @@ "name": "AzureCloud.southeastus3", "id": "AzureCloud.southeastus3", "properties": { - "changeNumber": 2, + "changeNumber": 5, "region": "southeastus3", "regionId": 105, "platform": "Azure", @@ -125353,11 +130860,12 @@ "57.150.186.0/23", "57.150.214.0/23", "57.157.16.0/25", - "57.157.16.128/29", - "57.157.16.136/30", - "57.157.16.140/31", + "57.157.16.128/27", + "57.157.16.160/28", + "57.157.16.176/29", "74.7.0.0/17", "135.130.124.0/23", + "135.130.144.0/23", "209.199.31.176/28", "209.199.33.64/26", "209.199.33.128/26", @@ -125367,12 +130875,9 @@ "2603:1030:1305::/48", "2603:1036:3000:240::/59", "2603:1037:1:280::/59", - "2603:1061:1018::/59", - "2603:1061:1018:20::/60", - "2603:1061:1018:30::/61", - "2603:1061:1018:38::/62", - "2603:1061:1018:3c::/63", - "2603:1061:1018:3e::/64", + "2603:1061:1018::/58", + "2603:1061:1018:40::/60", + "2603:1061:1018:50::/62", "2603:1061:1312:5800::/54", "2603:1061:174a::/63", "2603:1063:2206:4c::/64" @@ -125442,7 +130947,7 @@ "name": "AzureCloud.spaincentral", "id": "AzureCloud.spaincentral", "properties": { - "changeNumber": 34, + "changeNumber": 39, "region": "spaincentral", "regionId": 88, "platform": "Azure", @@ -125465,14 +130970,16 @@ "20.209.228.0/23", "20.231.135.0/24", "40.64.144.176/29", + "40.64.152.192/27", "40.64.188.0/25", "40.93.66.0/24", "40.102.17.128/25", "40.102.18.0/26", "40.120.144.0/24", "40.120.145.0/25", - "40.120.145.128/28", - "40.120.145.144/29", + "40.120.145.128/27", + "40.120.145.160/28", + "40.120.145.176/31", "48.208.40.0/24", "48.212.43.0/24", "48.212.170.0/24", @@ -125516,7 +131023,8 @@ "2603:1061:1008:a0::/60", "2603:1061:1008:b0::/61", "2603:1061:1008:b8::/62", - "2603:1061:1008:c0::/62", + "2603:1061:1008:c0::/60", + "2603:1061:1008:d0::/64", "2603:1061:1311:3400::/54", "2603:1061:1738::/48", "2603:1061:2000:5e0::/62", @@ -125554,7 +131062,7 @@ "name": "AzureCloud.swedencentral", "id": "AzureCloud.swedencentral", "properties": { - "changeNumber": 56, + "changeNumber": 62, "region": "swedencentral", "regionId": 76, "platform": "Azure", @@ -125605,6 +131113,7 @@ "20.240.64.0/19", "20.240.128.0/17", "40.64.144.136/29", + "40.64.153.64/27", "40.64.183.0/25", "40.93.214.0/24", "40.98.16.0/24", @@ -125648,6 +131157,8 @@ "52.112.139.0/24", "52.112.140.0/22", "52.112.164.0/22", + "52.112.195.0/24", + "52.112.208.0/24", "52.112.210.0/24", "52.112.224.0/22", "52.112.234.0/23", @@ -125673,17 +131184,22 @@ "52.253.187.0/24", "52.253.188.0/23", "57.150.58.0/23", - "57.157.68.0/28", - "57.157.68.16/29", - "57.157.68.24/30", + "57.157.68.0/25", + "57.157.68.128/27", + "57.157.68.160/28", + "57.157.68.176/30", "70.152.27.0/24", "70.152.61.0/24", "70.152.62.0/23", + "70.152.240.0/23", + "70.152.242.0/24", "74.241.128.0/17", "132.245.230.0/23", "135.116.0.0/16", "135.130.110.0/23", "135.225.0.0/16", + "145.190.140.0/24", + "151.206.112.0/24", "151.206.128.0/24", "172.160.0.0/16", "2603:1020:1000::/47", @@ -125737,7 +131253,7 @@ "name": "AzureCloud.swedensouth", "id": "AzureCloud.swedensouth", "properties": { - "changeNumber": 28, + "changeNumber": 29, "region": "swedensouth", "regionId": 75, "platform": "Azure", @@ -125757,6 +131273,7 @@ "20.157.196.0/24", "20.190.182.0/24", "40.64.144.128/29", + "40.64.153.96/27", "40.64.182.128/25", "40.93.213.0/24", "40.101.0.0/24", @@ -125836,7 +131353,7 @@ "name": "AzureCloud.switzerlandn", "id": "AzureCloud.switzerlandn", "properties": { - "changeNumber": 63, + "changeNumber": 65, "region": "switzerlandn", "regionId": 66, "platform": "Azure", @@ -125878,10 +131395,12 @@ "20.231.140.0/24", "20.250.0.0/16", "40.64.147.32/28", + "40.64.152.64/27", "40.64.180.0/25", "40.90.30.128/27", "40.90.128.208/28", "40.93.85.0/24", + "40.98.20.128/25", "40.101.3.128/25", "40.101.22.192/26", "40.101.23.0/25", @@ -125935,10 +131454,13 @@ "2603:1020:a03::/48", "2603:1020:a04::/47", "2603:1020:a06::/48", + "2603:1026:800::/63", + "2603:1026:800:2::/64", "2603:1026:900:a::/63", "2603:1026:900:c::/64", "2603:1026:900:24::/63", "2603:1026:900:26::/64", + "2603:1026:900:48::/64", "2603:1026:240b::/48", "2603:1026:2500:c::/64", "2603:1026:3000:60::/59", @@ -125981,7 +131503,7 @@ "name": "AzureCloud.switzerlandw", "id": "AzureCloud.switzerlandw", "properties": { - "changeNumber": 35, + "changeNumber": 37, "region": "switzerlandw", "regionId": 67, "platform": "Azure", @@ -126003,10 +131525,12 @@ "20.199.192.0/18", "20.208.192.0/18", "40.64.147.208/29", + "40.64.153.160/27", "40.64.179.0/25", "40.90.19.32/27", "40.90.128.192/28", "40.93.86.0/24", + "40.98.20.0/25", "40.101.23.128/26", "40.107.170.0/23", "40.107.172.0/24", @@ -126049,6 +131573,7 @@ "2603:1020:b04::/47", "2603:1020:b06::/48", "2603:1026:900:27::/64", + "2603:1026:900:2b::/64", "2603:1026:240c::/48", "2603:1026:2500:20::/64", "2603:1026:3000:120::/59", @@ -126090,7 +131615,7 @@ "name": "AzureCloud.taiwannorth", "id": "AzureCloud.taiwannorth", "properties": { - "changeNumber": 18, + "changeNumber": 20, "region": "taiwannorth", "regionId": 8, "platform": "Azure", @@ -126115,6 +131640,7 @@ "20.231.134.0/25", "20.231.151.64/26", "40.64.144.160/28", + "40.64.152.224/27", "40.64.186.0/25", "40.93.70.0/24", "40.100.67.0/25", @@ -126143,6 +131669,7 @@ "52.123.205.0/24", "52.253.219.0/24", "52.253.220.0/23", + "70.152.230.0/24", "70.157.0.0/16", "135.130.35.0/24", "135.130.41.0/24", @@ -126197,7 +131724,7 @@ "name": "AzureCloud.taiwannorthwest", "id": "AzureCloud.taiwannorthwest", "properties": { - "changeNumber": 18, + "changeNumber": 20, "region": "taiwannorthwest", "regionId": 96, "platform": "Azure", @@ -126217,6 +131744,7 @@ "20.209.144.0/23", "20.231.134.128/25", "40.64.144.144/29", + "40.64.153.32/27", "40.64.191.0/25", "40.93.71.0/24", "40.93.72.0/24", @@ -126246,6 +131774,7 @@ "52.113.192.0/24", "52.123.60.0/24", "52.123.206.0/24", + "70.152.229.0/24", "167.105.128.0/17", "2603:1040:1201::/48", "2603:1040:1202::/47", @@ -126297,7 +131826,7 @@ "name": "AzureCloud.uaecentral", "id": "AzureCloud.uaecentral", "properties": { - "changeNumber": 40, + "changeNumber": 41, "region": "uaecentral", "regionId": 61, "platform": "Azure", @@ -126324,6 +131853,7 @@ "20.209.219.0/24", "20.216.64.0/18", "40.64.146.144/28", + "40.64.151.32/27", "40.64.178.0/25", "40.90.16.64/27", "40.90.128.48/28", @@ -126415,7 +131945,7 @@ "name": "AzureCloud.uaenorth", "id": "AzureCloud.uaenorth", "properties": { - "changeNumber": 68, + "changeNumber": 70, "region": "uaenorth", "regionId": 60, "platform": "Azure", @@ -126468,6 +131998,7 @@ "20.231.141.0/24", "20.233.0.0/16", "40.64.145.112/28", + "40.64.149.0/27", "40.64.177.0/25", "40.90.16.96/27", "40.90.128.64/28", @@ -126515,6 +132046,7 @@ "57.150.230.0/23", "65.52.248.0/21", "70.152.32.0/24", + "70.152.228.0/24", "74.162.0.0/16", "74.243.192.0/18", "151.206.69.0/25", @@ -126571,7 +132103,7 @@ "name": "AzureCloud.uksouth", "id": "AzureCloud.uksouth", "properties": { - "changeNumber": 95, + "changeNumber": 100, "region": "uksouth", "regionId": 27, "platform": "Azure", @@ -126660,6 +132192,7 @@ "20.254.0.0/17", "40.64.144.200/29", "40.64.145.16/28", + "40.64.148.64/27", "40.64.171.0/25", "40.79.215.0/24", "40.80.0.0/22", @@ -126742,7 +132275,12 @@ "52.245.64.0/22", "52.253.162.0/23", "57.150.236.0/23", + "57.157.40.0/28", + "57.157.40.16/29", + "57.157.40.24/30", "70.152.33.0/24", + "70.152.237.0/24", + "70.152.238.0/23", "74.177.0.0/16", "85.210.0.0/16", "104.44.89.224/27", @@ -126750,6 +132288,7 @@ "131.145.128.0/18", "135.130.130.0/23", "145.133.0.0/17", + "151.206.111.0/24", "151.206.136.0/24", "172.165.0.0/16", "172.166.0.0/15", @@ -126806,7 +132345,7 @@ "name": "AzureCloud.ukwest", "id": "AzureCloud.ukwest", "properties": { - "changeNumber": 57, + "changeNumber": 59, "region": "ukwest", "regionId": 28, "platform": "Azure", @@ -126842,6 +132381,7 @@ "20.254.128.0/17", "40.64.144.240/29", "40.64.145.96/28", + "40.64.148.224/27", "40.64.171.128/25", "40.79.218.0/24", "40.81.112.0/20", @@ -126902,6 +132442,7 @@ "52.239.240.0/24", "70.37.153.0/24", "70.152.34.0/24", + "70.152.227.0/24", "104.44.90.0/27", "172.186.0.0/16", "172.187.0.0/18", @@ -126954,7 +132495,7 @@ "name": "AzureCloud.westcentralus", "id": "AzureCloud.westcentralus", "properties": { - "changeNumber": 67, + "changeNumber": 71, "region": "westcentralus", "regionId": 36, "platform": "Azure", @@ -127016,6 +132557,7 @@ "20.201.207.0/24", "20.209.224.0/23", "40.64.146.160/28", + "40.64.151.64/27", "40.64.172.0/25", "40.67.120.0/21", "40.77.128.0/25", @@ -127106,6 +132648,8 @@ "131.253.40.160/28", "135.130.60.0/23", "135.130.116.0/23", + "145.190.137.0/24", + "151.206.110.0/24", "151.206.133.0/24", "157.55.12.128/26", "157.55.103.128/25", @@ -127119,8 +132663,7 @@ "2603:1030:b06::/48", "2603:1030:b07::/56", "2603:1030:b08::/48", - "2603:1030:b40::/48", - "2603:1030:b80::/56", + "2603:1030:b80::/48", "2603:1036:903:9::/64", "2603:1036:903:40::/63", "2603:1036:903:42::/64", @@ -127170,7 +132713,7 @@ "name": "AzureCloud.westeurope", "id": "AzureCloud.westeurope", "properties": { - "changeNumber": 166, + "changeNumber": 173, "region": "westeurope", "regionId": 18, "platform": "Azure", @@ -127359,6 +132902,7 @@ "23.100.0.0/20", "23.101.64.0/20", "40.64.144.32/27", + "40.64.145.128/28", "40.64.172.128/25", "40.67.192.0/19", "40.68.0.0/16", @@ -127410,6 +132954,7 @@ "40.123.180.0/22", "40.126.9.0/24", "40.126.32.0/24", + "48.199.0.0/16", "48.208.72.0/24", "48.208.216.0/24", "48.209.0.0/17", @@ -127528,9 +133073,10 @@ "57.150.224.0/23", "57.153.0.0/16", "57.157.12.0/23", - "57.157.14.0/27", - "57.157.14.32/29", - "57.157.14.40/31", + "57.157.14.0/24", + "57.157.15.0/25", + "57.157.15.128/27", + "57.157.15.160/29", "65.52.128.0/19", "68.219.160.0/19", "70.152.36.0/24", @@ -127565,10 +133111,14 @@ "132.220.0.0/16", "134.149.128.0/17", "135.130.102.0/23", + "135.130.162.0/23", "135.236.0.0/17", "137.116.192.0/19", "137.117.128.0/17", "145.190.59.0/24", + "145.190.66.0/23", + "145.190.68.0/24", + "145.190.135.0/24", "151.206.71.0/24", "151.206.72.0/24", "151.206.92.0/23", @@ -127646,7 +133196,7 @@ "name": "AzureCloud.westindia", "id": "AzureCloud.westindia", "properties": { - "changeNumber": 41, + "changeNumber": 42, "region": "westindia", "regionId": 23, "platform": "Azure", @@ -127671,6 +133221,7 @@ "20.192.64.0/19", "20.207.128.0/18", "40.64.146.0/28", + "40.64.150.0/27", "40.64.173.0/25", "40.79.219.0/24", "40.81.80.0/20", @@ -127765,7 +133316,7 @@ "name": "AzureCloud.westus2", "id": "AzureCloud.westus2", "properties": { - "changeNumber": 117, + "changeNumber": 124, "region": "westus2", "regionId": 38, "platform": "Azure", @@ -127800,10 +133351,7 @@ "13.105.107.192/27", "20.3.0.0/16", "20.9.128.0/17", - "20.20.76.0/23", - "20.20.78.0/25", - "20.20.78.128/26", - "20.20.78.192/28", + "20.20.76.0/22", "20.29.128.0/17", "20.33.46.0/24", "20.33.160.0/24", @@ -127863,6 +133411,7 @@ "20.153.61.0/24", "20.153.89.0/24", "20.153.99.0/24", + "20.153.127.0/24", "20.153.136.0/24", "20.153.157.0/24", "20.153.159.0/24", @@ -127897,6 +133446,7 @@ "40.64.64.0/18", "40.64.128.0/21", "40.64.145.160/28", + "40.64.149.64/27", "40.64.174.0/25", "40.65.64.0/18", "40.77.136.0/28", @@ -127913,10 +133463,10 @@ "40.77.182.64/27", "40.77.185.128/25", "40.77.186.0/23", + "40.77.188.0/22", "40.77.198.128/25", "40.77.199.128/26", "40.77.200.0/25", - "40.77.202.0/24", "40.77.224.96/27", "40.77.230.0/24", "40.77.232.128/25", @@ -127964,6 +133514,8 @@ "40.126.5.0/24", "40.126.26.0/24", "48.192.0.0/17", + "48.200.0.0/17", + "48.202.0.0/17", "48.208.73.0/24", "48.208.74.0/23", "48.208.76.0/24", @@ -127997,6 +133549,23 @@ "52.112.109.0/24", "52.112.115.0/24", "52.112.128.0/24", + "52.112.130.0/24", + "52.112.135.0/24", + "52.112.137.0/24", + "52.112.161.0/24", + "52.112.163.0/24", + "52.112.193.0/24", + "52.112.196.0/24", + "52.112.209.0/24", + "52.112.228.0/24", + "52.113.0.0/24", + "52.113.5.0/24", + "52.113.7.0/24", + "52.113.32.0/24", + "52.113.34.0/24", + "52.113.64.0/24", + "52.113.67.0/24", + "52.113.80.0/24", "52.113.135.0/24", "52.114.148.0/22", "52.115.55.0/24", @@ -128035,6 +133604,10 @@ "57.150.118.0/23", "57.150.148.0/23", "57.150.234.0/23", + "57.157.72.0/28", + "57.157.72.16/29", + "57.157.72.24/30", + "57.157.72.28/31", "65.52.111.0/24", "65.55.32.128/28", "65.55.32.193/32", @@ -128090,12 +133663,14 @@ "135.130.48.0/23", "135.130.78.0/23", "135.130.120.0/23", + "135.130.166.0/23", "137.116.176.0/21", "145.190.37.0/24", "145.190.38.0/23", "145.190.40.0/23", "145.190.42.0/24", "151.206.79.0/25", + "151.206.106.0/24", "151.206.135.0/24", "157.55.2.128/26", "157.55.12.64/26", @@ -128182,7 +133757,7 @@ "name": "AzureCloud.westus3", "id": "AzureCloud.westus3", "properties": { - "changeNumber": 80, + "changeNumber": 86, "region": "westus3", "regionId": 79, "platform": "Azure", @@ -128231,6 +133806,7 @@ "20.135.224.0/22", "20.143.0.0/24", "20.143.90.0/23", + "20.143.146.0/23", "20.150.30.0/24", "20.150.128.0/17", "20.152.74.0/23", @@ -128266,6 +133842,7 @@ "20.209.244.0/23", "20.231.151.128/27", "40.64.146.192/28", + "40.64.151.128/27", "40.64.184.0/25", "40.79.204.160/27", "40.79.205.64/28", @@ -128317,11 +133894,11 @@ "57.150.188.0/23", "57.150.252.0/23", "57.154.0.0/17", - "57.157.8.0/23", - "57.157.10.0/26", - "57.157.10.64/28", - "57.157.10.80/29", - "57.157.10.88/30", + "57.157.8.0/22", + "57.157.128.0/25", + "57.157.128.128/28", + "57.157.128.144/30", + "57.157.128.148/31", "70.152.40.0/24", "70.152.67.0/24", "70.152.68.0/23", @@ -128390,7 +133967,7 @@ "name": "AzureCloud.westus", "id": "AzureCloud.westus", "properties": { - "changeNumber": 121, + "changeNumber": 128, "region": "westus", "regionId": 37, "platform": "Azure", @@ -128419,8 +133996,10 @@ "13.105.96.96/28", "13.105.97.0/27", "20.20.92.0/23", - "20.20.94.0/27", - "20.20.94.32/28", + "20.20.94.0/25", + "20.20.94.128/26", + "20.20.94.192/28", + "20.20.94.208/30", "20.20.137.0/24", "20.33.105.0/24", "20.33.135.0/24", @@ -128511,6 +134090,7 @@ "23.100.32.0/20", "23.101.192.0/20", "40.64.146.176/28", + "40.64.151.96/27", "40.64.173.128/25", "40.65.0.0/18", "40.75.128.0/17", @@ -128674,6 +134254,7 @@ "104.210.32.0/19", "135.130.26.0/23", "135.130.66.0/23", + "135.130.176.0/23", "137.116.184.0/21", "137.117.0.0/19", "137.135.0.0/18", @@ -128762,7 +134343,7 @@ "name": "AzureCloud", "id": "AzureCloud", "properties": { - "changeNumber": 271, + "changeNumber": 278, "region": "", "regionId": 0, "platform": "Azure", @@ -128994,7 +134575,6 @@ "13.87.33.0/24", "13.87.64.0/19", "13.87.96.0/20", - "13.87.112.0/21", "13.87.128.0/17", "13.88.0.0/17", "13.88.128.0/18", @@ -129440,40 +135020,42 @@ "20.20.55.64/26", "20.20.55.128/27", "20.20.55.160/27", - "20.20.64.0/25", - "20.20.64.128/26", - "20.20.64.192/27", - "20.20.64.224/29", - "20.20.64.232/30", + "20.20.55.192/26", + "20.20.56.0/27", + "20.20.56.32/27", + "20.20.56.64/26", + "20.20.56.128/26", + "20.20.56.192/27", + "20.20.64.0/24", + "20.20.65.0/26", + "20.20.65.64/28", + "20.20.65.80/30", "20.20.68.0/26", "20.20.68.64/29", "20.20.68.72/31", - "20.20.72.0/26", - "20.20.72.64/28", - "20.20.72.80/29", - "20.20.72.88/30", - "20.20.72.92/31", - "20.20.76.0/23", - "20.20.78.0/25", - "20.20.78.128/26", - "20.20.78.192/28", - "20.20.80.0/25", - "20.20.80.128/26", - "20.20.80.192/27", - "20.20.80.224/28", - "20.20.84.0/25", - "20.20.84.128/26", - "20.20.84.192/28", - "20.20.84.208/29", + "20.20.72.0/25", + "20.20.72.128/28", + "20.20.76.0/22", + "20.20.80.0/24", + "20.20.81.0/27", + "20.20.81.32/29", + "20.20.84.0/24", + "20.20.85.0/27", + "20.20.85.32/29", + "20.20.85.40/30", + "20.20.85.44/31", "20.20.88.0/24", "20.20.89.0/27", "20.20.89.32/28", "20.20.92.0/23", - "20.20.94.0/27", - "20.20.94.32/28", - "20.20.96.0/26", - "20.20.96.64/27", - "20.20.96.96/30", + "20.20.94.0/25", + "20.20.94.128/26", + "20.20.94.192/28", + "20.20.94.208/30", + "20.20.96.0/24", + "20.20.97.0/27", + "20.20.97.32/28", + "20.20.97.48/30", "20.20.100.0/24", "20.20.101.0/25", "20.20.101.128/29", @@ -129489,26 +135071,24 @@ "20.20.102.90/31", "20.20.102.92/31", "20.20.102.94/31", - "20.20.104.0/26", - "20.20.104.64/28", - "20.20.104.80/29", - "20.20.104.88/30", - "20.20.104.92/31", - "20.20.105.0/25", - "20.20.108.0/23", - "20.20.110.0/24", - "20.20.111.0/26", - "20.20.111.64/28", + "20.20.102.96/27", + "20.20.102.128/25", + "20.20.103.0/28", + "20.20.103.16/29", + "20.20.103.24/30", + "20.20.104.0/25", + "20.20.105.0/24", + "20.20.108.0/22", "20.20.112.0/26", - "20.20.112.64/30", - "20.20.112.68/31", + "20.20.112.64/27", + "20.20.112.96/29", + "20.20.112.104/31", "20.20.116.0/26", - "20.20.116.64/30", - "20.20.116.68/31", + "20.20.116.64/27", + "20.20.116.96/29", + "20.20.116.104/31", "20.20.120.0/25", - "20.20.120.128/27", - "20.20.120.160/28", - "20.20.120.176/29", + "20.20.120.128/26", "20.20.124.0/25", "20.20.124.128/28", "20.20.124.144/29", @@ -129835,6 +135415,7 @@ "20.38.55.0/24", "20.38.56.0/24", "20.38.57.0/24", + "20.38.58.0/24", "20.38.64.0/19", "20.38.96.0/23", "20.38.98.0/24", @@ -130720,6 +136301,14 @@ "20.143.138.0/23", "20.143.140.0/23", "20.143.142.0/23", + "20.143.144.0/23", + "20.143.146.0/23", + "20.143.148.0/22", + "20.143.152.0/22", + "20.143.156.0/22", + "20.143.160.0/23", + "20.143.162.0/23", + "20.143.164.0/23", "20.150.0.0/24", "20.150.1.0/25", "20.150.1.128/25", @@ -131017,6 +136606,17 @@ "20.153.114.0/24", "20.153.115.0/24", "20.153.116.0/24", + "20.153.117.0/24", + "20.153.118.0/24", + "20.153.119.0/24", + "20.153.120.0/24", + "20.153.121.0/24", + "20.153.122.0/24", + "20.153.123.0/24", + "20.153.124.0/24", + "20.153.125.0/24", + "20.153.126.0/24", + "20.153.127.0/24", "20.153.128.0/23", "20.153.130.0/24", "20.153.131.0/24", @@ -131360,7 +136960,6 @@ "20.187.64.0/18", "20.187.128.0/18", "20.187.192.0/21", - "20.187.200.0/21", "20.187.224.0/19", "20.188.0.0/19", "20.188.32.0/19", @@ -131385,7 +136984,6 @@ "20.190.136.0/24", "20.190.137.0/24", "20.190.138.0/25", - "20.190.138.128/25", "20.190.139.0/25", "20.190.139.128/25", "20.190.140.0/25", @@ -131563,6 +137161,13 @@ "20.201.179.0/24", "20.201.180.0/24", "20.201.181.0/24", + "20.201.182.0/24", + "20.201.183.0/24", + "20.201.184.0/24", + "20.201.185.0/24", + "20.201.186.0/24", + "20.201.187.0/24", + "20.201.188.0/24", "20.201.192.0/21", "20.201.200.0/22", "20.201.204.0/24", @@ -131586,6 +137191,7 @@ "20.201.223.0/24", "20.201.224.0/22", "20.201.228.0/23", + "20.201.230.0/24", "20.201.231.0/24", "20.202.0.0/24", "20.202.1.0/24", @@ -132034,6 +137640,12 @@ "20.231.151.160/27", "20.231.151.192/26", "20.231.152.0/27", + "20.231.152.32/27", + "20.231.152.64/26", + "20.231.152.128/26", + "20.231.152.192/27", + "20.231.152.224/27", + "20.231.153.0/26", "20.231.192.0/18", "20.232.0.0/16", "20.233.0.0/16", @@ -132173,10 +137785,12 @@ "40.64.145.0/28", "40.64.145.16/28", "40.64.145.32/28", + "40.64.145.48/28", "40.64.145.64/28", "40.64.145.80/28", "40.64.145.96/28", "40.64.145.112/28", + "40.64.145.128/28", "40.64.145.144/28", "40.64.145.160/28", "40.64.145.176/28", @@ -132204,6 +137818,7 @@ "40.64.147.16/28", "40.64.147.32/28", "40.64.147.48/28", + "40.64.147.64/28", "40.64.147.160/30", "40.64.147.192/29", "40.64.147.200/29", @@ -132211,6 +137826,54 @@ "40.64.147.216/29", "40.64.147.240/29", "40.64.147.248/29", + "40.64.148.0/27", + "40.64.148.32/27", + "40.64.148.64/27", + "40.64.148.96/27", + "40.64.148.128/27", + "40.64.148.192/27", + "40.64.148.224/27", + "40.64.149.0/27", + "40.64.149.32/27", + "40.64.149.64/27", + "40.64.149.96/27", + "40.64.149.128/27", + "40.64.149.160/27", + "40.64.149.192/27", + "40.64.149.224/27", + "40.64.150.0/27", + "40.64.150.32/27", + "40.64.150.64/27", + "40.64.150.96/27", + "40.64.150.128/27", + "40.64.150.160/27", + "40.64.150.192/27", + "40.64.150.224/27", + "40.64.151.0/27", + "40.64.151.32/27", + "40.64.151.64/27", + "40.64.151.96/27", + "40.64.151.128/27", + "40.64.151.160/27", + "40.64.151.192/27", + "40.64.151.224/27", + "40.64.152.0/27", + "40.64.152.32/27", + "40.64.152.64/27", + "40.64.152.96/27", + "40.64.152.128/27", + "40.64.152.160/27", + "40.64.152.192/27", + "40.64.152.224/27", + "40.64.153.0/27", + "40.64.153.32/27", + "40.64.153.64/27", + "40.64.153.96/27", + "40.64.153.128/27", + "40.64.153.160/27", + "40.64.153.192/27", + "40.64.153.224/27", + "40.64.154.0/27", "40.64.160.0/25", "40.64.160.128/25", "40.64.161.0/25", @@ -132616,6 +138279,7 @@ "40.81.48.0/20", "40.81.64.0/20", "40.81.80.0/20", + "40.81.96.2/32", "40.81.112.0/20", "40.81.128.0/19", "40.81.176.0/20", @@ -133248,7 +138912,6 @@ "40.91.192.0/18", "40.93.0.0/23", "40.93.2.0/24", - "40.93.3.0/24", "40.93.4.0/24", "40.93.5.0/24", "40.93.6.0/24", @@ -133373,14 +139036,17 @@ "40.97.61.128/26", "40.97.61.192/26", "40.97.62.0/25", - "40.97.62.128/25", - "40.97.63.0/26", "40.97.63.64/26", "40.97.63.128/25", "40.97.72.0/26", "40.97.73.0/25", "40.97.73.128/26", "40.98.16.0/24", + "40.98.18.0/24", + "40.98.19.0/25", + "40.98.19.128/25", + "40.98.20.0/25", + "40.98.20.128/25", "40.100.4.0/25", "40.100.4.128/25", "40.100.5.0/26", @@ -133628,8 +139294,7 @@ "40.119.100.84/30", "40.119.100.88/29", "40.119.100.100/30", - "40.119.100.104/31", - "40.119.100.108/30", + "40.119.100.104/29", "40.119.100.112/29", "40.119.100.120/31", "40.119.100.124/30", @@ -133663,16 +139328,22 @@ "40.120.128.0/25", "40.120.128.128/27", "40.120.128.160/29", + "40.120.128.168/30", + "40.120.128.172/31", "40.120.132.0/23", - "40.120.134.0/29", + "40.120.134.0/26", + "40.120.134.64/28", + "40.120.134.80/30", "40.120.136.0/22", "40.120.140.0/24", "40.120.141.0/27", - "40.120.141.32/30", + "40.120.141.32/29", + "40.120.141.40/30", "40.120.144.0/24", "40.120.145.0/25", - "40.120.145.128/28", - "40.120.145.144/29", + "40.120.145.128/27", + "40.120.145.160/28", + "40.120.145.176/31", "40.120.148.0/22", "40.120.152.0/22", "40.120.156.0/28", @@ -133850,33 +139521,34 @@ "40.120.167.152/29", "40.120.167.160/27", "40.120.167.192/26", - "40.120.168.0/25", - "40.120.168.128/26", - "40.120.168.192/28", - "40.120.168.208/29", + "40.120.168.0/24", + "40.120.169.0/27", + "40.120.169.32/28", + "40.120.169.48/30", "40.120.172.0/24", - "40.120.173.0/26", - "40.120.173.64/28", - "40.120.173.80/30", - "40.120.173.84/31", - "40.120.176.0/24", - "40.120.177.0/25", - "40.120.177.128/26", - "40.120.177.192/28", - "40.120.177.208/31", + "40.120.173.0/25", + "40.120.173.128/27", + "40.120.173.160/28", + "40.120.176.0/23", + "40.120.178.0/25", + "40.120.178.128/28", + "40.120.178.144/31", "40.120.180.0/23", - "40.120.182.0/29", - "40.120.182.8/30", + "40.120.182.0/25", + "40.120.182.128/26", + "40.120.182.192/28", + "40.120.182.208/30", + "40.120.182.212/31", "40.120.184.0/24", - "40.120.185.0/26", - "40.120.185.64/27", - "40.120.185.96/30", - "40.120.185.100/31", + "40.120.185.0/25", + "40.120.185.128/26", + "40.120.185.192/28", + "40.120.185.208/29", "40.120.188.0/23", - "40.120.190.0/25", - "40.120.190.128/27", - "40.120.190.160/28", - "40.120.190.176/30", + "40.120.190.0/24", + "40.120.191.0/27", + "40.120.191.32/28", + "40.120.191.48/31", "40.121.0.0/16", "40.122.0.0/20", "40.122.16.0/20", @@ -133887,6 +139559,7 @@ "40.123.128.0/22", "40.123.132.0/22", "40.123.136.0/24", + "40.123.138.0/30", "40.123.140.0/22", "40.123.144.0/26", "40.123.144.64/29", @@ -134009,9 +139682,9 @@ "40.123.147.184/29", "40.123.147.192/26", "40.123.148.0/24", - "40.123.149.0/26", - "40.123.149.64/28", - "40.123.149.80/30", + "40.123.149.0/25", + "40.123.149.128/27", + "40.123.149.160/30", "40.123.152.0/22", "40.123.156.0/22", "40.123.160.0/22", @@ -134256,7 +139929,6 @@ "40.126.8.0/24", "40.126.9.0/24", "40.126.10.0/25", - "40.126.10.128/25", "40.126.11.0/25", "40.126.11.128/25", "40.126.12.0/25", @@ -134359,8 +140031,16 @@ "48.194.128.0/17", "48.195.0.0/17", "48.195.128.0/17", - "48.196.0.0/17", + "48.196.0.0/16", "48.197.0.0/17", + "48.198.0.0/16", + "48.199.0.0/16", + "48.200.0.0/17", + "48.200.128.0/17", + "48.201.0.0/16", + "48.202.0.0/17", + "48.202.128.0/17", + "48.203.0.0/17", "48.208.0.0/23", "48.208.2.0/24", "48.208.3.0/24", @@ -134745,6 +140425,7 @@ "51.5.69.0/24", "51.5.70.0/24", "51.5.71.0/24", + "51.5.72.0/24", "51.5.255.208/28", "51.5.255.224/28", "51.5.255.240/28", @@ -135018,9 +140699,7 @@ "52.101.243.0/24", "52.101.244.0/22", "52.102.128.0/24", - "52.102.129.0/24", "52.102.130.0/24", - "52.102.131.0/24", "52.102.132.0/24", "52.102.133.0/24", "52.102.134.0/24", @@ -135090,9 +140769,7 @@ "52.103.0.0/24", "52.103.1.0/24", "52.103.2.0/24", - "52.103.3.0/24", "52.103.4.0/24", - "52.103.5.0/24", "52.103.6.0/24", "52.103.7.0/24", "52.103.8.0/24", @@ -135158,9 +140835,7 @@ "52.103.79.0/24", "52.103.80.0/24", "52.103.128.0/24", - "52.103.129.0/24", "52.103.130.0/24", - "52.103.131.0/24", "52.103.132.0/24", "52.103.133.0/24", "52.103.134.0/24", @@ -135257,7 +140932,6 @@ "52.106.121.160/27", "52.106.121.192/27", "52.106.121.224/27", - "52.106.122.0/27", "52.106.122.32/27", "52.106.122.64/27", "52.106.122.96/27", @@ -135475,8 +141149,6 @@ "52.109.24.0/22", "52.109.28.0/22", "52.109.32.0/22", - "52.109.36.0/22", - "52.109.40.0/22", "52.109.44.0/22", "52.109.48.0/22", "52.109.52.0/22", @@ -135592,7 +141264,6 @@ "52.112.40.0/21", "52.112.48.0/23", "52.112.50.0/24", - "52.112.51.0/24", "52.112.52.0/24", "52.112.53.0/24", "52.112.54.0/24", @@ -135639,14 +141310,22 @@ "52.112.127.0/24", "52.112.128.0/24", "52.112.129.0/24", + "52.112.130.0/24", + "52.112.131.0/24", "52.112.132.0/24", "52.112.133.0/24", "52.112.134.0/24", + "52.112.135.0/24", + "52.112.136.0/24", + "52.112.137.0/24", "52.112.138.0/24", "52.112.139.0/24", "52.112.140.0/22", "52.112.144.0/20", + "52.112.160.0/24", + "52.112.161.0/24", "52.112.162.0/24", + "52.112.163.0/24", "52.112.164.0/22", "52.112.168.0/22", "52.112.172.0/22", @@ -135656,19 +141335,25 @@ "52.112.190.0/24", "52.112.191.0/24", "52.112.192.0/24", + "52.112.193.0/24", "52.112.194.0/24", + "52.112.195.0/24", + "52.112.196.0/24", "52.112.197.0/24", "52.112.198.0/23", "52.112.200.0/22", "52.112.204.0/23", "52.112.206.0/24", "52.112.207.0/24", + "52.112.208.0/24", + "52.112.209.0/24", "52.112.210.0/24", "52.112.212.0/24", "52.112.213.0/24", "52.112.214.0/23", "52.112.216.0/21", "52.112.224.0/22", + "52.112.228.0/24", "52.112.229.0/24", "52.112.230.0/24", "52.112.231.0/24", @@ -135680,10 +141365,15 @@ "52.112.238.0/24", "52.112.239.0/24", "52.112.240.0/20", + "52.113.0.0/24", + "52.113.1.0/24", "52.113.2.0/24", "52.113.3.0/24", "52.113.4.0/24", + "52.113.5.0/24", "52.113.6.0/24", + "52.113.7.0/24", + "52.113.8.0/24", "52.113.9.0/24", "52.113.10.0/23", "52.113.12.0/24", @@ -135691,20 +141381,30 @@ "52.113.14.0/24", "52.113.15.0/24", "52.113.16.0/20", + "52.113.32.0/24", "52.113.33.0/24", + "52.113.34.0/24", + "52.113.35.0/24", "52.113.36.0/24", "52.113.37.0/24", "52.113.38.0/23", "52.113.40.0/21", "52.113.48.0/20", + "52.113.64.0/24", "52.113.65.0/24", + "52.113.66.0/24", + "52.113.67.0/24", + "52.113.68.0/24", "52.113.69.0/24", "52.113.70.0/23", "52.113.72.0/22", "52.113.76.0/23", "52.113.78.0/23", + "52.113.80.0/24", + "52.113.81.0/24", "52.113.82.0/24", "52.113.83.0/24", + "52.113.84.0/24", "52.113.85.0/24", "52.113.86.0/24", "52.113.87.0/24", @@ -136484,12 +142184,14 @@ "52.239.178.0/23", "52.239.180.0/22", "52.239.184.0/25", + "52.239.184.128/27", "52.239.184.160/28", "52.239.184.176/28", "52.239.184.192/27", "52.239.184.224/27", "52.239.185.0/28", "52.239.185.32/27", + "52.239.185.64/27", "52.239.186.0/24", "52.239.187.0/25", "52.239.187.128/25", @@ -136511,6 +142213,7 @@ "52.239.197.0/24", "52.239.198.0/25", "52.239.198.128/27", + "52.239.198.160/27", "52.239.198.192/26", "52.239.199.0/24", "52.239.200.0/23", @@ -136521,7 +142224,7 @@ "52.239.206.0/24", "52.239.207.32/28", "52.239.207.64/26", - "52.239.207.128/27", + "52.239.207.128/26", "52.239.207.192/26", "52.239.208.0/23", "52.239.210.0/23", @@ -136941,9 +142644,20 @@ "57.157.2.120/30", "57.157.2.124/31", "57.157.2.126/31", - "57.157.2.128/26", - "57.157.2.192/27", - "57.157.2.224/31", + "57.157.2.128/25", + "57.157.3.0/25", + "57.157.3.128/27", + "57.157.3.160/28", + "57.157.3.176/29", + "57.157.3.184/30", + "57.157.3.188/31", + "57.157.3.190/31", + "57.157.3.192/29", + "57.157.3.200/31", + "57.157.3.202/31", + "57.157.3.204/30", + "57.157.3.208/28", + "57.157.3.224/27", "57.157.4.0/24", "57.157.5.0/26", "57.157.5.64/27", @@ -136959,40 +142673,106 @@ "57.157.5.204/30", "57.157.5.208/28", "57.157.5.224/27", - "57.157.6.0/28", - "57.157.6.16/29", - "57.157.8.0/23", - "57.157.10.0/26", - "57.157.10.64/28", - "57.157.10.80/29", - "57.157.10.88/30", + "57.157.6.0/24", + "57.157.7.0/27", + "57.157.7.32/28", + "57.157.7.48/31", + "57.157.7.50/31", + "57.157.7.52/30", + "57.157.7.56/29", + "57.157.7.64/26", + "57.157.7.128/25", + "57.157.8.0/22", "57.157.12.0/23", - "57.157.14.0/27", - "57.157.14.32/29", - "57.157.14.40/31", + "57.157.14.0/24", + "57.157.15.0/25", + "57.157.15.128/27", + "57.157.15.160/29", "57.157.16.0/25", - "57.157.16.128/29", - "57.157.16.136/30", - "57.157.16.140/31", - "57.157.20.0/25", - "57.157.20.128/28", - "57.157.20.144/29", - "57.157.20.152/30", + "57.157.16.128/27", + "57.157.16.160/28", + "57.157.16.176/29", + "57.157.20.0/24", + "57.157.21.0/28", + "57.157.21.16/29", + "57.157.21.24/30", + "57.157.21.28/31", "57.157.24.0/26", "57.157.24.64/30", "57.157.24.68/31", "57.157.28.0/24", - "57.157.36.0/25", - "57.157.36.128/29", - "57.157.36.136/30", - "57.157.60.0/30", - "57.157.68.0/28", - "57.157.68.16/29", - "57.157.68.24/30", - "57.157.92.0/27", - "57.157.92.32/28", - "57.157.92.48/29", - "57.157.92.56/30", + "57.157.29.0/25", + "57.157.29.128/27", + "57.157.29.160/28", + "57.157.29.176/29", + "57.157.29.184/30", + "57.157.32.0/24", + "57.157.33.0/26", + "57.157.33.64/29", + "57.157.36.0/24", + "57.157.37.0/28", + "57.157.37.16/30", + "57.157.37.20/31", + "57.157.40.0/28", + "57.157.40.16/29", + "57.157.40.24/30", + "57.157.44.0/27", + "57.157.44.32/28", + "57.157.44.48/29", + "57.157.44.56/30", + "57.157.48.0/27", + "57.157.48.32/29", + "57.157.48.40/30", + "57.157.48.44/31", + "57.157.48.46/31", + "57.157.48.48/28", + "57.157.48.64/26", + "57.157.48.128/27", + "57.157.48.160/30", + "57.157.48.164/30", + "57.157.48.168/31", + "57.157.48.170/31", + "57.157.48.172/31", + "57.157.48.174/31", + "57.157.48.176/28", + "57.157.48.192/29", + "57.157.48.200/30", + "57.157.48.204/31", + "57.157.48.206/31", + "57.157.48.208/31", + "57.157.48.210/31", + "57.157.48.212/30", + "57.157.48.216/29", + "57.157.48.224/30", + "57.157.48.228/31", + "57.157.60.0/25", + "57.157.60.128/28", + "57.157.60.144/30", + "57.157.68.0/25", + "57.157.68.128/27", + "57.157.68.160/28", + "57.157.68.176/30", + "57.157.72.0/28", + "57.157.72.16/29", + "57.157.72.24/30", + "57.157.72.28/31", + "57.157.92.0/25", + "57.157.92.128/28", + "57.157.92.144/31", + "57.157.96.0/27", + "57.157.96.32/28", + "57.157.96.48/29", + "57.157.96.56/30", + "57.157.112.0/29", + "57.157.112.16/28", + "57.157.120.0/29", + "57.157.120.16/28", + "57.157.124.0/29", + "57.157.124.16/28", + "57.157.128.0/25", + "57.157.128.128/28", + "57.157.128.144/30", + "57.157.128.148/31", "57.158.0.0/17", "57.158.128.0/18", "57.159.0.0/17", @@ -137085,6 +142865,7 @@ "68.210.128.0/18", "68.210.192.0/20", "68.210.208.0/21", + "68.210.224.0/19", "68.211.0.0/17", "68.211.128.0/18", "68.218.0.0/17", @@ -137221,6 +143002,31 @@ "70.152.224.0/24", "70.152.225.0/24", "70.152.226.0/24", + "70.152.227.0/24", + "70.152.228.0/24", + "70.152.229.0/24", + "70.152.230.0/24", + "70.152.231.0/24", + "70.152.232.0/24", + "70.152.233.0/24", + "70.152.234.0/24", + "70.152.235.0/24", + "70.152.236.0/24", + "70.152.237.0/24", + "70.152.238.0/23", + "70.152.240.0/23", + "70.152.242.0/24", + "70.152.243.0/24", + "70.152.244.0/24", + "70.152.245.0/24", + "70.152.246.0/24", + "70.152.247.0/24", + "70.152.248.0/24", + "70.152.249.0/24", + "70.152.250.0/24", + "70.152.251.0/24", + "70.152.252.0/23", + "70.152.254.0/23", "70.153.0.0/17", "70.153.128.0/18", "70.153.192.0/19", @@ -137664,6 +143470,39 @@ "135.130.136.0/23", "135.130.138.0/23", "135.130.140.0/23", + "135.130.142.0/23", + "135.130.144.0/23", + "135.130.146.0/23", + "135.130.148.0/23", + "135.130.150.0/24", + "135.130.151.0/24", + "135.130.152.0/24", + "135.130.153.0/24", + "135.130.154.0/24", + "135.130.155.0/24", + "135.130.156.0/24", + "135.130.158.0/23", + "135.130.160.0/23", + "135.130.162.0/23", + "135.130.164.0/23", + "135.130.166.0/23", + "135.130.168.0/23", + "135.130.170.0/23", + "135.130.172.0/23", + "135.130.174.0/23", + "135.130.176.0/23", + "135.130.178.0/23", + "135.130.180.0/22", + "135.130.184.0/23", + "135.130.186.0/23", + "135.130.188.0/23", + "135.130.190.0/23", + "135.130.192.0/23", + "135.130.194.0/23", + "135.130.196.0/23", + "135.130.198.0/23", + "135.130.200.0/23", + "135.130.202.0/23", "135.149.0.0/17", "135.149.128.0/17", "135.171.0.0/16", @@ -137741,6 +143580,21 @@ "145.190.62.0/24", "145.190.63.0/24", "145.190.64.0/24", + "145.190.65.0/24", + "145.190.66.0/23", + "145.190.68.0/24", + "145.190.128.0/24", + "145.190.129.0/24", + "145.190.130.0/24", + "145.190.131.0/24", + "145.190.132.0/24", + "145.190.133.0/24", + "145.190.134.0/24", + "145.190.135.0/24", + "145.190.136.0/24", + "145.190.137.0/24", + "145.190.138.0/23", + "145.190.140.0/24", "145.191.0.0/17", "151.206.64.0/24", "151.206.65.0/24", @@ -137781,6 +143635,13 @@ "151.206.100.0/23", "151.206.102.0/23", "151.206.104.0/23", + "151.206.106.0/24", + "151.206.107.0/25", + "151.206.107.128/25", + "151.206.108.0/23", + "151.206.110.0/24", + "151.206.111.0/24", + "151.206.112.0/24", "151.206.128.0/24", "151.206.129.0/24", "151.206.130.0/24", @@ -138246,6 +144107,8 @@ "216.220.208.0/24", "216.220.209.0/24", "216.220.210.0/24", + "216.220.211.0/24", + "216.220.212.0/24", "2602:fd5e:1::/63", "2602:fd5e:1:2::/64", "2602:fd5e:2::/57", @@ -138404,6 +144267,8 @@ "2603:1020:1602::/47", "2603:1020:1604::/48", "2603:1020:1605::/48", + "2603:1026:800::/63", + "2603:1026:800:2::/64", "2603:1026:900::/64", "2603:1026:900:1::/64", "2603:1026:900:2::/63", @@ -138434,6 +144299,7 @@ "2603:1026:900:27::/64", "2603:1026:900:28::/64", "2603:1026:900:29::/64", + "2603:1026:900:2b::/64", "2603:1026:900:2c::/64", "2603:1026:900:2d::/64", "2603:1026:900:2e::/63", @@ -138454,10 +144320,14 @@ "2603:1026:900:44::/63", "2603:1026:900:46::/64", "2603:1026:900:47::/64", + "2603:1026:900:48::/64", + "2603:1026:900:49::/64", + "2603:1026:900:4a::/64", + "2603:1026:900:4b::/64", "2603:1026:2400::/48", "2603:1026:2401::/48", "2603:1026:2402::/48", - "2603:1026:2403::/48", + "2603:1026:2403::/63", "2603:1026:2404::/48", "2603:1026:2405::/48", "2603:1026:2406::/48", @@ -138469,7 +144339,7 @@ "2603:1026:240c::/48", "2603:1026:240d::/48", "2603:1026:240e::/48", - "2603:1026:240f::/48", + "2603:1026:240f::/63", "2603:1026:2410::/48", "2603:1026:2411::/48", "2603:1026:2412::/48", @@ -138778,8 +144648,20 @@ "2603:1030:9:6fa::/64", "2603:1030:9:6fb::/64", "2603:1030:9:6fc::/62", - "2603:1030:9:700::/59", - "2603:1030:9:720::/63", + "2603:1030:9:700::/57", + "2603:1030:9:780::/59", + "2603:1030:9:7a0::/62", + "2603:1030:9:7a4::/63", + "2603:1030:9:7a6::/63", + "2603:1030:9:7a8::/62", + "2603:1030:9:7ac::/63", + "2603:1030:9:7ae::/64", + "2603:1030:9:7af::/64", + "2603:1030:9:7b0::/60", + "2603:1030:9:7c0::/58", + "2603:1030:9:800::/59", + "2603:1030:9:820::/60", + "2603:1030:9:830::/62", "2603:1030:a::/47", "2603:1030:d::/48", "2603:1030:e::/48", @@ -138798,8 +144680,7 @@ "2603:1030:100:12::/63", "2603:1030:100:14::/62", "2603:1030:100:1a::/63", - "2603:1030:100:1c::/64", - "2603:1030:100:1e::/63", + "2603:1030:100:1c::/62", "2603:1030:100:20::/62", "2603:1030:100:24::/64", "2603:1030:100:26::/63", @@ -139293,9 +145174,43 @@ "2603:1030:401:927::/64", "2603:1030:401:928::/61", "2603:1030:401:930::/60", - "2603:1030:401:940::/60", - "2603:1030:401:950::/61", - "2603:1030:401:958::/64", + "2603:1030:401:940::/58", + "2603:1030:401:980::/58", + "2603:1030:401:9c0::/62", + "2603:1030:401:9c4::/63", + "2603:1030:401:9c6::/64", + "2603:1030:401:9c7::/64", + "2603:1030:401:9c8::/62", + "2603:1030:401:9cc::/64", + "2603:1030:401:9cd::/64", + "2603:1030:401:9ce::/63", + "2603:1030:401:9d0::/60", + "2603:1030:401:9e0::/60", + "2603:1030:401:9f0::/61", + "2603:1030:401:9f8::/62", + "2603:1030:401:9fc::/63", + "2603:1030:401:9fe::/64", + "2603:1030:401:9ff::/64", + "2603:1030:401:a00::/59", + "2603:1030:401:a20::/60", + "2603:1030:401:a30::/61", + "2603:1030:401:a38::/63", + "2603:1030:401:a3a::/63", + "2603:1030:401:a3c::/64", + "2603:1030:401:a3d::/64", + "2603:1030:401:a3e::/64", + "2603:1030:401:a3f::/64", + "2603:1030:401:a40::/61", + "2603:1030:401:a48::/62", + "2603:1030:401:a4c::/63", + "2603:1030:401:a4e::/64", + "2603:1030:401:a4f::/64", + "2603:1030:401:a50::/64", + "2603:1030:401:a51::/64", + "2603:1030:401:a52::/63", + "2603:1030:401:a54::/62", + "2603:1030:401:a58::/63", + "2603:1030:401:a5a::/64", "2603:1030:402::/47", "2603:1030:405::/48", "2603:1030:406::/47", @@ -139307,6 +145222,7 @@ "2603:1030:40a:3::/64", "2603:1030:40a:4::/62", "2603:1030:40a:8::/63", + "2603:1030:40a:10::/64", "2603:1030:40b::/48", "2603:1030:40c::/48", "2603:1030:40d::/60", @@ -139441,6 +145357,16 @@ "2603:1030:804:51f::/64", "2603:1030:804:520::/64", "2603:1030:804:521::/64", + "2603:1030:804:522::/63", + "2603:1030:804:524::/62", + "2603:1030:804:528::/61", + "2603:1030:804:530::/60", + "2603:1030:804:540::/59", + "2603:1030:804:560::/60", + "2603:1030:804:570::/61", + "2603:1030:804:578::/62", + "2603:1030:804:57c::/63", + "2603:1030:804:57e::/64", "2603:1030:805::/48", "2603:1030:806::/48", "2603:1030:807::/48", @@ -139469,8 +145395,7 @@ "2603:1030:b06::/48", "2603:1030:b07::/56", "2603:1030:b08::/48", - "2603:1030:b40::/48", - "2603:1030:b80::/56", + "2603:1030:b80::/48", "2603:1030:c00::/48", "2603:1030:c02::/47", "2603:1030:c04::/48", @@ -139639,6 +145564,7 @@ "2603:1036:3000:2c0::/59", "2603:1036:3000:2e0::/59", "2603:1036:3000:300::/59", + "2603:1036:3000:320::/59", "2603:1037:1::/59", "2603:1037:1:20::/59", "2603:1037:1:40::/59", @@ -139665,6 +145591,7 @@ "2603:1037:1:2e0::/59", "2603:1037:1:300::/59", "2603:1037:1:320::/59", + "2603:1037:1:340::/59", "2603:1039:205::/48", "2603:1040::/47", "2603:1040:2::/48", @@ -139767,6 +145694,11 @@ "2603:1040:1a01::/48", "2603:1040:1a02::/47", "2603:1040:1a04::/48", + "2603:1040:1a05::/48", + "2603:1040:1b01::/48", + "2603:1040:1b02::/47", + "2603:1040:1b04::/48", + "2603:1040:1b05::/48", "2603:1046:a00::/63", "2603:1046:a00:2::/64", "2603:1046:a00:3::/64", @@ -139808,6 +145740,7 @@ "2603:1046:a00:34::/63", "2603:1046:a00:36::/64", "2603:1046:a00:37::/64", + "2603:1046:a00:38::/64", "2603:1046:a00:3b::/64", "2603:1046:a00:3c::/63", "2603:1046:a00:3e::/64", @@ -139891,6 +145824,7 @@ "2603:1046:2000:280::/59", "2603:1046:2000:2a0::/59", "2603:1046:2000:2c0::/59", + "2603:1046:2000:2e0::/59", "2603:1047:1::/59", "2603:1047:1:20::/59", "2603:1047:1:40::/59", @@ -139913,6 +145847,8 @@ "2603:1047:1:260::/59", "2603:1047:1:280::/59", "2603:1047:1:2a0::/59", + "2603:1047:1:2c0::/59", + "2603:1047:1:2e0::/59", "2603:1050:1::/48", "2603:1050:2::/47", "2603:1050:5::/48", @@ -139948,26 +145884,29 @@ "2603:1061:1002::/48", "2603:1061:1003::/48", "2603:1061:1004::/57", - "2603:1061:1004:80::/59", - "2603:1061:1004:a0::/63", + "2603:1061:1004:80::/58", + "2603:1061:1004:c0::/61", + "2603:1061:1004:c8::/63", "2603:1061:1005::/58", "2603:1061:1005:40::/59", "2603:1061:1005:60::/64", "2603:1061:1006::/57", - "2603:1061:1006:80::/59", - "2603:1061:1006:a0::/60", - "2603:1061:1006:b0::/61", + "2603:1061:1006:80::/58", + "2603:1061:1006:c0::/59", + "2603:1061:1006:e0::/60", + "2603:1061:1006:f0::/61", + "2603:1061:1006:f8::/63", "2603:1061:1007::/57", "2603:1061:1007:80::/59", - "2603:1061:1007:a0::/62", - "2603:1061:1007:a4::/63", - "2603:1061:1007:a6::/64", + "2603:1061:1007:a0::/60", + "2603:1061:1007:b0::/61", "2603:1061:1008::/57", "2603:1061:1008:80::/59", "2603:1061:1008:a0::/60", "2603:1061:1008:b0::/61", "2603:1061:1008:b8::/62", - "2603:1061:1008:c0::/62", + "2603:1061:1008:c0::/60", + "2603:1061:1008:d0::/64", "2603:1061:1009::/59", "2603:1061:1009:20::/60", "2603:1061:1009:30::/61", @@ -139977,67 +145916,65 @@ "2603:1061:100a::/58", "2603:1061:100a:40::/61", "2603:1061:100a:48::/62", - "2603:1061:100b::/57", - "2603:1061:100b:80::/58", - "2603:1061:100b:c0::/59", - "2603:1061:100b:e0::/60", - "2603:1061:100b:f0::/61", - "2603:1061:100b:f8::/62", + "2603:1061:100a:4c::/63", + "2603:1061:100a:4e::/64", + "2603:1061:100b::/56", + "2603:1061:100b:100::/59", + "2603:1061:100b:120::/63", "2603:1061:100c::/57", "2603:1061:100c:80::/61", - "2603:1061:100c:88::/63", - "2603:1061:100d::/58", - "2603:1061:100d:40::/59", - "2603:1061:100d:60::/62", + "2603:1061:100c:88::/62", + "2603:1061:100c:8c::/63", + "2603:1061:100d::/57", + "2603:1061:100d:80::/60", + "2603:1061:100d:90::/63", "2603:1061:100e::/57", - "2603:1061:100e:80::/59", - "2603:1061:100e:a0::/63", - "2603:1061:100e:a2::/64", - "2603:1061:1010::/58", - "2603:1061:1010:40::/59", - "2603:1061:1010:60::/61", - "2603:1061:1010:68::/62", - "2603:1061:1010:6c::/63", + "2603:1061:100e:80::/58", + "2603:1061:100e:c0::/60", + "2603:1061:1010::/57", + "2603:1061:1010:80::/59", + "2603:1061:1010:a0::/63", "2603:1061:1011::/60", "2603:1061:1011:10::/61", "2603:1061:1011:18::/64", "2603:1061:1011:1c::/62", - "2603:1061:1012::/59", - "2603:1061:1012:20::/62", - "2603:1061:1012:24::/63", - "2603:1061:1012:26::/64", + "2603:1061:1012::/58", "2603:1061:1013::/57", "2603:1061:1013:80::/60", - "2603:1061:1014::/60", - "2603:1061:1014:10::/61", - "2603:1061:1014:18::/63", - "2603:1061:1014:1a::/64", - "2603:1061:1015::/60", - "2603:1061:1015:10::/62", - "2603:1061:1015:14::/63", - "2603:1061:1015:16::/64", - "2603:1061:1015:18::/62", + "2603:1061:1014::/59", + "2603:1061:1014:20::/61", + "2603:1061:1014:28::/62", + "2603:1061:1014:2c::/64", + "2603:1061:1015::/59", + "2603:1061:1015:20::/61", + "2603:1061:1015:28::/62", + "2603:1061:1015:2c::/64", "2603:1061:1016::/58", "2603:1061:1016:40::/60", - "2603:1061:1016:50::/62", + "2603:1061:1016:50::/61", "2603:1061:1017::/58", "2603:1061:1017:40::/61", - "2603:1061:1018::/59", - "2603:1061:1018:20::/60", - "2603:1061:1018:30::/61", - "2603:1061:1018:38::/62", - "2603:1061:1018:3c::/63", - "2603:1061:1018:3e::/64", - "2603:1061:1019::/58", - "2603:1061:1019:40::/62", - "2603:1061:1019:44::/63", + "2603:1061:1018::/58", + "2603:1061:1018:40::/60", + "2603:1061:1018:50::/62", + "2603:1061:1019::/57", + "2603:1061:1019:80::/62", + "2603:1061:1019:84::/63", + "2603:1061:1019:86::/64", "2603:1061:101a::/60", "2603:1061:101a:10::/61", "2603:1061:101a:18::/62", - "2603:1061:101b::/60", - "2603:1061:101b:10::/62", - "2603:1061:101b:14::/63", - "2603:1061:101b:16::/64", + "2603:1061:101b::/58", + "2603:1061:101b:40::/62", + "2603:1061:101b:44::/63", + "2603:1061:101b:46::/64", + "2603:1061:101c::/60", + "2603:1061:101c:10::/62", + "2603:1061:101c:14::/63", + "2603:1061:101c:16::/64", + "2603:1061:101d::/62", + "2603:1061:101e::/62", + "2603:1061:101f::/62", "2603:1061:1310::/54", "2603:1061:1310:400::/54", "2603:1061:1310:800::/54", @@ -140204,6 +146141,7 @@ "2603:1061:174d::/63", "2603:1061:174e::/62", "2603:1061:174f::/62", + "2603:1061:1750::/62", "2603:1061:2000::/64", "2603:1061:2000:1::/64", "2603:1061:2000:2::/64", diff --git a/wwwroot/ip-manifests/GCP.json b/wwwroot/ip-manifests/gcp.json similarity index 92% rename from wwwroot/ip-manifests/GCP.json rename to wwwroot/ip-manifests/gcp.json index fa198aa..d4c4c77 100644 --- a/wwwroot/ip-manifests/GCP.json +++ b/wwwroot/ip-manifests/gcp.json @@ -1,6 +1,6 @@ { - "syncToken": "1760429202735", - "creationTime": "2025-10-14T01:06:42.735657", + "syncToken": "1766909111636", + "creationTime": "2025-12-28T00:05:11.636972", "prefixes": [{ "ipv4Prefix": "34.1.208.0/20", "service": "Google Cloud", @@ -21,6 +21,10 @@ "ipv6Prefix": "2600:1900:8000::/44", "service": "Google Cloud", "scope": "africa-south1" + }, { + "ipv6Prefix": "2600:1902:10::/44", + "service": "Google Cloud", + "scope": "africa-south1" }, { "ipv4Prefix": "34.80.0.0/15", "service": "Google Cloud", @@ -129,6 +133,10 @@ "ipv6Prefix": "2600:1900:4030::/44", "service": "Google Cloud", "scope": "asia-east1" + }, { + "ipv6Prefix": "2600:1902:20::/44", + "service": "Google Cloud", + "scope": "asia-east1" }, { "ipv4Prefix": "34.92.0.0/16", "service": "Google Cloud", @@ -177,6 +185,10 @@ "ipv6Prefix": "2600:1900:41a0::/44", "service": "Google Cloud", "scope": "asia-east2" + }, { + "ipv6Prefix": "2600:1902:30::/44", + "service": "Google Cloud", + "scope": "asia-east2" }, { "ipv4Prefix": "34.84.0.0/16", "service": "Google Cloud", @@ -281,6 +293,10 @@ "ipv6Prefix": "2600:1900:4050::/44", "service": "Google Cloud", "scope": "asia-northeast1" + }, { + "ipv6Prefix": "2600:1902:40::/44", + "service": "Google Cloud", + "scope": "asia-northeast1" }, { "ipv4Prefix": "34.97.0.0/16", "service": "Google Cloud", @@ -321,10 +337,22 @@ "ipv6Prefix": "2600:1900:41d0::/44", "service": "Google Cloud", "scope": "asia-northeast2" + }, { + "ipv6Prefix": "2600:1902:50::/44", + "service": "Google Cloud", + "scope": "asia-northeast2" + }, { + "ipv4Prefix": "8.228.128.0/18", + "service": "Google Cloud", + "scope": "asia-northeast3" }, { "ipv4Prefix": "34.0.96.0/19", "service": "Google Cloud", "scope": "asia-northeast3" + }, { + "ipv4Prefix": "34.4.128.0/18", + "service": "Google Cloud", + "scope": "asia-northeast3" }, { "ipv4Prefix": "34.22.64.0/19", "service": "Google Cloud", @@ -409,6 +437,10 @@ "ipv6Prefix": "2600:1901:8180::/44", "service": "Google Cloud", "scope": "asia-northeast3" + }, { + "ipv6Prefix": "2600:1902:60::/44", + "service": "Google Cloud", + "scope": "asia-northeast3" }, { "ipv4Prefix": "34.0.227.0/24", "service": "Google Cloud", @@ -517,6 +549,10 @@ "ipv6Prefix": "2600:1900:40a0::/44", "service": "Google Cloud", "scope": "asia-south1" + }, { + "ipv6Prefix": "2600:1902:70::/44", + "service": "Google Cloud", + "scope": "asia-south1" }, { "ipv4Prefix": "34.0.0.0/20", "service": "Google Cloud", @@ -577,6 +613,10 @@ "ipv6Prefix": "2600:1900:41b0::/44", "service": "Google Cloud", "scope": "asia-south2" + }, { + "ipv6Prefix": "2600:1902:80::/44", + "service": "Google Cloud", + "scope": "asia-south2" }, { "ipv4Prefix": "34.1.128.0/20", "service": "Google Cloud", @@ -677,6 +717,14 @@ "ipv4Prefix": "34.177.72.0/23", "service": "Google Cloud", "scope": "asia-southeast1" + }, { + "ipv4Prefix": "34.177.80.0/20", + "service": "Google Cloud", + "scope": "asia-southeast1" + }, { + "ipv4Prefix": "34.177.96.0/20", + "service": "Google Cloud", + "scope": "asia-southeast1" }, { "ipv4Prefix": "35.185.176.0/20", "service": "Google Cloud", @@ -729,6 +777,10 @@ "ipv6Prefix": "2600:1900:4080::/44", "service": "Google Cloud", "scope": "asia-southeast1" + }, { + "ipv6Prefix": "2600:1902:90::/44", + "service": "Google Cloud", + "scope": "asia-southeast1" }, { "ipv4Prefix": "34.34.216.0/21", "service": "Google Cloud", @@ -789,6 +841,10 @@ "ipv6Prefix": "2600:1901:8170::/44", "service": "Google Cloud", "scope": "asia-southeast2" + }, { + "ipv6Prefix": "2600:1902:a0::/44", + "service": "Google Cloud", + "scope": "asia-southeast2" }, { "ipv4Prefix": "34.3.32.0/20", "service": "Google Cloud", @@ -897,6 +953,10 @@ "ipv6Prefix": "2600:1900:40b0::/44", "service": "Google Cloud", "scope": "australia-southeast1" + }, { + "ipv6Prefix": "2600:1902:b0::/44", + "service": "Google Cloud", + "scope": "australia-southeast1" }, { "ipv4Prefix": "34.0.16.0/20", "service": "Google Cloud", @@ -933,6 +993,10 @@ "ipv6Prefix": "2600:1900:41c0::/44", "service": "Google Cloud", "scope": "australia-southeast2" + }, { + "ipv6Prefix": "2600:1902:c0::/44", + "service": "Google Cloud", + "scope": "australia-southeast2" }, { "ipv4Prefix": "34.0.240.0/20", "service": "Google Cloud", @@ -961,10 +1025,18 @@ "ipv4Prefix": "34.128.208.0/20", "service": "Google Cloud", "scope": "europe-central2" + }, { + "ipv4Prefix": "34.158.224.0/20", + "service": "Google Cloud", + "scope": "europe-central2" }, { "ipv6Prefix": "2600:1900:4140::/44", "service": "Google Cloud", "scope": "europe-central2" + }, { + "ipv6Prefix": "2600:1902:d0::/44", + "service": "Google Cloud", + "scope": "europe-central2" }, { "ipv4Prefix": "34.88.0.0/16", "service": "Google Cloud", @@ -1001,6 +1073,10 @@ "ipv6Prefix": "2600:1900:4150::/44", "service": "Google Cloud", "scope": "europe-north1" + }, { + "ipv6Prefix": "2600:1902:e0::/44", + "service": "Google Cloud", + "scope": "europe-north1" }, { "ipv4Prefix": "34.2.48.0/20", "service": "Google Cloud", @@ -1021,6 +1097,10 @@ "ipv6Prefix": "2600:1900:42a0::/44", "service": "Google Cloud", "scope": "europe-north2" + }, { + "ipv6Prefix": "2600:1902:f0::/44", + "service": "Google Cloud", + "scope": "europe-north2" }, { "ipv4Prefix": "34.0.192.0/19", "service": "Google Cloud", @@ -1053,6 +1133,10 @@ "ipv6Prefix": "2600:1901:8100::/44", "service": "Google Cloud", "scope": "europe-southwest1" + }, { + "ipv6Prefix": "2600:1902:100::/44", + "service": "Google Cloud", + "scope": "europe-southwest1" }, { "ipv4Prefix": "8.34.208.0/23", "service": "Google Cloud", @@ -1233,6 +1317,10 @@ "ipv6Prefix": "2600:1900:4010::/44", "service": "Google Cloud", "scope": "europe-west1" + }, { + "ipv6Prefix": "2600:1902:110::/44", + "service": "Google Cloud", + "scope": "europe-west1" }, { "ipv4Prefix": "34.1.160.0/20", "service": "Google Cloud", @@ -1253,6 +1341,10 @@ "ipv6Prefix": "2600:1901:81f0::/44", "service": "Google Cloud", "scope": "europe-west10" + }, { + "ipv6Prefix": "2600:1902:130::/44", + "service": "Google Cloud", + "scope": "europe-west10" }, { "ipv4Prefix": "34.1.144.0/20", "service": "Google Cloud", @@ -1293,6 +1385,10 @@ "ipv6Prefix": "2600:1901:81b0::/44", "service": "Google Cloud", "scope": "europe-west12" + }, { + "ipv6Prefix": "2600:1902:140::/44", + "service": "Google Cloud", + "scope": "europe-west12" }, { "ipv4Prefix": "34.2.96.0/20", "service": "Google Cloud", @@ -1313,6 +1409,10 @@ "ipv6Prefix": "2600:1900:42c0::/44", "service": "Google Cloud", "scope": "europe-west15" + }, { + "ipv4Prefix": "8.228.32.0/19", + "service": "Google Cloud", + "scope": "europe-west2" }, { "ipv4Prefix": "34.4.48.0/20", "service": "Google Cloud", @@ -1441,6 +1541,10 @@ "ipv6Prefix": "2600:1900:40c0::/44", "service": "Google Cloud", "scope": "europe-west2" + }, { + "ipv6Prefix": "2600:1902:120::/44", + "service": "Google Cloud", + "scope": "europe-west2" }, { "ipv4Prefix": "34.0.224.0/24", "service": "Google Cloud", @@ -1545,6 +1649,10 @@ "ipv6Prefix": "2600:1900:40d0::/44", "service": "Google Cloud", "scope": "europe-west3" + }, { + "ipv6Prefix": "2600:1902:150::/44", + "service": "Google Cloud", + "scope": "europe-west3" }, { "ipv4Prefix": "34.1.224.0/19", "service": "Google Cloud", @@ -1553,6 +1661,10 @@ "ipv4Prefix": "34.3.80.0/20", "service": "Google Cloud", "scope": "europe-west4" + }, { + "ipv4Prefix": "34.4.80.0/20", + "service": "Google Cloud", + "scope": "europe-west4" }, { "ipv4Prefix": "34.6.0.0/15", "service": "Google Cloud", @@ -1673,6 +1785,10 @@ "ipv6Prefix": "2600:1900:4060::/44", "service": "Google Cloud", "scope": "europe-west4" + }, { + "ipv6Prefix": "2600:1902:160::/44", + "service": "Google Cloud", + "scope": "europe-west4" }, { "ipv4Prefix": "34.65.0.0/16", "service": "Google Cloud", @@ -1685,6 +1801,10 @@ "ipv4Prefix": "34.124.46.0/23", "service": "Google Cloud", "scope": "europe-west6" + }, { + "ipv4Prefix": "34.158.16.0/20", + "service": "Google Cloud", + "scope": "europe-west6" }, { "ipv4Prefix": "35.216.128.0/17", "service": "Google Cloud", @@ -1705,6 +1825,10 @@ "ipv6Prefix": "2600:1900:4160::/44", "service": "Google Cloud", "scope": "europe-west6" + }, { + "ipv6Prefix": "2600:1902:170::/44", + "service": "Google Cloud", + "scope": "europe-west6" }, { "ipv4Prefix": "34.0.160.0/19", "service": "Google Cloud", @@ -1753,6 +1877,10 @@ "ipv6Prefix": "2600:1901:8110::/44", "service": "Google Cloud", "scope": "europe-west8" + }, { + "ipv6Prefix": "2600:1902:180::/44", + "service": "Google Cloud", + "scope": "europe-west8" }, { "ipv4Prefix": "34.1.0.0/20", "service": "Google Cloud", @@ -1777,6 +1905,10 @@ "ipv6Prefix": "2600:1901:8120::/44", "service": "Google Cloud", "scope": "europe-west9" + }, { + "ipv6Prefix": "2600:1902:190::/44", + "service": "Google Cloud", + "scope": "europe-west9" }, { "ipv4Prefix": "34.3.2.0/27", "service": "Google Cloud", @@ -1949,6 +2081,10 @@ "ipv6Prefix": "2600:1901:81c0::/44", "service": "Google Cloud", "scope": "me-central1" + }, { + "ipv6Prefix": "2600:1902:1a0::/44", + "service": "Google Cloud", + "scope": "me-central1" }, { "ipv4Prefix": "34.1.48.0/20", "service": "Google Cloud", @@ -1961,6 +2097,14 @@ "ipv4Prefix": "34.152.102.0/24", "service": "Google Cloud", "scope": "me-central2" + }, { + "ipv4Prefix": "34.157.122.128/25", + "service": "Google Cloud", + "scope": "me-central2" + }, { + "ipv4Prefix": "34.157.218.128/25", + "service": "Google Cloud", + "scope": "me-central2" }, { "ipv4Prefix": "34.166.0.0/16", "service": "Google Cloud", @@ -1973,10 +2117,18 @@ "ipv4Prefix": "34.177.70.0/24", "service": "Google Cloud", "scope": "me-central2" + }, { + "ipv4Prefix": "35.252.32.0/19", + "service": "Google Cloud", + "scope": "me-central2" }, { "ipv6Prefix": "2600:1900:5400::/44", "service": "Google Cloud", "scope": "me-central2" + }, { + "ipv6Prefix": "2600:1902:1b0::/44", + "service": "Google Cloud", + "scope": "me-central2" }, { "ipv4Prefix": "34.0.64.0/19", "service": "Google Cloud", @@ -2009,10 +2161,18 @@ "ipv4Prefix": "34.184.3.128/25", "service": "Google Cloud", "scope": "me-west1" + }, { + "ipv4Prefix": "35.252.0.0/19", + "service": "Google Cloud", + "scope": "me-west1" }, { "ipv6Prefix": "2600:1901:8160::/44", "service": "Google Cloud", "scope": "me-west1" + }, { + "ipv6Prefix": "2600:1902:1c0::/44", + "service": "Google Cloud", + "scope": "me-west1" }, { "ipv4Prefix": "34.19.128.0/17", "service": "Google Cloud", @@ -2097,6 +2257,10 @@ "ipv6Prefix": "2600:1900:40e0::/44", "service": "Google Cloud", "scope": "northamerica-northeast1" + }, { + "ipv6Prefix": "2600:1902:1d0::/44", + "service": "Google Cloud", + "scope": "northamerica-northeast1" }, { "ipv4Prefix": "34.0.32.0/20", "service": "Google Cloud", @@ -2145,6 +2309,10 @@ "ipv6Prefix": "2600:1900:41e0::/44", "service": "Google Cloud", "scope": "northamerica-northeast2" + }, { + "ipv6Prefix": "2600:1902:1e0::/44", + "service": "Google Cloud", + "scope": "northamerica-northeast2" }, { "ipv4Prefix": "34.2.0.0/20", "service": "Google Cloud", @@ -2165,6 +2333,10 @@ "ipv6Prefix": "2600:1900:4290::/44", "service": "Google Cloud", "scope": "northamerica-south1" + }, { + "ipv6Prefix": "2600:1902:1f0::/44", + "service": "Google Cloud", + "scope": "northamerica-south1" }, { "ipv4Prefix": "34.39.128.0/17", "service": "Google Cloud", @@ -2221,6 +2393,10 @@ "ipv6Prefix": "2600:1900:40f0::/44", "service": "Google Cloud", "scope": "southamerica-east1" + }, { + "ipv6Prefix": "2600:1902:200::/44", + "service": "Google Cloud", + "scope": "southamerica-east1" }, { "ipv4Prefix": "34.0.48.0/20", "service": "Google Cloud", @@ -2245,6 +2421,14 @@ "ipv4Prefix": "34.153.225.0/24", "service": "Google Cloud", "scope": "southamerica-west1" + }, { + "ipv4Prefix": "34.157.122.0/25", + "service": "Google Cloud", + "scope": "southamerica-west1" + }, { + "ipv4Prefix": "34.157.218.0/25", + "service": "Google Cloud", + "scope": "southamerica-west1" }, { "ipv4Prefix": "34.176.0.0/16", "service": "Google Cloud", @@ -2265,6 +2449,10 @@ "ipv6Prefix": "2600:1901:4010::/44", "service": "Google Cloud", "scope": "southamerica-west1" + }, { + "ipv6Prefix": "2600:1902:210::/44", + "service": "Google Cloud", + "scope": "southamerica-west1" }, { "ipv4Prefix": "8.34.210.0/24", "service": "Google Cloud", @@ -2293,6 +2481,10 @@ "ipv4Prefix": "34.0.225.0/24", "service": "Google Cloud", "scope": "us-central1" + }, { + "ipv4Prefix": "34.4.96.0/22", + "service": "Google Cloud", + "scope": "us-central1" }, { "ipv4Prefix": "34.9.0.0/16", "service": "Google Cloud", @@ -2505,6 +2697,14 @@ "ipv4Prefix": "35.242.96.0/19", "service": "Google Cloud", "scope": "us-central1" + }, { + "ipv4Prefix": "35.253.0.0/16", + "service": "Google Cloud", + "scope": "us-central1" + }, { + "ipv4Prefix": "35.254.0.0/15", + "service": "Google Cloud", + "scope": "us-central1" }, { "ipv4Prefix": "104.154.16.0/20", "service": "Google Cloud", @@ -2641,6 +2841,10 @@ "ipv6Prefix": "2600:1900:4000::/44", "service": "Google Cloud", "scope": "us-central1" + }, { + "ipv6Prefix": "2600:1902::/44", + "service": "Google Cloud", + "scope": "us-central1" }, { "ipv4Prefix": "34.22.0.0/19", "service": "Google Cloud", @@ -2681,6 +2885,10 @@ "ipv6Prefix": "2600:1900:4070::/44", "service": "Google Cloud", "scope": "us-central2" + }, { + "ipv6Prefix": "2600:1902:220::/44", + "service": "Google Cloud", + "scope": "us-central2" }, { "ipv4Prefix": "34.3.76.0/22", "service": "Google Cloud", @@ -2849,6 +3057,14 @@ "ipv6Prefix": "2600:1900:4020::/44", "service": "Google Cloud", "scope": "us-east1" + }, { + "ipv6Prefix": "2600:1902:230::/44", + "service": "Google Cloud", + "scope": "us-east1" + }, { + "ipv4Prefix": "8.228.64.0/18", + "service": "Google Cloud", + "scope": "us-east4" }, { "ipv4Prefix": "34.4.32.0/20", "service": "Google Cloud", @@ -3009,6 +3225,10 @@ "ipv6Prefix": "2600:1900:4090::/44", "service": "Google Cloud", "scope": "us-east4" + }, { + "ipv6Prefix": "2600:1902:250::/44", + "service": "Google Cloud", + "scope": "us-east4" }, { "ipv4Prefix": "34.1.16.0/20", "service": "Google Cloud", @@ -3041,10 +3261,18 @@ "ipv4Prefix": "34.162.0.0/16", "service": "Google Cloud", "scope": "us-east5" + }, { + "ipv4Prefix": "34.186.224.0/19", + "service": "Google Cloud", + "scope": "us-east5" }, { "ipv6Prefix": "2600:1901:8130::/44", "service": "Google Cloud", "scope": "us-east5" + }, { + "ipv6Prefix": "2600:1902:260::/44", + "service": "Google Cloud", + "scope": "us-east5" }, { "ipv4Prefix": "34.104.56.0/23", "service": "Google Cloud", @@ -3065,6 +3293,10 @@ "ipv6Prefix": "2600:1901:8150::/44", "service": "Google Cloud", "scope": "us-east7" + }, { + "ipv6Prefix": "2600:1902:270::/44", + "service": "Google Cloud", + "scope": "us-east7" }, { "ipv4Prefix": "34.0.128.0/19", "service": "Google Cloud", @@ -3089,6 +3321,10 @@ "ipv6Prefix": "2600:1901:8140::/44", "service": "Google Cloud", "scope": "us-south1" + }, { + "ipv6Prefix": "2600:1902:280::/44", + "service": "Google Cloud", + "scope": "us-south1" }, { "ipv4Prefix": "34.3.96.0/20", "service": "Google Cloud", @@ -3237,6 +3473,10 @@ "ipv6Prefix": "2600:1900:4040::/44", "service": "Google Cloud", "scope": "us-west1" + }, { + "ipv6Prefix": "2600:1902:290::/44", + "service": "Google Cloud", + "scope": "us-west1" }, { "ipv4Prefix": "34.2.76.0/23", "service": "Google Cloud", @@ -3305,6 +3545,10 @@ "ipv6Prefix": "2600:1900:4120::/44", "service": "Google Cloud", "scope": "us-west2" + }, { + "ipv6Prefix": "2600:1902:2a0::/44", + "service": "Google Cloud", + "scope": "us-west2" }, { "ipv4Prefix": "34.22.32.0/19", "service": "Google Cloud", @@ -3345,6 +3589,14 @@ "ipv6Prefix": "2600:1900:4170::/44", "service": "Google Cloud", "scope": "us-west3" + }, { + "ipv6Prefix": "2600:1902:2b0::/44", + "service": "Google Cloud", + "scope": "us-west3" + }, { + "ipv4Prefix": "8.228.0.0/19", + "service": "Google Cloud", + "scope": "us-west4" }, { "ipv4Prefix": "34.16.128.0/17", "service": "Google Cloud", @@ -3381,6 +3633,10 @@ "ipv6Prefix": "2600:1900:4180::/44", "service": "Google Cloud", "scope": "us-west4" + }, { + "ipv6Prefix": "2600:1902:2c0::/44", + "service": "Google Cloud", + "scope": "us-west4" }, { "ipv4Prefix": "34.2.32.0/20", "service": "Google Cloud", @@ -3401,5 +3657,9 @@ "ipv6Prefix": "2600:1900:4280::/44", "service": "Google Cloud", "scope": "us-west8" + }, { + "ipv6Prefix": "2600:1902:2d0::/44", + "service": "Google Cloud", + "scope": "us-west8" }] } diff --git a/wwwroot/ip-manifests/Oracle.json b/wwwroot/ip-manifests/oracle.json similarity index 95% rename from wwwroot/ip-manifests/Oracle.json rename to wwwroot/ip-manifests/oracle.json index be58061..774ade9 100644 --- a/wwwroot/ip-manifests/Oracle.json +++ b/wwwroot/ip-manifests/oracle.json @@ -1,445 +1,486 @@ { - "last_updated_timestamp": "2025-08-07T11:29:16.573477", + "last_updated_timestamp": "2025-12-16T03:49:16.132311", "regions": [ { - "region": "us-ashburn-1", + "region": "mx-monterrey-1", "cidrs": [ { - "cidr": "129.80.0.0/16", + "cidr": "40.233.0.0/19", "tags": [ "OCI" ] }, { - "cidr": "129.144.0.0/16", + "cidr": "139.177.96.0/21", "tags": [ "OCI" ] }, { - "cidr": "129.145.16.0/21", + "cidr": "157.137.160.0/19", "tags": [ "OCI" ] }, { - "cidr": "129.145.74.0/23", + "cidr": "64.181.146.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "129.145.76.0/22", + "cidr": "134.70.200.0/23", "tags": [ - "OCI" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "129.151.48.0/20", + "cidr": "139.177.104.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "129.152.40.0/22", + "cidr": "139.177.108.0/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "129.153.0.0/19", + "cidr": "140.91.90.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "129.153.32.0/20", + "cidr": "140.204.132.128/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "129.153.128.0/18", + "cidr": "157.137.253.0/24", + "tags": [ + "OSN" + ] + } + ] + }, + { + "region": "ca-toronto-1", + "cidrs": [ + { + "cidr": "40.233.64.0/18", "tags": [ "OCI" ] }, { - "cidr": "129.153.224.0/20", + "cidr": "129.153.48.0/20", "tags": [ "OCI" ] }, { - "cidr": "129.157.224.0/21", + "cidr": "132.145.96.0/20", "tags": [ "OCI" ] }, { - "cidr": "129.158.32.0/19", + "cidr": "140.238.128.0/19", "tags": [ "OCI" ] }, { - "cidr": "129.158.64.0/18", + "cidr": "150.230.24.0/21", "tags": [ "OCI" ] }, { - "cidr": "129.158.128.0/17", + "cidr": "155.248.216.0/21", "tags": [ "OCI" ] }, { - "cidr": "129.159.64.0/18", + "cidr": "161.153.224.0/20", "tags": [ "OCI" ] }, { - "cidr": "129.159.160.0/19", + "cidr": "161.153.248.0/21", "tags": [ "OCI" ] }, { - "cidr": "129.213.8.0/21", + "cidr": "192.18.144.0/20", "tags": [ "OCI" ] }, { - "cidr": "129.213.16.0/20", + "cidr": "207.135.27.0/24", "tags": [ "OCI" ] }, { - "cidr": "129.213.32.0/19", + "cidr": "134.70.72.0/22", "tags": [ - "OCI" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "129.213.64.0/18", + "cidr": "140.91.28.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "129.213.128.0/18", + "cidr": "140.204.0.128/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "129.213.192.0/20", + "cidr": "159.112.162.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "129.213.208.0/21", + "cidr": "159.112.168.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "132.145.128.0/18", + "cidr": "161.153.240.0/21", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "132.145.192.0/19", + "cidr": "192.29.8.0/21", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "132.226.32.0/19", + "cidr": "192.29.64.0/21", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.29.72.0/25", + "tags": [ + "OSN" + ] + }, + { + "cidr": "204.216.127.192/26", + "tags": [ + "OSN" + ] + } + ] + }, + { + "region": "ap-seoul-1", + "cidrs": [ + { + "cidr": "64.110.64.0/19", "tags": [ "OCI" ] }, { - "cidr": "138.2.208.0/20", + "cidr": "129.91.3.0/24", "tags": [ "OCI" ] }, { - "cidr": "141.148.0.0/18", + "cidr": "129.91.4.0/23", "tags": [ "OCI" ] }, { - "cidr": "141.148.64.0/19", + "cidr": "129.154.192.0/19", "tags": [ "OCI" ] }, { - "cidr": "142.0.160.0/21", + "cidr": "130.162.128.0/19", "tags": [ "OCI" ] }, { - "cidr": "143.47.96.0/19", + "cidr": "131.186.16.0/20", "tags": [ "OCI" ] }, { - "cidr": "150.136.0.0/16", + "cidr": "132.145.80.0/20", "tags": [ "OCI" ] }, { - "cidr": "150.230.160.0/19", + "cidr": "132.226.16.0/21", "tags": [ "OCI" ] }, { - "cidr": "152.70.32.0/22", + "cidr": "132.226.168.0/21", "tags": [ "OCI" ] }, { - "cidr": "152.70.192.0/20", + "cidr": "132.226.224.0/20", "tags": [ "OCI" ] }, { - "cidr": "157.151.128.0/17", + "cidr": "140.238.0.0/19", "tags": [ "OCI" ] }, { - "cidr": "158.101.96.0/19", + "cidr": "146.56.32.0/20", "tags": [ "OCI" ] }, { - "cidr": "193.122.128.0/17", + "cidr": "146.56.128.0/18", "tags": [ "OCI" ] }, { - "cidr": "193.123.128.0/19", + "cidr": "152.70.36.0/22", "tags": [ "OCI" ] }, { - "cidr": "205.147.88.0/23", + "cidr": "152.70.88.0/21", "tags": [ "OCI" ] }, { - "cidr": "207.135.4.0/22", + "cidr": "152.70.232.0/21", "tags": [ "OCI" ] }, { - "cidr": "207.135.10.0/23", + "cidr": "152.70.240.0/20", "tags": [ "OCI" ] }, { - "cidr": "207.135.12.0/22", + "cidr": "161.118.128.0/19", "tags": [ "OCI" ] }, { - "cidr": "207.135.29.0/24", + "cidr": "193.122.96.0/19", "tags": [ "OCI" ] }, { - "cidr": "64.181.152.0/21", + "cidr": "193.123.224.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "129.213.0.128/25", + "cidr": "217.142.128.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "129.213.2.128/25", + "cidr": "134.70.96.0/22", "tags": [ - "OSN" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "129.213.4.128/25", + "cidr": "140.91.40.0/23", "tags": [ "OSN" ] }, { - "cidr": "130.35.16.0/22", + "cidr": "140.204.24.128/25", "tags": [ "OSN" ] }, { - "cidr": "130.35.96.0/21", + "cidr": "146.56.61.192/26", "tags": [ "OSN" ] }, { - "cidr": "130.35.144.0/22", + "cidr": "161.33.253.0/24", "tags": [ "OSN" ] }, { - "cidr": "130.35.200.0/22", + "cidr": "192.29.20.0/22", "tags": [ "OSN" ] }, { - "cidr": "130.35.228.0/22", + "cidr": "192.29.24.0/21", "tags": [ "OSN" ] - }, + } + ] + }, + { + "region": "ap-osaka-1", + "cidrs": [ { - "cidr": "134.70.24.0/21", + "cidr": "64.110.96.0/20", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OCI" ] }, { - "cidr": "134.70.32.0/22", + "cidr": "64.110.112.0/21", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OCI" ] }, { - "cidr": "138.1.48.0/21", + "cidr": "138.2.32.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.86.216.0/21", + "cidr": "140.83.48.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.91.10.0/23", + "cidr": "140.83.80.0/21", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.91.12.0/22", + "cidr": "141.147.144.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "147.154.0.0/19", + "cidr": "150.230.0.0/21", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "147.154.32.0/25", + "cidr": "150.230.56.0/21", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "147.154.36.0/22", + "cidr": "152.69.192.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "147.154.40.0/21", + "cidr": "152.70.80.0/21", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "147.154.48.0/21", + "cidr": "161.33.0.0/18", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "147.154.56.0/22", + "cidr": "168.138.32.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "157.151.64.0/23", + "cidr": "217.142.224.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "157.151.68.0/22", + "cidr": "129.149.63.192/26", "tags": [ "OSN" ] }, { - "cidr": "157.151.72.0/21", + "cidr": "134.70.112.0/22", "tags": [ - "OSN" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "157.151.80.0/20", + "cidr": "140.91.48.0/23", "tags": [ "OSN" ] }, { - "cidr": "157.151.96.0/19", + "cidr": "140.204.30.128/25", "tags": [ "OSN" ] }, { - "cidr": "169.155.128.0/19", + "cidr": "192.29.240.0/22", "tags": [ "OSN" ] }, { - "cidr": "170.9.192.0/19", + "cidr": "192.29.248.0/21", "tags": [ "OSN" ] @@ -447,582 +488,600 @@ ] }, { - "region": "us-phoenix-1", + "region": "sa-saopaulo-1", "cidrs": [ { - "cidr": "129.146.0.0/21", + "cidr": "64.181.160.0/19", "tags": [ "OCI" ] }, { - "cidr": "129.146.8.0/22", + "cidr": "129.148.16.0/20", "tags": [ "OCI" ] }, { - "cidr": "129.146.16.0/20", + "cidr": "129.148.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "129.146.32.0/19", + "cidr": "129.151.32.0/21", "tags": [ "OCI" ] }, { - "cidr": "129.146.64.0/18", + "cidr": "129.159.48.0/20", "tags": [ "OCI" ] }, { - "cidr": "129.146.128.0/17", + "cidr": "132.226.160.0/21", "tags": [ "OCI" ] }, { - "cidr": "129.150.64.0/18", + "cidr": "132.226.240.0/20", "tags": [ "OCI" ] }, { - "cidr": "129.150.128.0/17", + "cidr": "136.248.64.0/18", "tags": [ "OCI" ] }, { - "cidr": "129.151.0.0/19", + "cidr": "137.131.128.0/17", "tags": [ "OCI" ] }, { - "cidr": "129.152.128.0/19", + "cidr": "140.238.176.0/20", "tags": [ "OCI" ] }, { - "cidr": "129.153.64.0/18", + "cidr": "140.238.236.0/22", "tags": [ "OCI" ] }, { - "cidr": "129.153.192.0/19", + "cidr": "144.22.64.0/18", "tags": [ "OCI" ] }, { - "cidr": "129.191.0.0/17", + "cidr": "144.22.128.0/17", "tags": [ "OCI" ] }, { - "cidr": "132.226.24.0/21", + "cidr": "146.235.24.0/21", "tags": [ "OCI" ] }, { - "cidr": "132.226.64.0/18", + "cidr": "146.235.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "132.226.144.0/20", + "cidr": "150.230.64.0/19", "tags": [ "OCI" ] }, { - "cidr": "137.131.0.0/18", + "cidr": "150.230.224.0/21", "tags": [ "OCI" ] }, { - "cidr": "141.147.240.0/20", + "cidr": "152.67.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "141.148.128.0/18", + "cidr": "152.70.208.0/20", "tags": [ "OCI" ] }, { - "cidr": "144.24.0.0/18", + "cidr": "159.112.176.0/20", "tags": [ "OCI" ] }, { - "cidr": "152.70.128.0/19", + "cidr": "163.176.0.0/16", "tags": [ "OCI" ] }, { - "cidr": "158.101.0.0/18", + "cidr": "164.152.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "160.34.6.0/23", + "cidr": "167.234.224.0/19", "tags": [ "OCI" ] }, { - "cidr": "160.34.8.0/22", + "cidr": "168.75.64.0/19", "tags": [ "OCI" ] }, { - "cidr": "161.153.0.0/17", + "cidr": "168.75.96.0/20", "tags": [ "OCI" ] }, { - "cidr": "193.123.0.0/19", + "cidr": "168.138.124.0/22", "tags": [ "OCI" ] }, { - "cidr": "193.123.192.0/19", + "cidr": "168.138.128.0/19", "tags": [ "OCI" ] }, { - "cidr": "207.135.0.0/22", + "cidr": "168.138.224.0/19", "tags": [ "OCI" ] }, { - "cidr": "207.135.25.0/24", + "cidr": "129.148.12.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "207.135.26.0/24", + "cidr": "134.70.84.0/22", "tags": [ - "OCI" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "207.135.28.0/24", + "cidr": "140.91.34.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "129.146.12.128/25", + "cidr": "140.204.12.128/25", "tags": [ "OSN" ] }, { - "cidr": "129.146.13.128/25", + "cidr": "157.137.128.0/22", "tags": [ "OSN" ] }, { - "cidr": "129.146.14.128/25", + "cidr": "168.129.246.0/24", "tags": [ "OSN" ] }, { - "cidr": "129.148.8.0/22", + "cidr": "192.29.128.0/23", "tags": [ "OSN" ] }, { - "cidr": "129.149.28.0/22", + "cidr": "192.29.130.0/24", "tags": [ "OSN" ] }, { - "cidr": "130.35.0.0/22", + "cidr": "192.29.134.0/23", "tags": [ "OSN" ] }, { - "cidr": "130.35.128.0/22", + "cidr": "192.29.137.192/26", "tags": [ "OSN" ] }, { - "cidr": "134.65.52.128/25", + "cidr": "192.29.138.0/23", "tags": [ "OSN" ] }, { - "cidr": "134.65.208.0/20", + "cidr": "192.29.140.0/22", "tags": [ "OSN" ] + } + ] + }, + { + "region": "us-chicago-1", + "cidrs": [ + { + "cidr": "64.181.192.0/19", + "tags": [ + "OCI" + ] }, { - "cidr": "134.70.8.0/21", + "cidr": "131.186.0.0/21", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OCI" ] }, { - "cidr": "134.70.16.0/22", + "cidr": "149.130.208.0/20", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OCI" ] }, { - "cidr": "136.248.128.0/19", + "cidr": "163.192.96.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "138.1.32.0/21", + "cidr": "163.192.192.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "138.1.112.0/20", + "cidr": "163.192.240.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.91.4.0/22", + "cidr": "164.152.16.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.91.8.0/23", + "cidr": "164.152.104.0/21", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "146.235.0.0/20", + "cidr": "168.129.160.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "147.154.96.0/20", + "cidr": "170.9.224.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "147.154.112.0/21", + "cidr": "207.211.160.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "147.154.120.0/22", + "cidr": "64.181.136.0/22", "tags": [ "OSN" ] }, { - "cidr": "161.153.128.0/18", + "cidr": "64.181.140.0/23", "tags": [ "OSN" ] }, { - "cidr": "192.18.200.0/21", + "cidr": "64.181.150.0/23", "tags": [ "OSN" ] }, { - "cidr": "192.29.96.0/20", + "cidr": "131.186.8.0/22", "tags": [ "OSN" ] }, { - "cidr": "204.216.192.0/20", + "cidr": "131.186.12.0/25", "tags": [ "OSN" ] }, { - "cidr": "207.127.124.0/22", + "cidr": "134.70.188.0/22", "tags": [ - "OSN" + "OSN", + "OBJECT_STORAGE" ] - } - ] - }, - { - "region": "sa-saopaulo-1", - "cidrs": [ + }, { - "cidr": "64.181.160.0/19", + "cidr": "134.70.192.0/21", "tags": [ - "OCI" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "129.148.16.0/20", + "cidr": "140.91.84.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "129.148.32.0/19", + "cidr": "140.91.88.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "129.151.32.0/21", + "cidr": "140.204.122.128/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "129.159.48.0/20", + "cidr": "140.204.124.128/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "132.226.160.0/21", + "cidr": "140.204.126.128/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "132.226.240.0/20", + "cidr": "146.235.252.64/26", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "136.248.64.0/18", + "cidr": "146.235.252.128/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "137.131.128.0/17", + "cidr": "146.235.253.0/24", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "140.238.176.0/20", + "cidr": "146.235.254.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "140.238.236.0/22", + "cidr": "194.164.156.0/22", + "tags": [ + "OSN" + ] + } + ] + }, + { + "region": "us-sanjose-1", + "cidrs": [ + { + "cidr": "64.181.224.0/19", "tags": [ "OCI" ] }, { - "cidr": "144.22.64.0/18", + "cidr": "129.159.32.0/20", "tags": [ "OCI" ] }, { - "cidr": "144.22.128.0/17", + "cidr": "138.2.224.0/20", "tags": [ "OCI" ] }, { - "cidr": "146.235.24.0/21", + "cidr": "146.235.192.0/19", "tags": [ "OCI" ] }, { - "cidr": "146.235.32.0/19", + "cidr": "146.235.224.0/20", "tags": [ "OCI" ] }, { - "cidr": "150.230.64.0/19", + "cidr": "150.230.32.0/20", "tags": [ "OCI" ] }, { - "cidr": "150.230.224.0/21", + "cidr": "152.67.224.0/19", "tags": [ "OCI" ] }, { - "cidr": "152.67.32.0/19", + "cidr": "152.70.112.0/20", "tags": [ "OCI" ] }, { - "cidr": "152.70.208.0/20", + "cidr": "155.248.192.0/20", "tags": [ "OCI" ] }, { - "cidr": "159.112.176.0/20", + "cidr": "155.248.208.0/21", "tags": [ "OCI" ] }, { - "cidr": "163.176.0.0/16", + "cidr": "159.54.160.0/19", "tags": [ "OCI" ] }, { - "cidr": "164.152.32.0/19", + "cidr": "163.192.0.0/18", "tags": [ "OCI" ] }, { - "cidr": "167.234.224.0/19", + "cidr": "163.192.64.0/19", "tags": [ "OCI" ] }, { - "cidr": "168.75.64.0/19", + "cidr": "165.1.64.0/20", "tags": [ "OCI" ] }, { - "cidr": "168.75.96.0/20", + "cidr": "167.234.208.0/20", "tags": [ "OCI" ] }, { - "cidr": "168.138.124.0/22", + "cidr": "170.9.0.0/19", "tags": [ "OCI" ] }, { - "cidr": "168.138.128.0/19", + "cidr": "170.9.48.0/20", "tags": [ "OCI" ] }, { - "cidr": "168.138.224.0/19", + "cidr": "192.9.128.0/19", "tags": [ "OCI" ] }, { - "cidr": "129.148.12.0/22", + "cidr": "192.9.224.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "134.70.84.0/22", + "cidr": "192.18.128.0/20", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OCI" ] }, { - "cidr": "140.91.34.0/23", + "cidr": "129.148.160.0/23", "tags": [ "OSN" ] }, { - "cidr": "140.204.12.128/25", + "cidr": "129.148.164.0/25", "tags": [ "OSN" ] }, { - "cidr": "168.129.246.0/24", + "cidr": "129.148.166.0/23", "tags": [ "OSN" ] }, { - "cidr": "192.29.128.0/23", + "cidr": "129.149.56.0/22", "tags": [ "OSN" ] }, { - "cidr": "192.29.130.0/24", + "cidr": "134.70.124.0/22", "tags": [ - "OSN" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "192.29.134.0/23", + "cidr": "140.91.54.0/23", "tags": [ "OSN" ] }, { - "cidr": "192.29.137.192/26", + "cidr": "140.204.58.128/25", "tags": [ "OSN" ] }, { - "cidr": "192.29.138.0/23", + "cidr": "146.235.251.192/26", "tags": [ "OSN" ] }, { - "cidr": "192.29.140.0/22", + "cidr": "204.216.120.0/22", "tags": [ "OSN" ] @@ -1030,137 +1089,125 @@ ] }, { - "region": "ap-singapore-1", + "region": "ap-hyderabad-1", "cidrs": [ { - "cidr": "129.150.32.0/19", - "tags": [ - "OCI" - ] - }, - { - "cidr": "134.185.80.0/20", + "cidr": "68.233.96.0/20", "tags": [ "OCI" ] }, { - "cidr": "138.2.64.0/19", + "cidr": "68.233.112.0/21", "tags": [ "OCI" ] }, { - "cidr": "138.2.96.0/20", + "cidr": "129.154.32.0/20", "tags": [ "OCI" ] }, { - "cidr": "140.245.96.0/19", + "cidr": "129.159.16.0/21", "tags": [ "OCI" ] }, { - "cidr": "146.235.16.0/21", + "cidr": "129.159.224.0/20", "tags": [ "OCI" ] }, { - "cidr": "152.69.208.0/20", + "cidr": "132.226.176.0/21", "tags": [ "OCI" ] }, { - "cidr": "158.178.224.0/20", + "cidr": "140.245.192.0/18", "tags": [ "OCI" ] }, { - "cidr": "158.178.240.0/21", + "cidr": "144.24.128.0/19", "tags": [ "OCI" ] }, { - "cidr": "161.118.192.0/18", + "cidr": "150.230.128.0/20", "tags": [ "OCI" ] }, { - "cidr": "168.107.64.0/19", + "cidr": "152.67.160.0/19", "tags": [ "OCI" ] }, { - "cidr": "168.138.160.0/19", + "cidr": "152.70.64.0/20", "tags": [ "OCI" ] }, { - "cidr": "213.35.96.0/19", + "cidr": "207.135.18.0/23", "tags": [ "OCI" ] }, { - "cidr": "129.148.176.0/22", + "cidr": "129.148.128.0/23", "tags": [ "OSN" ] }, { - "cidr": "129.148.180.0/25", + "cidr": "129.148.132.0/22", "tags": [ "OSN" ] }, { - "cidr": "129.148.184.0/22", + "cidr": "129.148.168.0/21", "tags": [ "OSN" ] }, { - "cidr": "134.70.128.0/22", + "cidr": "134.70.120.0/22", "tags": [ "OSN", "OBJECT_STORAGE" ] }, { - "cidr": "140.91.56.0/23", - "tags": [ - "OSN" - ] - }, - { - "cidr": "140.204.54.128/25", + "cidr": "134.185.76.0/24", "tags": [ "OSN" ] }, { - "cidr": "159.112.172.0/22", + "cidr": "140.91.52.0/23", "tags": [ "OSN" ] }, { - "cidr": "168.110.244.0/22", + "cidr": "140.204.50.128/25", "tags": [ "OSN" ] }, { - "cidr": "207.127.109.192/26", + "cidr": "204.216.119.192/26", "tags": [ "OSN" ] @@ -1168,119 +1215,83 @@ ] }, { - "region": "sa-santiago-1", + "region": "ca-montreal-1", "cidrs": [ { - "cidr": "129.91.0.0/23", - "tags": [ - "OCI" - ] - }, - { - "cidr": "129.91.2.0/24", - "tags": [ - "OCI" - ] - }, - { - "cidr": "129.151.96.0/19", - "tags": [ - "OCI" - ] - }, - { - "cidr": "136.248.240.0/21", - "tags": [ - "OCI" - ] - }, - { - "cidr": "144.22.32.0/19", - "tags": [ - "OCI" - ] - }, - { - "cidr": "146.235.240.0/21", + "cidr": "68.233.120.0/21", "tags": [ "OCI" ] }, { - "cidr": "159.112.128.0/20", + "cidr": "151.145.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "159.112.144.0/21", + "cidr": "155.248.224.0/20", "tags": [ "OCI" ] }, { - "cidr": "161.153.192.0/20", + "cidr": "168.138.64.0/19", "tags": [ "OCI" ] }, { - "cidr": "161.153.216.0/21", + "cidr": "170.9.32.0/20", "tags": [ "OCI" ] }, { - "cidr": "194.164.248.0/21", + "cidr": "204.216.104.0/21", "tags": [ "OCI" ] }, { - "cidr": "64.181.132.0/24", + "cidr": "38.104.155.92/31", "tags": [ "OSN" ] }, { - "cidr": "129.148.152.0/23", + "cidr": "134.70.116.0/22", "tags": [ - "OSN" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "129.149.32.0/23", + "cidr": "140.91.50.0/23", "tags": [ "OSN" ] }, { - "cidr": "129.149.36.0/22", + "cidr": "140.204.46.128/25", "tags": [ "OSN" ] }, { - "cidr": "134.70.152.0/22", - "tags": [ - "OSN", - "OBJECT_STORAGE" - ] - }, - { - "cidr": "140.91.66.0/23", + "cidr": "168.129.240.0/22", "tags": [ "OSN" ] }, { - "cidr": "140.204.86.128/25", + "cidr": "192.29.80.0/22", "tags": [ "OSN" ] }, { - "cidr": "168.129.244.0/24", + "cidr": "192.29.88.0/21", "tags": [ "OSN" ] @@ -1288,137 +1299,125 @@ ] }, { - "region": "me-abudhabi-1", + "region": "me-jeddah-1", "cidrs": [ { - "cidr": "129.151.128.0/19", + "cidr": "79.72.0.0/20", "tags": [ "OCI" ] }, { - "cidr": "129.149.48.0/22", + "cidr": "80.225.64.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "129.149.52.0/25", + "cidr": "81.208.160.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "134.70.144.0/22", + "cidr": "81.208.188.0/22", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OCI" ] }, { - "cidr": "140.91.64.0/23", + "cidr": "130.110.96.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.204.80.128/25", + "cidr": "141.147.128.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "141.253.216.0/21", + "cidr": "144.24.208.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "145.241.178.0/23", + "cidr": "150.230.48.0/21", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "207.127.72.0/22", - "tags": [ - "OSN" - ] - } - ] - }, - { - "region": "af-johannesburg-1", - "cidrs": [ - { - "cidr": "84.8.128.0/20", + "cidr": "150.230.240.0/21", "tags": [ "OCI" ] }, { - "cidr": "129.151.160.0/19", + "cidr": "158.101.224.0/19", "tags": [ "OCI" ] }, { - "cidr": "145.241.184.0/21", + "cidr": "193.122.64.0/19", "tags": [ "OCI" ] }, { - "cidr": "158.180.226.0/23", + "cidr": "207.127.96.0/21", "tags": [ "OCI" ] }, { - "cidr": "204.216.112.0/23", + "cidr": "207.135.30.0/23", "tags": [ "OCI" ] }, { - "cidr": "129.149.64.0/22", + "cidr": "134.70.100.0/22", "tags": [ - "OSN" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "129.149.68.0/25", + "cidr": "140.91.42.0/23", "tags": [ "OSN" ] }, { - "cidr": "130.110.28.0/23", + "cidr": "140.204.34.128/25", "tags": [ "OSN" ] }, { - "cidr": "134.70.160.0/22", + "cidr": "192.29.112.0/20", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OSN" ] }, { - "cidr": "140.91.70.0/23", + "cidr": "192.29.224.0/22", "tags": [ "OSN" ] }, { - "cidr": "140.204.96.128/25", + "cidr": "192.29.232.0/25", "tags": [ "OSN" ] }, { - "cidr": "158.179.196.0/24", + "cidr": "192.29.232.192/26", "tags": [ "OSN" ] @@ -1594,485 +1593,444 @@ ] }, { - "region": "ap-mumbai-1", + "region": "eu-milan-1", "cidrs": [ { - "cidr": "80.225.192.0/18", + "cidr": "79.72.40.0/21", "tags": [ "OCI" ] }, { - "cidr": "129.151.40.0/21", + "cidr": "80.225.80.0/20", "tags": [ "OCI" ] }, { - "cidr": "129.154.224.0/19", + "cidr": "89.168.16.0/20", "tags": [ "OCI" ] }, { - "cidr": "132.226.184.0/21", + "cidr": "129.152.0.0/19", "tags": [ "OCI" ] }, { - "cidr": "140.238.160.0/21", + "cidr": "130.110.0.0/20", "tags": [ "OCI" ] }, { - "cidr": "140.238.224.0/21", + "cidr": "130.110.16.0/21", "tags": [ "OCI" ] }, { - "cidr": "140.238.232.0/22", + "cidr": "130.110.64.0/19", "tags": [ "OCI" ] }, { - "cidr": "140.238.240.0/20", + "cidr": "158.180.228.0/22", "tags": [ "OCI" ] }, { - "cidr": "140.245.0.0/19", + "cidr": "158.180.232.0/21", "tags": [ "OCI" ] }, { - "cidr": "141.148.192.0/19", + "cidr": "204.216.208.0/20", "tags": [ "OCI" ] }, { - "cidr": "144.24.96.0/19", + "cidr": "129.149.112.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "146.56.48.0/21", + "cidr": "129.149.118.0/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "150.230.232.0/21", + "cidr": "134.70.168.0/22", "tags": [ - "OCI" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "152.67.0.0/19", + "cidr": "140.91.74.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "155.248.240.0/20", - "tags": [ - "OCI" - ] - }, - { - "cidr": "161.118.160.0/19", - "tags": [ - "OCI" - ] - }, - { - "cidr": "168.138.112.0/21", - "tags": [ - "OCI" - ] - }, - { - "cidr": "207.135.16.0/23", - "tags": [ - "OCI" - ] - }, - { - "cidr": "134.70.76.0/22", - "tags": [ - "OSN", - "OBJECT_STORAGE" - ] - }, - { - "cidr": "140.91.30.0/23", + "cidr": "140.204.104.128/25", "tags": [ "OSN" ] }, { - "cidr": "140.204.4.128/25", + "cidr": "141.253.215.0/24", "tags": [ "OSN" ] }, { - "cidr": "168.110.240.0/22", + "cidr": "158.179.8.0/22", "tags": [ "OSN" ] - }, + } + ] + }, + { + "region": "eu-madrid-1", + "cidrs": [ { - "cidr": "192.29.48.0/22", + "cidr": "79.72.48.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.160.0/21", + "cidr": "89.168.0.0/21", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.168.0/22", + "cidr": "130.110.232.0/22", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.172.0/24", - "tags": [ - "OSN" - ] - } - ] - }, - { - "region": "uk-cardiff-1", - "cidrs": [ - { - "cidr": "129.151.64.0/19", + "cidr": "141.253.192.0/20", "tags": [ "OCI" ] }, { - "cidr": "134.65.56.0/21", + "cidr": "143.47.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "144.24.224.0/21", + "cidr": "158.179.208.0/20", "tags": [ "OCI" ] }, { - "cidr": "129.148.200.0/21", + "cidr": "79.72.20.0/23", "tags": [ "OSN" ] }, { - "cidr": "129.149.16.0/23", + "cidr": "130.110.239.0/24", "tags": [ "OSN" ] }, { - "cidr": "129.149.20.0/23", + "cidr": "134.70.176.0/22", "tags": [ - "OSN" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "129.149.22.0/25", + "cidr": "140.91.78.0/23", "tags": [ "OSN" ] }, { - "cidr": "129.149.22.192/26", + "cidr": "140.204.112.128/25", "tags": [ "OSN" ] }, { - "cidr": "129.149.23.0/24", + "cidr": "155.248.136.0/22", "tags": [ "OSN" ] }, { - "cidr": "130.110.24.0/22", + "cidr": "155.248.140.0/25", "tags": [ "OSN" ] - }, + } + ] + }, + { + "region": "uk-london-1", + "cidrs": [ { - "cidr": "134.70.136.0/22", + "cidr": "79.72.64.0/19", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OCI" ] }, { - "cidr": "140.91.60.0/23", + "cidr": "84.8.144.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.204.70.128/25", + "cidr": "129.156.0.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "209.17.60.0/22", + "cidr": "130.110.32.0/19", "tags": [ - "OSN" + "OCI" ] - } - ] - }, - { - "region": "eu-milan-1", - "cidrs": [ + }, { - "cidr": "79.72.40.0/21", + "cidr": "130.162.160.0/19", "tags": [ "OCI" ] }, { - "cidr": "80.225.80.0/20", + "cidr": "132.145.8.0/21", "tags": [ "OCI" ] }, { - "cidr": "89.168.16.0/20", + "cidr": "132.145.16.0/20", "tags": [ "OCI" ] }, { - "cidr": "129.152.0.0/19", + "cidr": "132.145.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "130.110.0.0/20", + "cidr": "132.145.64.0/20", "tags": [ "OCI" ] }, { - "cidr": "130.110.16.0/21", + "cidr": "132.226.128.0/21", "tags": [ "OCI" ] }, { - "cidr": "130.110.64.0/19", + "cidr": "132.226.208.0/21", "tags": [ "OCI" ] }, { - "cidr": "158.180.228.0/22", + "cidr": "140.238.64.0/18", "tags": [ "OCI" ] }, { - "cidr": "158.180.232.0/21", + "cidr": "141.144.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "204.216.208.0/20", + "cidr": "141.144.84.0/22", "tags": [ "OCI" ] }, { - "cidr": "129.149.112.0/22", + "cidr": "141.144.96.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "129.149.118.0/25", + "cidr": "141.145.40.0/22", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "134.70.168.0/22", + "cidr": "141.145.112.0/20", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OCI" ] }, { - "cidr": "140.91.74.0/23", + "cidr": "141.147.64.0/18", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.204.104.128/25", + "cidr": "143.47.224.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "141.253.215.0/24", + "cidr": "144.21.48.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "158.179.8.0/22", + "cidr": "144.21.64.0/18", "tags": [ - "OSN" + "OCI" ] - } - ] - }, - { - "region": "ca-toronto-1", - "cidrs": [ + }, { - "cidr": "40.233.64.0/18", + "cidr": "145.241.192.0/18", "tags": [ "OCI" ] }, { - "cidr": "129.153.48.0/20", + "cidr": "150.230.112.0/20", "tags": [ "OCI" ] }, { - "cidr": "132.145.96.0/20", + "cidr": "152.67.128.0/19", "tags": [ "OCI" ] }, { - "cidr": "140.238.128.0/19", + "cidr": "193.123.176.0/20", "tags": [ "OCI" ] }, { - "cidr": "150.230.24.0/21", + "cidr": "207.135.20.0/23", "tags": [ "OCI" ] }, { - "cidr": "155.248.216.0/21", + "cidr": "130.35.112.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "161.153.224.0/20", + "cidr": "130.35.116.0/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "161.153.248.0/21", + "cidr": "132.145.0.128/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "192.18.144.0/20", + "cidr": "132.145.2.128/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "207.135.27.0/24", + "cidr": "132.145.4.128/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "134.70.72.0/22", + "cidr": "134.70.56.0/21", "tags": [ "OSN", "OBJECT_STORAGE" ] }, { - "cidr": "140.91.28.0/23", + "cidr": "134.70.64.0/22", "tags": [ - "OSN" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "140.204.0.128/25", + "cidr": "138.1.16.0/22", "tags": [ "OSN" ] }, { - "cidr": "159.112.162.0/23", + "cidr": "138.1.80.0/22", "tags": [ "OSN" ] }, { - "cidr": "159.112.168.0/22", + "cidr": "140.91.22.0/23", "tags": [ "OSN" ] }, { - "cidr": "161.153.240.0/21", + "cidr": "140.91.24.0/22", "tags": [ "OSN" ] }, { - "cidr": "192.29.8.0/21", + "cidr": "145.241.144.0/21", "tags": [ "OSN" ] }, { - "cidr": "192.29.64.0/21", + "cidr": "147.154.224.0/20", "tags": [ "OSN" ] }, { - "cidr": "192.29.72.0/25", + "cidr": "147.154.240.0/21", "tags": [ "OSN" ] }, { - "cidr": "204.216.127.192/26", + "cidr": "147.154.255.128/25", "tags": [ "OSN" ] @@ -2080,479 +2038,425 @@ ] }, { - "region": "ap-sydney-1", + "region": "eu-frankfurt-1", "cidrs": [ { - "cidr": "129.91.16.0/21", + "cidr": "79.76.96.0/19", "tags": [ "OCI" ] }, { - "cidr": "129.154.64.0/18", + "cidr": "89.168.64.0/18", "tags": [ "OCI" ] }, { - "cidr": "129.154.168.0/22", + "cidr": "92.5.0.0/17", "tags": [ "OCI" ] }, { - "cidr": "140.238.192.0/20", + "cidr": "92.5.128.0/18", "tags": [ "OCI" ] }, { - "cidr": "150.230.8.0/21", + "cidr": "129.159.0.0/20", "tags": [ "OCI" ] }, { - "cidr": "152.67.96.0/19", + "cidr": "129.159.24.0/21", "tags": [ "OCI" ] }, { - "cidr": "152.69.160.0/20", + "cidr": "129.159.192.0/19", "tags": [ "OCI" ] }, { - "cidr": "152.70.228.0/22", + "cidr": "129.159.240.0/20", "tags": [ "OCI" ] }, { - "cidr": "158.178.136.0/21", + "cidr": "130.61.8.0/21", "tags": [ "OCI" ] }, { - "cidr": "158.180.4.0/22", + "cidr": "130.61.16.0/20", "tags": [ "OCI" ] }, { - "cidr": "159.13.32.0/19", + "cidr": "130.61.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "161.33.224.0/20", + "cidr": "130.61.64.0/18", "tags": [ "OCI" ] }, { - "cidr": "161.33.240.0/21", + "cidr": "130.61.128.0/17", "tags": [ "OCI" ] }, { - "cidr": "168.138.96.0/20", + "cidr": "130.162.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "192.9.160.0/19", + "cidr": "130.162.64.0/18", "tags": [ "OCI" ] }, { - "cidr": "129.148.0.0/21", - "tags": [ - "OSN" - ] - }, - { - "cidr": "129.148.156.0/22", - "tags": [ - "OSN" - ] - }, - { - "cidr": "134.70.92.0/22", - "tags": [ - "OSN", - "OBJECT_STORAGE" - ] - }, - { - "cidr": "134.185.72.0/22", - "tags": [ - "OSN" - ] - }, - { - "cidr": "140.91.38.0/23", - "tags": [ - "OSN" - ] - }, - { - "cidr": "140.204.20.128/25", - "tags": [ - "OSN" - ] - }, - { - "cidr": "168.110.64.0/19", - "tags": [ - "OSN" - ] - }, - { - "cidr": "168.110.224.0/20", + "cidr": "130.162.208.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.144.0/23", + "cidr": "130.162.224.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.148.0/23", + "cidr": "132.145.224.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.151.0/24", + "cidr": "132.226.192.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.152.0/22", + "cidr": "138.2.128.0/18", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.158.0/23", + "cidr": "138.3.240.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "207.127.107.192/26", - "tags": [ - "OSN" - ] - } - ] - }, - { - "region": "ap-seoul-1", - "cidrs": [ - { - "cidr": "64.110.64.0/19", + "cidr": "140.86.0.0/20", "tags": [ "OCI" ] }, { - "cidr": "129.91.3.0/24", + "cidr": "140.86.32.0/20", "tags": [ "OCI" ] }, { - "cidr": "129.91.4.0/23", + "cidr": "140.86.48.0/21", "tags": [ "OCI" ] }, { - "cidr": "129.154.192.0/19", + "cidr": "140.86.62.0/23", "tags": [ "OCI" ] }, { - "cidr": "130.162.128.0/19", + "cidr": "140.86.64.0/20", "tags": [ "OCI" ] }, { - "cidr": "131.186.16.0/20", + "cidr": "140.86.96.0/23", "tags": [ "OCI" ] }, { - "cidr": "132.145.80.0/20", + "cidr": "140.86.156.0/23", "tags": [ "OCI" ] }, { - "cidr": "132.226.16.0/21", + "cidr": "141.144.224.0/19", "tags": [ "OCI" ] }, { - "cidr": "132.226.168.0/21", + "cidr": "141.147.0.0/18", "tags": [ "OCI" ] }, { - "cidr": "132.226.224.0/20", + "cidr": "144.24.160.0/19", "tags": [ "OCI" ] }, { - "cidr": "140.238.0.0/19", + "cidr": "150.230.144.0/20", "tags": [ "OCI" ] }, { - "cidr": "146.56.32.0/20", + "cidr": "152.70.0.0/19", "tags": [ "OCI" ] }, { - "cidr": "146.56.128.0/18", + "cidr": "152.70.40.0/21", "tags": [ "OCI" ] }, { - "cidr": "152.70.36.0/22", + "cidr": "152.70.160.0/19", "tags": [ "OCI" ] }, { - "cidr": "152.70.88.0/21", + "cidr": "158.101.160.0/19", "tags": [ "OCI" ] }, { - "cidr": "152.70.232.0/21", + "cidr": "158.180.16.0/20", "tags": [ "OCI" ] }, { - "cidr": "152.70.240.0/20", + "cidr": "158.180.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "161.118.128.0/19", + "cidr": "193.122.0.0/20", "tags": [ "OCI" ] }, { - "cidr": "193.122.96.0/19", + "cidr": "193.122.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "193.123.224.0/19", + "cidr": "193.227.135.0/24", "tags": [ "OCI" ] }, { - "cidr": "217.142.128.0/19", + "cidr": "207.135.8.0/23", "tags": [ "OCI" ] }, { - "cidr": "134.70.96.0/22", + "cidr": "92.5.240.0/21", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OSN" ] }, { - "cidr": "140.91.40.0/23", + "cidr": "92.5.248.0/22", "tags": [ "OSN" ] }, { - "cidr": "140.204.24.128/25", + "cidr": "130.61.0.128/25", "tags": [ "OSN" ] }, { - "cidr": "146.56.61.192/26", + "cidr": "130.61.2.128/25", "tags": [ "OSN" ] }, { - "cidr": "161.33.253.0/24", + "cidr": "130.61.4.128/25", "tags": [ "OSN" ] }, { - "cidr": "192.29.20.0/22", + "cidr": "134.70.40.0/21", "tags": [ - "OSN" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "192.29.24.0/21", + "cidr": "134.70.48.0/22", "tags": [ - "OSN" + "OSN", + "OBJECT_STORAGE" ] - } - ] - }, - { - "region": "ap-hyderabad-1", - "cidrs": [ + }, { - "cidr": "68.233.96.0/20", + "cidr": "138.1.0.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "68.233.112.0/21", + "cidr": "138.1.40.0/21", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "129.154.32.0/20", + "cidr": "138.1.64.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "129.159.16.0/21", + "cidr": "138.1.108.0/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "129.159.224.0/20", + "cidr": "140.91.16.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "132.226.176.0/21", + "cidr": "140.91.20.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "140.245.192.0/18", + "cidr": "147.154.128.0/19", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "144.24.128.0/19", + "cidr": "147.154.160.0/20", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "150.230.128.0/20", + "cidr": "147.154.176.0/21", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "152.67.160.0/19", + "cidr": "147.154.184.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "152.70.64.0/20", + "cidr": "147.154.189.128/25", "tags": [ - "OCI" + "OSN" ] - }, + } + ] + }, + { + "region": "eu-madrid-3", + "cidrs": [ { - "cidr": "207.135.18.0/23", + "cidr": "80.225.184.0/21", "tags": [ "OCI" ] }, { - "cidr": "129.148.128.0/23", + "cidr": "80.225.160.0/26", "tags": [ "OSN" ] }, { - "cidr": "129.148.132.0/22", + "cidr": "80.225.160.128/25", "tags": [ "OSN" ] }, { - "cidr": "129.148.168.0/21", + "cidr": "80.225.161.192/26", "tags": [ "OSN" ] }, { - "cidr": "134.70.120.0/22", + "cidr": "80.225.162.0/23", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OSN" ] }, { - "cidr": "134.185.76.0/24", + "cidr": "80.225.164.0/22", "tags": [ "OSN" ] }, { - "cidr": "140.91.52.0/23", + "cidr": "80.225.168.0/22", "tags": [ "OSN" ] }, { - "cidr": "140.204.50.128/25", + "cidr": "80.225.176.0/23", "tags": [ "OSN" ] }, { - "cidr": "204.216.119.192/26", + "cidr": "80.225.178.128/25", "tags": [ "OSN" ] @@ -2560,143 +2464,167 @@ ] }, { - "region": "ap-chuncheon-1", + "region": "ap-mumbai-1", "cidrs": [ { - "cidr": "129.154.48.0/20", + "cidr": "80.225.192.0/18", "tags": [ "OCI" ] }, { - "cidr": "134.185.96.0/19", + "cidr": "92.4.64.0/19", "tags": [ "OCI" ] }, { - "cidr": "138.2.112.0/20", + "cidr": "129.151.40.0/21", "tags": [ "OCI" ] }, { - "cidr": "140.245.64.0/20", + "cidr": "129.154.224.0/19", "tags": [ "OCI" ] }, { - "cidr": "144.24.64.0/19", + "cidr": "132.226.184.0/21", "tags": [ "OCI" ] }, { - "cidr": "146.56.96.0/20", + "cidr": "140.238.160.0/21", "tags": [ "OCI" ] }, { - "cidr": "146.56.112.0/21", + "cidr": "140.238.224.0/21", "tags": [ "OCI" ] }, { - "cidr": "150.230.248.0/21", + "cidr": "140.238.232.0/22", "tags": [ "OCI" ] }, { - "cidr": "152.67.192.0/19", + "cidr": "140.238.240.0/20", "tags": [ "OCI" ] }, { - "cidr": "152.69.224.0/20", + "cidr": "140.245.0.0/19", "tags": [ "OCI" ] }, { - "cidr": "158.179.160.0/20", + "cidr": "141.148.192.0/19", "tags": [ "OCI" ] }, { - "cidr": "158.179.192.0/22", + "cidr": "144.24.96.0/19", "tags": [ "OCI" ] }, { - "cidr": "158.180.64.0/19", + "cidr": "146.56.48.0/21", "tags": [ "OCI" ] }, { - "cidr": "168.107.0.0/18", + "cidr": "150.230.232.0/21", "tags": [ "OCI" ] }, { - "cidr": "168.110.96.0/19", + "cidr": "152.67.0.0/19", "tags": [ "OCI" ] }, { - "cidr": "129.148.144.0/23", + "cidr": "155.248.240.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "129.148.148.0/25", + "cidr": "161.118.160.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "129.148.148.192/26", + "cidr": "168.138.112.0/21", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "129.148.150.0/23", + "cidr": "207.135.16.0/23", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "134.70.132.0/22", + "cidr": "134.70.76.0/22", "tags": [ "OSN", "OBJECT_STORAGE" ] }, { - "cidr": "140.91.58.0/23", + "cidr": "140.91.30.0/23", "tags": [ "OSN" ] }, { - "cidr": "140.204.52.128/25", + "cidr": "140.204.4.128/25", "tags": [ "OSN" ] }, { - "cidr": "146.56.120.0/22", + "cidr": "168.110.240.0/22", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.29.48.0/22", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.29.160.0/21", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.29.168.0/22", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.29.172.0/24", "tags": [ "OSN" ] @@ -2704,252 +2632,358 @@ ] }, { - "region": "uk-london-1", + "region": "me-riyadh-1", "cidrs": [ { - "cidr": "79.72.64.0/19", + "cidr": "84.8.96.0/19", "tags": [ "OCI" ] }, { - "cidr": "84.8.144.0/20", + "cidr": "145.241.104.0/21", "tags": [ "OCI" ] }, { - "cidr": "129.156.0.0/20", + "cidr": "145.241.152.0/21", "tags": [ "OCI" ] }, { - "cidr": "130.110.32.0/19", + "cidr": "79.76.16.0/23", + "tags": [ + "OSN" + ] + }, + { + "cidr": "79.76.20.0/24", + "tags": [ + "OSN" + ] + }, + { + "cidr": "84.8.64.0/22", + "tags": [ + "OSN" + ] + }, + { + "cidr": "84.8.68.0/25", + "tags": [ + "OSN" + ] + }, + { + "cidr": "84.8.72.0/22", + "tags": [ + "OSN" + ] + }, + { + "cidr": "84.8.88.128/25", + "tags": [ + "OSN" + ] + }, + { + "cidr": "130.110.224.0/21", + "tags": [ + "OSN" + ] + }, + { + "cidr": "141.253.212.0/23", + "tags": [ + "OSN" + ] + } + ] + }, + { + "region": "af-johannesburg-1", + "cidrs": [ + { + "cidr": "84.8.128.0/20", "tags": [ "OCI" ] }, { - "cidr": "130.162.160.0/19", + "cidr": "129.151.160.0/19", "tags": [ "OCI" ] }, { - "cidr": "132.145.8.0/21", + "cidr": "145.241.96.0/21", "tags": [ "OCI" ] }, { - "cidr": "132.145.16.0/20", + "cidr": "145.241.184.0/21", "tags": [ "OCI" ] }, { - "cidr": "132.145.32.0/19", + "cidr": "158.180.226.0/23", "tags": [ "OCI" ] }, { - "cidr": "132.145.64.0/20", + "cidr": "204.216.112.0/23", "tags": [ "OCI" ] }, { - "cidr": "132.226.128.0/21", + "cidr": "129.149.64.0/22", + "tags": [ + "OSN" + ] + }, + { + "cidr": "129.149.68.0/25", + "tags": [ + "OSN" + ] + }, + { + "cidr": "130.110.28.0/23", + "tags": [ + "OSN" + ] + }, + { + "cidr": "134.70.160.0/22", + "tags": [ + "OSN", + "OBJECT_STORAGE" + ] + }, + { + "cidr": "140.91.70.0/23", + "tags": [ + "OSN" + ] + }, + { + "cidr": "140.204.96.128/25", + "tags": [ + "OSN" + ] + }, + { + "cidr": "158.179.196.0/24", + "tags": [ + "OSN" + ] + } + ] + }, + { + "region": "eu-amsterdam-1", + "cidrs": [ + { + "cidr": "84.235.160.0/19", "tags": [ "OCI" ] }, { - "cidr": "132.226.208.0/21", + "cidr": "92.5.192.0/19", "tags": [ "OCI" ] }, { - "cidr": "140.238.64.0/18", + "cidr": "92.5.224.0/20", "tags": [ "OCI" ] }, { - "cidr": "141.144.32.0/19", + "cidr": "134.98.128.0/19", "tags": [ "OCI" ] }, { - "cidr": "141.144.84.0/22", + "cidr": "140.204.84.0/23", "tags": [ "OCI" ] }, { - "cidr": "141.144.96.0/19", + "cidr": "141.144.192.0/19", "tags": [ "OCI" ] }, { - "cidr": "141.145.40.0/22", + "cidr": "141.148.224.0/19", "tags": [ "OCI" ] }, { - "cidr": "141.145.112.0/20", + "cidr": "143.47.176.0/20", "tags": [ "OCI" ] }, { - "cidr": "141.147.64.0/18", + "cidr": "144.21.32.0/20", "tags": [ "OCI" ] }, { - "cidr": "143.47.224.0/19", + "cidr": "150.230.20.0/22", "tags": [ "OCI" ] }, { - "cidr": "144.21.48.0/20", + "cidr": "152.70.48.0/20", "tags": [ "OCI" ] }, { - "cidr": "144.21.64.0/18", + "cidr": "158.101.192.0/19", "tags": [ "OCI" ] }, { - "cidr": "145.241.192.0/18", + "cidr": "158.178.144.0/20", "tags": [ "OCI" ] }, { - "cidr": "150.230.112.0/20", + "cidr": "158.180.8.0/21", "tags": [ "OCI" ] }, { - "cidr": "152.67.128.0/19", + "cidr": "168.138.120.0/22", "tags": [ "OCI" ] }, { - "cidr": "193.123.176.0/20", + "cidr": "193.122.16.0/20", "tags": [ "OCI" ] }, { - "cidr": "207.135.20.0/23", + "cidr": "193.123.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "130.35.112.0/22", + "cidr": "62.115.179.220/31", "tags": [ "OSN" ] }, { - "cidr": "130.35.116.0/25", + "cidr": "62.115.179.228/31", "tags": [ "OSN" ] }, { - "cidr": "132.145.0.128/25", + "cidr": "79.72.32.0/22", "tags": [ "OSN" ] }, { - "cidr": "132.145.2.128/25", + "cidr": "79.76.24.0/21", "tags": [ "OSN" ] }, { - "cidr": "132.145.4.128/25", + "cidr": "92.5.255.0/24", "tags": [ "OSN" ] }, { - "cidr": "134.70.56.0/21", + "cidr": "134.70.104.0/22", "tags": [ "OSN", "OBJECT_STORAGE" ] }, { - "cidr": "134.70.64.0/22", + "cidr": "140.83.44.0/22", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OSN" ] }, { - "cidr": "138.1.16.0/22", + "cidr": "140.91.44.0/23", "tags": [ "OSN" ] }, { - "cidr": "138.1.80.0/22", + "cidr": "140.204.36.128/25", "tags": [ "OSN" ] }, { - "cidr": "140.91.22.0/23", + "cidr": "140.204.38.128/25", "tags": [ "OSN" ] }, { - "cidr": "140.91.24.0/22", + "cidr": "140.204.40.128/25", "tags": [ "OSN" ] }, { - "cidr": "145.241.144.0/21", + "cidr": "158.178.220.0/22", "tags": [ "OSN" ] }, { - "cidr": "147.154.224.0/20", + "cidr": "192.29.192.0/22", "tags": [ "OSN" ] }, { - "cidr": "147.154.240.0/21", + "cidr": "192.29.200.0/21", "tags": [ "OSN" ] }, { - "cidr": "147.154.255.128/25", + "cidr": "213.19.198.156/31", + "tags": [ + "OSN" + ] + }, + { + "cidr": "213.19.198.164/31", "tags": [ "OSN" ] @@ -2957,444 +2991,612 @@ ] }, { - "region": "eu-frankfurt-1", + "region": "me-dubai-1", "cidrs": [ { - "cidr": "79.76.96.0/19", + "cidr": "84.235.240.0/20", "tags": [ "OCI" ] }, { - "cidr": "89.168.64.0/18", + "cidr": "139.185.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "92.5.0.0/17", + "cidr": "141.145.144.0/20", "tags": [ "OCI" ] }, { - "cidr": "92.5.128.0/18", + "cidr": "145.241.112.0/20", "tags": [ "OCI" ] }, { - "cidr": "129.159.0.0/20", + "cidr": "193.123.64.0/19", "tags": [ "OCI" ] }, { - "cidr": "129.159.24.0/21", + "cidr": "64.110.120.0/21", + "tags": [ + "OSN" + ] + }, + { + "cidr": "129.148.208.0/22", + "tags": [ + "OSN" + ] + }, + { + "cidr": "129.148.212.0/23", + "tags": [ + "OSN" + ] + }, + { + "cidr": "129.148.214.0/24", + "tags": [ + "OSN" + ] + }, + { + "cidr": "129.148.215.0/25", + "tags": [ + "OSN" + ] + }, + { + "cidr": "129.148.218.0/24", + "tags": [ + "OSN" + ] + }, + { + "cidr": "129.148.219.192/26", + "tags": [ + "OSN" + ] + }, + { + "cidr": "129.148.220.0/22", + "tags": [ + "OSN" + ] + }, + { + "cidr": "134.70.148.0/22", + "tags": [ + "OSN", + "OBJECT_STORAGE" + ] + }, + { + "cidr": "140.91.92.0/23", + "tags": [ + "OSN" + ] + }, + { + "cidr": "140.204.66.128/25", + "tags": [ + "OSN" + ] + } + ] + }, + { + "region": "eu-paris-1", + "cidrs": [ + { + "cidr": "89.168.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "129.159.192.0/19", + "cidr": "141.145.192.0/19", "tags": [ "OCI" ] }, { - "cidr": "129.159.240.0/20", + "cidr": "141.253.96.0/19", "tags": [ "OCI" ] }, { - "cidr": "130.61.8.0/21", + "cidr": "145.241.160.0/20", "tags": [ "OCI" ] }, { - "cidr": "130.61.16.0/20", + "cidr": "158.178.192.0/20", "tags": [ "OCI" ] }, { - "cidr": "130.61.32.0/19", + "cidr": "158.178.208.0/21", + "tags": [ + "OCI" + ] + }, + { + "cidr": "79.76.18.0/23", + "tags": [ + "OSN" + ] + }, + { + "cidr": "134.70.180.0/22", + "tags": [ + "OSN", + "OBJECT_STORAGE" + ] + }, + { + "cidr": "140.91.80.0/23", + "tags": [ + "OSN" + ] + }, + { + "cidr": "140.204.116.128/25", + "tags": [ + "OSN" + ] + }, + { + "cidr": "145.241.183.0/24", + "tags": [ + "OSN" + ] + }, + { + "cidr": "155.248.128.0/22", + "tags": [ + "OSN" + ] + }, + { + "cidr": "155.248.132.0/23", + "tags": [ + "OSN" + ] + }, + { + "cidr": "155.248.135.128/25", + "tags": [ + "OSN" + ] + } + ] + }, + { + "region": "us-ashburn-1", + "cidrs": [ + { + "cidr": "129.80.0.0/16", + "tags": [ + "OCI" + ] + }, + { + "cidr": "129.144.0.0/16", + "tags": [ + "OCI" + ] + }, + { + "cidr": "129.145.16.0/21", + "tags": [ + "OCI" + ] + }, + { + "cidr": "129.145.74.0/23", + "tags": [ + "OCI" + ] + }, + { + "cidr": "129.145.76.0/22", + "tags": [ + "OCI" + ] + }, + { + "cidr": "129.151.48.0/20", + "tags": [ + "OCI" + ] + }, + { + "cidr": "129.152.40.0/22", + "tags": [ + "OCI" + ] + }, + { + "cidr": "129.153.0.0/19", "tags": [ "OCI" ] }, { - "cidr": "130.61.64.0/18", + "cidr": "129.153.32.0/20", "tags": [ "OCI" ] }, { - "cidr": "130.61.128.0/17", + "cidr": "129.153.128.0/18", "tags": [ "OCI" ] }, { - "cidr": "130.162.32.0/19", + "cidr": "129.153.224.0/20", "tags": [ "OCI" ] }, { - "cidr": "130.162.64.0/18", + "cidr": "129.157.224.0/21", "tags": [ "OCI" ] }, { - "cidr": "130.162.208.0/20", + "cidr": "129.158.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "130.162.224.0/19", + "cidr": "129.158.64.0/18", "tags": [ "OCI" ] }, { - "cidr": "132.145.224.0/19", + "cidr": "129.158.128.0/17", "tags": [ "OCI" ] }, { - "cidr": "132.226.192.0/20", + "cidr": "129.159.64.0/18", "tags": [ "OCI" ] }, { - "cidr": "138.2.128.0/18", + "cidr": "129.159.160.0/19", "tags": [ "OCI" ] }, { - "cidr": "138.3.240.0/20", + "cidr": "129.213.8.0/21", "tags": [ "OCI" ] }, { - "cidr": "140.86.0.0/20", + "cidr": "129.213.16.0/20", "tags": [ "OCI" ] }, { - "cidr": "140.86.32.0/20", + "cidr": "129.213.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "140.86.48.0/21", + "cidr": "129.213.64.0/18", "tags": [ "OCI" ] }, { - "cidr": "140.86.62.0/23", + "cidr": "129.213.128.0/18", "tags": [ "OCI" ] }, { - "cidr": "140.86.64.0/20", + "cidr": "129.213.192.0/20", "tags": [ "OCI" ] }, { - "cidr": "140.86.96.0/23", + "cidr": "129.213.208.0/21", "tags": [ "OCI" ] }, { - "cidr": "140.86.156.0/23", + "cidr": "132.145.128.0/18", "tags": [ "OCI" ] }, { - "cidr": "141.144.224.0/19", + "cidr": "132.145.192.0/19", "tags": [ "OCI" ] }, { - "cidr": "141.147.0.0/18", + "cidr": "132.226.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "144.24.160.0/19", + "cidr": "138.2.208.0/20", "tags": [ "OCI" ] }, { - "cidr": "150.230.144.0/20", + "cidr": "141.148.0.0/18", "tags": [ "OCI" ] }, { - "cidr": "152.70.0.0/19", + "cidr": "141.148.64.0/19", "tags": [ "OCI" ] }, { - "cidr": "152.70.40.0/21", + "cidr": "142.0.160.0/21", "tags": [ "OCI" ] }, { - "cidr": "152.70.160.0/19", + "cidr": "143.47.96.0/19", "tags": [ "OCI" ] }, { - "cidr": "158.101.160.0/19", + "cidr": "150.136.0.0/16", "tags": [ "OCI" ] }, { - "cidr": "158.180.16.0/20", + "cidr": "150.230.160.0/19", "tags": [ "OCI" ] }, { - "cidr": "158.180.32.0/19", + "cidr": "152.70.32.0/22", "tags": [ "OCI" ] }, { - "cidr": "193.122.0.0/20", + "cidr": "152.70.192.0/20", "tags": [ "OCI" ] }, { - "cidr": "193.122.32.0/19", + "cidr": "157.151.128.0/17", "tags": [ "OCI" ] }, { - "cidr": "193.227.135.0/24", + "cidr": "158.101.96.0/19", "tags": [ "OCI" ] }, { - "cidr": "207.135.8.0/23", + "cidr": "193.122.128.0/17", "tags": [ "OCI" ] }, { - "cidr": "92.5.240.0/21", + "cidr": "193.123.128.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "92.5.248.0/22", + "cidr": "205.147.88.0/23", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "130.61.0.128/25", + "cidr": "207.135.4.0/22", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "130.61.2.128/25", + "cidr": "207.135.10.0/23", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "130.61.4.128/25", + "cidr": "207.135.12.0/22", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "134.70.40.0/21", + "cidr": "207.135.29.0/24", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OCI" ] }, { - "cidr": "134.70.48.0/22", + "cidr": "64.181.152.0/21", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OSN" ] }, { - "cidr": "138.1.0.0/22", + "cidr": "129.213.0.128/25", "tags": [ "OSN" ] }, { - "cidr": "138.1.40.0/21", + "cidr": "129.213.2.128/25", "tags": [ "OSN" ] }, { - "cidr": "138.1.64.0/22", + "cidr": "129.213.4.128/25", "tags": [ "OSN" ] }, { - "cidr": "138.1.108.0/25", + "cidr": "130.35.16.0/22", "tags": [ "OSN" ] }, { - "cidr": "140.91.16.0/22", + "cidr": "130.35.96.0/21", "tags": [ "OSN" ] }, { - "cidr": "140.91.20.0/23", + "cidr": "130.35.144.0/22", "tags": [ "OSN" ] }, { - "cidr": "147.154.128.0/19", + "cidr": "130.35.200.0/22", "tags": [ "OSN" ] }, { - "cidr": "147.154.160.0/20", + "cidr": "130.35.228.0/22", "tags": [ "OSN" ] }, { - "cidr": "147.154.176.0/21", + "cidr": "134.70.24.0/21", "tags": [ - "OSN" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "147.154.184.0/22", + "cidr": "134.70.32.0/22", "tags": [ - "OSN" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "147.154.189.128/25", + "cidr": "138.1.48.0/21", "tags": [ "OSN" ] - } - ] - }, - { - "region": "il-jerusalem-1", - "cidrs": [ + }, { - "cidr": "129.159.128.0/19", + "cidr": "140.86.216.0/21", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "130.110.238.0/24", + "cidr": "140.91.10.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "151.145.80.0/20", + "cidr": "140.91.12.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "158.178.128.0/22", + "cidr": "147.154.0.0/19", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "158.178.248.0/22", + "cidr": "147.154.32.0/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "84.235.192.0/23", + "cidr": "147.154.36.0/22", "tags": [ "OSN" ] }, { - "cidr": "92.5.254.0/24", + "cidr": "147.154.40.0/21", "tags": [ "OSN" ] }, { - "cidr": "129.149.120.0/22", + "cidr": "147.154.48.0/21", "tags": [ "OSN" ] }, { - "cidr": "129.149.126.0/25", + "cidr": "147.154.56.0/22", "tags": [ "OSN" ] }, { - "cidr": "134.70.172.0/22", + "cidr": "157.151.64.0/18", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OSN" ] }, { - "cidr": "140.91.76.0/23", + "cidr": "169.155.128.0/19", "tags": [ "OSN" ] }, { - "cidr": "140.204.108.128/25", + "cidr": "170.9.192.0/19", "tags": [ "OSN" ] @@ -3402,684 +3604,642 @@ ] }, { - "region": "us-sanjose-1", + "region": "sa-santiago-1", "cidrs": [ { - "cidr": "64.181.224.0/19", + "cidr": "129.91.0.0/23", "tags": [ "OCI" ] }, { - "cidr": "129.159.32.0/20", + "cidr": "129.91.2.0/24", "tags": [ "OCI" ] }, { - "cidr": "138.2.224.0/20", + "cidr": "129.151.96.0/19", "tags": [ "OCI" ] }, { - "cidr": "146.235.192.0/19", + "cidr": "136.248.240.0/21", "tags": [ "OCI" ] }, { - "cidr": "146.235.224.0/20", + "cidr": "144.22.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "150.230.32.0/20", + "cidr": "146.235.240.0/21", "tags": [ "OCI" ] }, { - "cidr": "152.67.224.0/19", + "cidr": "159.112.128.0/20", "tags": [ "OCI" ] }, { - "cidr": "152.70.112.0/20", + "cidr": "159.112.144.0/21", "tags": [ "OCI" ] }, { - "cidr": "155.248.192.0/20", + "cidr": "161.153.192.0/20", "tags": [ "OCI" ] }, { - "cidr": "155.248.208.0/21", + "cidr": "161.153.216.0/21", "tags": [ "OCI" ] }, { - "cidr": "159.54.160.0/19", + "cidr": "194.164.248.0/21", "tags": [ "OCI" ] }, { - "cidr": "163.192.0.0/18", + "cidr": "64.181.132.0/24", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "163.192.64.0/19", + "cidr": "129.148.152.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "165.1.64.0/20", + "cidr": "129.149.32.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "167.234.208.0/20", + "cidr": "129.149.36.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "170.9.0.0/19", + "cidr": "134.70.152.0/22", "tags": [ - "OCI" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "170.9.48.0/20", + "cidr": "140.91.66.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "192.9.128.0/19", + "cidr": "140.204.86.128/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "192.9.224.0/19", + "cidr": "168.129.244.0/24", "tags": [ - "OCI" + "OSN" ] - }, + } + ] + }, + { + "region": "ap-sydney-1", + "cidrs": [ { - "cidr": "192.18.128.0/20", + "cidr": "129.91.16.0/21", "tags": [ "OCI" ] }, { - "cidr": "129.148.160.0/23", - "tags": [ - "OSN" - ] - }, - { - "cidr": "129.148.164.0/25", + "cidr": "129.154.64.0/18", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "129.148.166.0/23", + "cidr": "129.154.168.0/22", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "129.149.56.0/22", + "cidr": "140.238.192.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "134.70.124.0/22", + "cidr": "150.230.8.0/21", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OCI" ] }, { - "cidr": "140.91.54.0/23", + "cidr": "152.67.96.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.204.58.128/25", + "cidr": "152.69.160.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "146.235.251.192/26", + "cidr": "152.70.228.0/22", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "204.216.120.0/22", + "cidr": "158.178.136.0/21", "tags": [ - "OSN" + "OCI" ] - } - ] - }, - { - "region": "eu-madrid-1", - "cidrs": [ + }, { - "cidr": "79.72.48.0/20", + "cidr": "158.180.4.0/22", "tags": [ "OCI" ] }, { - "cidr": "89.168.0.0/21", + "cidr": "159.13.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "130.110.232.0/22", + "cidr": "161.33.224.0/20", "tags": [ "OCI" ] }, { - "cidr": "141.253.192.0/20", + "cidr": "161.33.240.0/21", "tags": [ "OCI" ] }, { - "cidr": "143.47.32.0/19", + "cidr": "168.138.96.0/20", "tags": [ "OCI" ] }, { - "cidr": "158.179.208.0/20", + "cidr": "192.9.160.0/19", "tags": [ "OCI" ] }, { - "cidr": "79.72.20.0/23", + "cidr": "129.148.0.0/21", "tags": [ "OSN" ] }, { - "cidr": "130.110.239.0/24", + "cidr": "129.148.156.0/22", "tags": [ "OSN" ] }, { - "cidr": "134.70.176.0/22", + "cidr": "134.70.92.0/22", "tags": [ "OSN", "OBJECT_STORAGE" ] }, { - "cidr": "140.91.78.0/23", + "cidr": "134.185.72.0/22", "tags": [ "OSN" ] }, { - "cidr": "140.204.112.128/25", + "cidr": "140.91.38.0/23", "tags": [ "OSN" ] }, { - "cidr": "155.248.136.0/22", + "cidr": "140.204.20.128/25", "tags": [ "OSN" ] }, { - "cidr": "155.248.140.0/25", + "cidr": "168.110.64.0/19", "tags": [ "OSN" ] - } - ] - }, - { - "region": "me-jeddah-1", - "cidrs": [ - { - "cidr": "79.72.0.0/20", - "tags": [ - "OCI" - ] }, { - "cidr": "80.225.64.0/20", + "cidr": "168.110.224.0/20", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "81.208.160.0/20", + "cidr": "192.29.144.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "81.208.188.0/22", + "cidr": "192.29.148.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "130.110.96.0/19", + "cidr": "192.29.151.0/24", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "141.147.128.0/20", + "cidr": "192.29.152.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "144.24.208.0/20", + "cidr": "192.29.158.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "150.230.48.0/21", + "cidr": "207.127.107.192/26", "tags": [ - "OCI" + "OSN" ] - }, + } + ] + }, + { + "region": "us-phoenix-1", + "cidrs": [ { - "cidr": "150.230.240.0/21", + "cidr": "129.146.0.0/21", "tags": [ "OCI" ] }, { - "cidr": "158.101.224.0/19", + "cidr": "129.146.8.0/22", "tags": [ "OCI" ] }, { - "cidr": "193.122.64.0/19", + "cidr": "129.146.16.0/20", "tags": [ "OCI" ] }, { - "cidr": "207.127.96.0/21", + "cidr": "129.146.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "207.135.30.0/23", + "cidr": "129.146.64.0/18", "tags": [ "OCI" ] }, { - "cidr": "134.70.100.0/22", - "tags": [ - "OSN", - "OBJECT_STORAGE" - ] - }, - { - "cidr": "140.91.42.0/23", + "cidr": "129.146.128.0/17", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.204.34.128/25", + "cidr": "129.150.64.0/18", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.112.0/20", + "cidr": "129.150.128.0/17", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.224.0/22", + "cidr": "129.151.0.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.232.0/25", + "cidr": "129.152.128.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.232.192/26", - "tags": [ - "OSN" - ] - } - ] - }, - { - "region": "ap-melbourne-1", - "cidrs": [ - { - "cidr": "130.162.192.0/21", + "cidr": "129.153.64.0/18", "tags": [ "OCI" ] }, { - "cidr": "152.69.176.0/20", + "cidr": "129.153.192.0/19", "tags": [ "OCI" ] }, { - "cidr": "152.70.224.0/22", + "cidr": "129.191.0.0/17", "tags": [ "OCI" ] }, { - "cidr": "158.179.16.0/20", + "cidr": "132.226.24.0/21", "tags": [ "OCI" ] }, { - "cidr": "161.33.64.0/19", + "cidr": "132.226.64.0/18", "tags": [ "OCI" ] }, { - "cidr": "161.33.96.0/20", + "cidr": "132.226.144.0/20", "tags": [ "OCI" ] }, { - "cidr": "168.138.0.0/19", + "cidr": "137.131.0.0/18", "tags": [ "OCI" ] }, { - "cidr": "169.224.224.0/21", + "cidr": "141.147.240.0/20", "tags": [ "OCI" ] }, { - "cidr": "207.211.140.0/22", + "cidr": "141.148.128.0/18", "tags": [ "OCI" ] }, { - "cidr": "207.211.144.0/20", + "cidr": "144.24.0.0/18", "tags": [ "OCI" ] }, { - "cidr": "134.70.108.0/22", + "cidr": "152.70.128.0/19", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OCI" ] }, { - "cidr": "134.185.64.0/22", + "cidr": "158.101.0.0/18", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.91.46.0/23", + "cidr": "160.34.6.0/23", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.204.42.128/25", + "cidr": "160.34.8.0/22", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "158.179.4.0/22", + "cidr": "161.153.0.0/17", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "159.13.14.0/23", + "cidr": "193.123.0.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "161.33.254.0/24", + "cidr": "193.123.192.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.208.0/22", + "cidr": "207.135.0.0/22", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.216.0/21", - "tags": [ - "OSN" - ] - } - ] - }, - { - "region": "us-chicago-1", - "cidrs": [ - { - "cidr": "64.181.192.0/19", + "cidr": "207.135.25.0/24", "tags": [ "OCI" ] }, { - "cidr": "131.186.0.0/21", + "cidr": "207.135.26.0/24", "tags": [ "OCI" ] }, { - "cidr": "149.130.208.0/20", + "cidr": "207.135.28.0/24", "tags": [ "OCI" ] }, { - "cidr": "163.192.96.0/19", + "cidr": "129.146.12.128/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "163.192.192.0/19", + "cidr": "129.146.13.128/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "163.192.240.0/20", + "cidr": "129.146.14.128/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "164.152.16.0/20", + "cidr": "129.148.8.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "164.152.104.0/21", + "cidr": "129.149.28.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "168.129.160.0/20", + "cidr": "130.35.0.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "170.9.224.0/19", + "cidr": "130.35.128.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "207.211.160.0/19", + "cidr": "134.65.52.128/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "64.181.136.0/22", + "cidr": "134.65.208.0/20", "tags": [ "OSN" ] }, { - "cidr": "64.181.140.0/23", + "cidr": "134.70.8.0/21", "tags": [ - "OSN" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "64.181.150.0/23", + "cidr": "134.70.16.0/22", "tags": [ - "OSN" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "131.186.8.0/22", + "cidr": "136.248.128.0/19", "tags": [ "OSN" ] }, { - "cidr": "131.186.12.0/25", + "cidr": "138.1.32.0/21", "tags": [ "OSN" ] }, { - "cidr": "134.70.188.0/22", + "cidr": "138.1.112.0/20", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OSN" ] }, { - "cidr": "134.70.192.0/21", + "cidr": "140.91.4.0/22", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OSN" ] }, { - "cidr": "140.91.84.0/22", + "cidr": "140.91.8.0/23", "tags": [ "OSN" ] }, { - "cidr": "140.91.88.0/23", + "cidr": "146.235.0.0/20", "tags": [ "OSN" ] }, { - "cidr": "140.204.122.128/25", + "cidr": "147.154.96.0/20", "tags": [ "OSN" ] }, { - "cidr": "140.204.124.128/25", + "cidr": "147.154.112.0/21", "tags": [ "OSN" ] }, { - "cidr": "140.204.126.128/25", + "cidr": "147.154.120.0/22", "tags": [ "OSN" ] }, { - "cidr": "146.235.252.64/26", + "cidr": "161.153.128.0/18", "tags": [ "OSN" ] }, { - "cidr": "146.235.252.128/25", + "cidr": "192.18.200.0/21", "tags": [ "OSN" ] }, { - "cidr": "146.235.253.0/24", + "cidr": "192.29.96.0/20", "tags": [ "OSN" ] }, { - "cidr": "146.235.254.0/23", + "cidr": "204.216.192.0/20", "tags": [ "OSN" ] }, { - "cidr": "194.164.156.0/22", + "cidr": "207.127.124.0/22", "tags": [ "OSN" ] @@ -4087,467 +4247,509 @@ ] }, { - "region": "ap-tokyo-1", + "region": "ap-singapore-1", "cidrs": [ { - "cidr": "131.186.32.0/20", + "cidr": "129.150.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "131.186.56.0/21", + "cidr": "134.185.80.0/20", "tags": [ "OCI" ] }, { - "cidr": "132.145.112.0/20", + "cidr": "138.2.64.0/19", "tags": [ "OCI" ] }, { - "cidr": "132.226.0.0/20", + "cidr": "138.2.96.0/20", "tags": [ "OCI" ] }, { - "cidr": "138.2.0.0/19", + "cidr": "140.245.96.0/19", "tags": [ "OCI" ] }, { - "cidr": "138.3.208.0/20", + "cidr": "146.235.16.0/21", "tags": [ "OCI" ] }, { - "cidr": "140.83.32.0/21", + "cidr": "152.69.208.0/20", "tags": [ "OCI" ] }, { - "cidr": "140.238.32.0/19", + "cidr": "158.178.224.0/20", "tags": [ "OCI" ] }, { - "cidr": "140.245.80.0/20", + "cidr": "158.178.240.0/21", "tags": [ "OCI" ] }, { - "cidr": "141.147.160.0/19", + "cidr": "161.118.192.0/18", "tags": [ "OCI" ] }, { - "cidr": "150.230.96.0/20", + "cidr": "168.107.64.0/19", "tags": [ "OCI" ] }, { - "cidr": "150.230.192.0/19", + "cidr": "168.138.160.0/19", "tags": [ "OCI" ] }, { - "cidr": "151.145.64.0/20", + "cidr": "213.35.96.0/19", "tags": [ "OCI" ] }, { - "cidr": "152.70.96.0/20", + "cidr": "129.148.176.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "155.248.160.0/19", + "cidr": "129.148.180.0/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "158.101.64.0/19", + "cidr": "129.148.184.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "158.101.128.0/19", + "cidr": "134.70.128.0/22", "tags": [ - "OCI" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "158.179.176.0/20", + "cidr": "140.91.56.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "161.33.128.0/18", + "cidr": "140.204.54.128/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "161.33.192.0/19", + "cidr": "159.112.172.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "168.110.0.0/18", + "cidr": "168.110.244.0/22", + "tags": [ + "OSN" + ] + }, + { + "cidr": "207.127.109.192/26", + "tags": [ + "OSN" + ] + } + ] + }, + { + "region": "uk-cardiff-1", + "cidrs": [ + { + "cidr": "129.151.64.0/19", "tags": [ "OCI" ] }, { - "cidr": "168.138.192.0/19", + "cidr": "134.65.56.0/21", "tags": [ "OCI" ] }, { - "cidr": "193.123.160.0/20", + "cidr": "144.24.224.0/21", "tags": [ "OCI" ] }, { - "cidr": "134.70.80.0/22", + "cidr": "129.148.200.0/21", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OSN" ] }, { - "cidr": "140.91.32.0/23", + "cidr": "129.149.16.0/23", "tags": [ "OSN" ] }, { - "cidr": "140.204.8.128/25", + "cidr": "129.149.20.0/23", "tags": [ "OSN" ] }, { - "cidr": "146.56.124.64/26", + "cidr": "129.149.22.0/25", "tags": [ "OSN" ] }, { - "cidr": "146.56.124.128/25", + "cidr": "129.149.22.192/26", "tags": [ "OSN" ] }, { - "cidr": "146.56.125.0/24", + "cidr": "129.149.23.0/24", "tags": [ "OSN" ] }, { - "cidr": "146.56.126.0/23", + "cidr": "130.110.24.0/22", "tags": [ "OSN" ] }, { - "cidr": "158.179.12.64/26", + "cidr": "134.70.136.0/22", + "tags": [ + "OSN", + "OBJECT_STORAGE" + ] + }, + { + "cidr": "140.91.60.0/23", "tags": [ "OSN" ] }, { - "cidr": "158.179.12.128/25", + "cidr": "140.204.70.128/25", "tags": [ "OSN" ] }, { - "cidr": "158.179.13.0/24", + "cidr": "209.17.60.0/22", "tags": [ "OSN" ] + } + ] + }, + { + "region": "me-abudhabi-1", + "cidrs": [ + { + "cidr": "129.151.128.0/19", + "tags": [ + "OCI" + ] }, { - "cidr": "158.179.15.0/24", + "cidr": "129.149.48.0/22", "tags": [ "OSN" ] }, { - "cidr": "161.33.252.0/24", + "cidr": "129.149.52.0/25", "tags": [ "OSN" ] }, { - "cidr": "192.29.36.0/22", + "cidr": "134.70.144.0/22", + "tags": [ + "OSN", + "OBJECT_STORAGE" + ] + }, + { + "cidr": "140.91.64.0/23", "tags": [ "OSN" ] }, { - "cidr": "192.29.40.0/21", + "cidr": "140.204.80.128/25", "tags": [ "OSN" ] - } - ] - }, - { - "region": "eu-zurich-1", - "cidrs": [ + }, { - "cidr": "132.226.216.0/21", + "cidr": "141.253.216.0/21", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "140.86.192.0/20", + "cidr": "145.241.178.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "140.86.208.0/21", + "cidr": "207.127.72.0/22", + "tags": [ + "OSN" + ] + } + ] + }, + { + "region": "ap-chuncheon-1", + "cidrs": [ + { + "cidr": "129.154.48.0/20", "tags": [ "OCI" ] }, { - "cidr": "140.238.168.0/21", + "cidr": "134.185.96.0/19", "tags": [ "OCI" ] }, { - "cidr": "140.238.208.0/20", + "cidr": "138.2.112.0/20", "tags": [ "OCI" ] }, { - "cidr": "144.24.232.0/21", + "cidr": "140.245.64.0/20", "tags": [ "OCI" ] }, { - "cidr": "144.24.240.0/20", + "cidr": "144.24.64.0/19", "tags": [ "OCI" ] }, { - "cidr": "152.67.64.0/19", + "cidr": "146.56.96.0/20", "tags": [ "OCI" ] }, { - "cidr": "134.70.88.0/22", + "cidr": "146.56.112.0/21", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OCI" ] }, { - "cidr": "140.91.36.0/23", + "cidr": "150.230.248.0/21", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.204.16.128/25", + "cidr": "152.67.192.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "141.253.208.0/22", + "cidr": "152.69.224.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.56.0/23", + "cidr": "158.179.160.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.60.0/23", + "cidr": "158.179.192.0/22", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.178.0/23", + "cidr": "158.180.64.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.180.0/22", + "cidr": "168.107.0.0/18", "tags": [ - "OSN" + "OCI" ] - } - ] - }, - { - "region": "sa-vinhedo-1", - "cidrs": [ + }, { - "cidr": "134.65.16.0/20", + "cidr": "168.110.96.0/19", "tags": [ "OCI" ] }, { - "cidr": "134.65.48.0/22", + "cidr": "129.148.144.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "134.65.224.0/19", + "cidr": "129.148.148.0/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "138.2.240.0/21", + "cidr": "129.148.148.192/26", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "144.33.0.0/19", + "cidr": "129.148.150.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "157.151.0.0/19", + "cidr": "134.70.132.0/22", "tags": [ - "OCI" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "161.153.212.0/22", + "cidr": "140.91.58.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "164.152.192.0/21", + "cidr": "140.204.52.128/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "164.152.240.0/20", + "cidr": "146.56.120.0/22", "tags": [ - "OCI" + "OSN" ] - }, + } + ] + }, + { + "region": "il-jerusalem-1", + "cidrs": [ { - "cidr": "167.126.0.0/19", + "cidr": "129.159.128.0/19", "tags": [ "OCI" ] }, { - "cidr": "167.126.32.0/20", + "cidr": "130.110.238.0/24", "tags": [ "OCI" ] }, { - "cidr": "193.123.96.0/19", + "cidr": "151.145.80.0/20", "tags": [ "OCI" ] }, { - "cidr": "204.216.128.0/18", + "cidr": "158.178.128.0/22", "tags": [ "OCI" ] }, { - "cidr": "64.181.144.0/23", + "cidr": "158.178.248.0/22", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "129.149.0.0/22", + "cidr": "84.235.192.0/23", "tags": [ "OSN" ] }, { - "cidr": "129.149.6.0/25", + "cidr": "92.5.254.0/24", "tags": [ "OSN" ] }, { - "cidr": "129.153.240.0/23", + "cidr": "129.149.120.0/22", "tags": [ "OSN" ] }, { - "cidr": "129.153.243.192/26", + "cidr": "129.149.126.0/25", "tags": [ "OSN" ] }, { - "cidr": "134.70.140.0/22", + "cidr": "134.70.172.0/22", "tags": [ "OSN", "OBJECT_STORAGE" ] }, { - "cidr": "140.91.62.0/23", - "tags": [ - "OSN" - ] - }, - { - "cidr": "140.204.76.128/25", + "cidr": "140.91.76.0/23", "tags": [ "OSN" ] }, { - "cidr": "149.130.136.0/23", + "cidr": "140.204.108.128/25", "tags": [ "OSN" ] @@ -4555,355 +4757,347 @@ ] }, { - "region": "eu-amsterdam-1", + "region": "ap-melbourne-1", "cidrs": [ { - "cidr": "84.235.160.0/19", + "cidr": "130.162.192.0/21", "tags": [ "OCI" ] }, { - "cidr": "92.5.192.0/19", + "cidr": "152.69.176.0/20", "tags": [ "OCI" ] }, { - "cidr": "92.5.224.0/20", + "cidr": "152.70.224.0/22", "tags": [ "OCI" ] }, { - "cidr": "134.98.128.0/19", + "cidr": "158.179.16.0/20", "tags": [ "OCI" ] }, { - "cidr": "140.204.84.0/23", + "cidr": "161.33.64.0/19", "tags": [ "OCI" ] }, { - "cidr": "141.144.192.0/19", + "cidr": "161.33.96.0/20", "tags": [ "OCI" ] }, { - "cidr": "141.148.224.0/19", + "cidr": "168.138.0.0/19", "tags": [ "OCI" ] }, { - "cidr": "143.47.176.0/20", + "cidr": "169.224.224.0/21", "tags": [ "OCI" ] }, { - "cidr": "144.21.32.0/20", + "cidr": "207.211.140.0/22", "tags": [ "OCI" ] }, { - "cidr": "150.230.20.0/22", + "cidr": "207.211.144.0/20", "tags": [ "OCI" ] }, { - "cidr": "152.70.48.0/20", + "cidr": "134.70.108.0/22", "tags": [ - "OCI" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "158.101.192.0/19", + "cidr": "134.185.64.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "158.178.144.0/20", + "cidr": "140.91.46.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "158.180.8.0/21", + "cidr": "140.204.42.128/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "168.138.120.0/22", + "cidr": "158.179.4.0/22", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "193.122.16.0/20", + "cidr": "159.13.14.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "193.123.32.0/19", + "cidr": "161.33.254.0/24", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "62.115.179.220/31", + "cidr": "192.29.208.0/22", "tags": [ "OSN" ] }, { - "cidr": "62.115.179.228/31", + "cidr": "192.29.216.0/21", "tags": [ "OSN" ] - }, + } + ] + }, + { + "region": "ap-tokyo-1", + "cidrs": [ { - "cidr": "79.72.32.0/22", + "cidr": "131.186.32.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "79.76.24.0/21", + "cidr": "131.186.56.0/21", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "92.5.255.0/24", + "cidr": "132.145.112.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "134.70.104.0/22", + "cidr": "132.226.0.0/20", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OCI" ] }, { - "cidr": "140.83.44.0/22", + "cidr": "138.2.0.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.91.44.0/23", + "cidr": "138.3.208.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.204.36.128/25", + "cidr": "140.83.32.0/21", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.204.38.128/25", + "cidr": "140.238.32.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.204.40.128/25", + "cidr": "140.245.80.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "158.178.220.0/22", + "cidr": "141.147.160.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.192.0/22", + "cidr": "150.230.96.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "192.29.200.0/21", + "cidr": "150.230.192.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "213.19.198.156/31", + "cidr": "151.145.64.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "213.19.198.164/31", + "cidr": "152.70.96.0/20", "tags": [ - "OSN" + "OCI" ] - } - ] - }, - { - "region": "eu-dublin-3", - "cidrs": [ + }, { - "cidr": "134.98.192.0/19", + "cidr": "155.248.160.0/19", "tags": [ "OCI" ] }, { - "cidr": "134.70.218.0/23", + "cidr": "158.101.64.0/19", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OCI" ] }, { - "cidr": "134.70.220.0/23", + "cidr": "158.101.128.0/19", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OCI" ] }, { - "cidr": "134.98.248.0/26", + "cidr": "158.179.176.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "134.98.248.128/25", + "cidr": "161.33.128.0/18", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "134.98.249.192/26", + "cidr": "161.33.192.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "134.98.250.0/23", + "cidr": "168.110.0.0/18", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "134.98.252.0/22", + "cidr": "168.138.192.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.91.102.0/23", + "cidr": "193.123.160.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.204.154.128/25", + "cidr": "134.70.80.0/22", "tags": [ - "OSN" + "OSN", + "OBJECT_STORAGE" ] - } - ] - }, - { - "region": "us-dallas-1", - "cidrs": [ + }, { - "cidr": "136.248.192.0/19", + "cidr": "140.91.32.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "134.70.206.0/23", + "cidr": "140.204.8.128/25", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OSN" ] }, { - "cidr": "134.70.208.0/23", + "cidr": "146.56.124.64/26", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OSN" ] }, { - "cidr": "136.248.224.0/26", + "cidr": "146.56.124.128/25", "tags": [ "OSN" ] }, { - "cidr": "136.248.224.128/25", + "cidr": "146.56.125.0/24", "tags": [ "OSN" ] }, { - "cidr": "136.248.225.192/26", + "cidr": "146.56.126.0/23", "tags": [ "OSN" ] }, { - "cidr": "136.248.226.0/23", + "cidr": "158.179.12.64/26", "tags": [ "OSN" ] }, { - "cidr": "136.248.228.0/22", + "cidr": "158.179.12.128/25", "tags": [ "OSN" ] }, { - "cidr": "140.91.96.0/23", + "cidr": "158.179.13.0/24", "tags": [ "OSN" ] }, { - "cidr": "140.204.142.128/25", + "cidr": "158.179.15.0/24", "tags": [ "OSN" ] }, { - "cidr": "157.151.32.0/21", + "cidr": "161.33.252.0/24", "tags": [ "OSN" ] }, { - "cidr": "157.151.40.0/22", + "cidr": "192.29.36.0/22", "tags": [ "OSN" ] }, { - "cidr": "157.151.44.0/23", + "cidr": "192.29.40.0/21", "tags": [ "OSN" ] @@ -4911,119 +5105,101 @@ ] }, { - "region": "ap-osaka-1", + "region": "eu-zurich-1", "cidrs": [ { - "cidr": "64.110.96.0/20", - "tags": [ - "OCI" - ] - }, - { - "cidr": "64.110.112.0/21", - "tags": [ - "OCI" - ] - }, - { - "cidr": "138.2.32.0/19", - "tags": [ - "OCI" - ] - }, - { - "cidr": "140.83.48.0/20", + "cidr": "132.226.216.0/21", "tags": [ "OCI" ] }, { - "cidr": "140.83.80.0/21", + "cidr": "140.86.192.0/20", "tags": [ "OCI" ] }, { - "cidr": "141.147.144.0/20", + "cidr": "140.86.208.0/21", "tags": [ "OCI" ] }, { - "cidr": "150.230.0.0/21", + "cidr": "140.238.168.0/21", "tags": [ "OCI" ] }, { - "cidr": "150.230.56.0/21", + "cidr": "140.238.208.0/20", "tags": [ "OCI" ] }, { - "cidr": "152.69.192.0/20", + "cidr": "144.24.232.0/21", "tags": [ "OCI" ] }, { - "cidr": "152.70.80.0/21", + "cidr": "144.24.240.0/20", "tags": [ "OCI" ] }, { - "cidr": "161.33.0.0/18", + "cidr": "152.67.64.0/19", "tags": [ "OCI" ] }, { - "cidr": "168.138.32.0/19", + "cidr": "134.70.88.0/22", "tags": [ - "OCI" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "217.142.224.0/19", + "cidr": "140.91.36.0/23", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "129.149.63.192/26", + "cidr": "140.204.16.128/25", "tags": [ "OSN" ] }, { - "cidr": "134.70.112.0/22", + "cidr": "141.253.208.0/22", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OSN" ] }, { - "cidr": "140.91.48.0/23", + "cidr": "192.29.56.0/23", "tags": [ "OSN" ] }, { - "cidr": "140.204.30.128/25", + "cidr": "192.29.60.0/23", "tags": [ "OSN" ] }, { - "cidr": "192.29.240.0/22", + "cidr": "192.29.178.0/23", "tags": [ "OSN" ] }, { - "cidr": "192.29.248.0/21", + "cidr": "192.29.180.0/22", "tags": [ "OSN" ] @@ -5031,167 +5207,137 @@ ] }, { - "region": "mx-monterrey-1", + "region": "sa-vinhedo-1", "cidrs": [ { - "cidr": "40.233.0.0/19", + "cidr": "134.65.16.0/20", "tags": [ "OCI" ] }, { - "cidr": "139.177.96.0/21", + "cidr": "134.65.48.0/22", "tags": [ "OCI" ] }, { - "cidr": "157.137.160.0/19", + "cidr": "134.65.224.0/19", "tags": [ "OCI" ] }, { - "cidr": "64.181.146.0/23", - "tags": [ - "OSN" - ] - }, - { - "cidr": "134.70.200.0/23", - "tags": [ - "OSN", - "OBJECT_STORAGE" - ] - }, - { - "cidr": "139.177.104.0/22", + "cidr": "138.2.240.0/21", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "139.177.108.0/25", + "cidr": "144.33.0.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.91.90.0/23", + "cidr": "157.151.0.0/19", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "140.204.132.128/25", + "cidr": "161.153.212.0/22", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "157.137.253.0/24", - "tags": [ - "OSN" - ] - } - ] - }, - { - "region": "me-dubai-1", - "cidrs": [ - { - "cidr": "84.235.240.0/20", + "cidr": "164.152.192.0/21", "tags": [ "OCI" ] }, { - "cidr": "139.185.32.0/19", + "cidr": "164.152.240.0/20", "tags": [ "OCI" ] }, { - "cidr": "141.145.144.0/20", + "cidr": "167.126.0.0/19", "tags": [ "OCI" ] }, { - "cidr": "145.241.112.0/20", + "cidr": "167.126.32.0/20", "tags": [ "OCI" ] }, { - "cidr": "193.123.64.0/19", + "cidr": "193.123.96.0/19", "tags": [ "OCI" ] }, { - "cidr": "64.110.120.0/21", + "cidr": "204.216.128.0/18", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "129.148.208.0/22", + "cidr": "64.181.144.0/23", "tags": [ "OSN" ] }, { - "cidr": "129.148.212.0/23", + "cidr": "129.149.0.0/22", "tags": [ "OSN" ] }, { - "cidr": "129.148.214.0/24", + "cidr": "129.149.6.0/25", "tags": [ "OSN" ] }, { - "cidr": "129.148.215.0/25", + "cidr": "129.153.240.0/23", "tags": [ "OSN" ] }, { - "cidr": "129.148.218.0/24", + "cidr": "129.153.243.192/26", "tags": [ "OSN" ] }, { - "cidr": "129.148.219.192/26", + "cidr": "134.70.140.0/22", "tags": [ - "OSN" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "129.148.220.0/22", + "cidr": "140.91.62.0/23", "tags": [ "OSN" ] }, { - "cidr": "134.70.148.0/22", - "tags": [ - "OSN", - "OBJECT_STORAGE" - ] - }, - { - "cidr": "140.91.92.0/23", + "cidr": "140.204.76.128/25", "tags": [ "OSN" ] }, { - "cidr": "140.204.66.128/25", + "cidr": "149.130.136.0/23", "tags": [ "OSN" ] @@ -5199,58 +5345,66 @@ ] }, { - "region": "ap-singapore-2", + "region": "eu-dublin-3", "cidrs": [ { - "cidr": "140.245.32.0/19", + "cidr": "134.98.192.0/19", "tags": [ "OCI" ] }, { - "cidr": "217.142.184.0/21", + "cidr": "134.70.218.0/23", "tags": [ - "OCI" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "159.13.0.0/22", + "cidr": "134.70.220.0/23", + "tags": [ + "OSN", + "OBJECT_STORAGE" + ] + }, + { + "cidr": "134.98.248.0/26", "tags": [ "OSN" ] }, { - "cidr": "159.13.4.0/25", + "cidr": "134.98.248.128/25", "tags": [ "OSN" ] }, { - "cidr": "161.33.255.0/24", + "cidr": "134.98.249.192/26", "tags": [ "OSN" ] }, { - "cidr": "217.142.160.0/21", + "cidr": "134.98.250.0/23", "tags": [ "OSN" ] }, { - "cidr": "217.142.168.0/22", + "cidr": "134.98.252.0/22", "tags": [ "OSN" ] }, { - "cidr": "217.142.176.0/23", + "cidr": "140.91.102.0/23", "tags": [ "OSN" ] }, { - "cidr": "217.142.178.128/25", + "cidr": "140.204.154.128/25", "tags": [ "OSN" ] @@ -5258,167 +5412,162 @@ ] }, { - "region": "mx-queretaro-1", + "region": "us-dallas-1", "cidrs": [ { - "cidr": "140.84.160.0/19", + "cidr": "136.248.192.0/19", "tags": [ "OCI" ] }, { - "cidr": "159.54.128.0/19", + "cidr": "134.70.206.0/23", "tags": [ - "OCI" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "160.34.208.0/20", + "cidr": "134.70.208.0/23", "tags": [ - "OCI" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "163.192.128.0/19", + "cidr": "136.248.224.0/26", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "220.158.64.0/20", + "cidr": "136.248.224.128/25", "tags": [ - "OCI" + "OSN" ] }, { - "cidr": "134.70.184.0/22", + "cidr": "136.248.225.192/26", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OSN" ] }, { - "cidr": "140.91.82.0/23", + "cidr": "136.248.226.0/23", "tags": [ "OSN" ] }, { - "cidr": "140.204.120.128/25", + "cidr": "136.248.228.0/22", "tags": [ "OSN" ] }, { - "cidr": "155.248.144.0/22", + "cidr": "140.91.96.0/23", "tags": [ "OSN" ] }, { - "cidr": "155.248.148.0/25", + "cidr": "140.204.142.128/25", "tags": [ "OSN" ] }, { - "cidr": "159.112.166.0/24", + "cidr": "157.151.32.0/21", "tags": [ "OSN" ] }, { - "cidr": "168.129.247.0/24", + "cidr": "157.151.40.0/22", "tags": [ "OSN" ] - } - ] - }, - { - "region": "eu-paris-1", - "cidrs": [ - { - "cidr": "89.168.32.0/19", - "tags": [ - "OCI" - ] }, { - "cidr": "141.145.192.0/19", + "cidr": "157.151.44.0/23", "tags": [ - "OCI" + "OSN" ] - }, + } + ] + }, + { + "region": "mx-queretaro-1", + "cidrs": [ { - "cidr": "141.253.96.0/19", + "cidr": "140.84.160.0/19", "tags": [ "OCI" ] }, { - "cidr": "145.241.160.0/20", + "cidr": "159.54.128.0/19", "tags": [ "OCI" ] }, { - "cidr": "158.178.192.0/20", + "cidr": "160.34.208.0/20", "tags": [ "OCI" ] }, { - "cidr": "158.178.208.0/21", + "cidr": "163.192.128.0/19", "tags": [ "OCI" ] }, { - "cidr": "79.76.18.0/23", + "cidr": "220.158.64.0/20", "tags": [ - "OSN" + "OCI" ] }, { - "cidr": "134.70.180.0/22", + "cidr": "134.70.184.0/22", "tags": [ "OSN", "OBJECT_STORAGE" ] }, { - "cidr": "140.91.80.0/23", + "cidr": "140.91.82.0/23", "tags": [ "OSN" ] }, { - "cidr": "140.204.116.128/25", + "cidr": "140.204.120.128/25", "tags": [ "OSN" ] }, { - "cidr": "145.241.183.0/24", + "cidr": "155.248.144.0/22", "tags": [ "OSN" ] }, { - "cidr": "155.248.128.0/22", + "cidr": "155.248.148.0/25", "tags": [ "OSN" ] }, { - "cidr": "155.248.132.0/23", + "cidr": "159.112.166.0/24", "tags": [ "OSN" ] }, { - "cidr": "155.248.135.128/25", + "cidr": "168.129.247.0/24", "tags": [ "OSN" ] @@ -5426,64 +5575,58 @@ ] }, { - "region": "me-riyadh-1", + "region": "ap-singapore-2", "cidrs": [ { - "cidr": "84.8.96.0/19", + "cidr": "140.245.32.0/19", "tags": [ "OCI" ] }, { - "cidr": "145.241.152.0/21", + "cidr": "217.142.184.0/21", "tags": [ "OCI" ] }, { - "cidr": "79.76.16.0/23", - "tags": [ - "OSN" - ] - }, - { - "cidr": "79.76.20.0/24", + "cidr": "159.13.0.0/22", "tags": [ "OSN" ] }, { - "cidr": "84.8.64.0/22", + "cidr": "159.13.4.0/25", "tags": [ "OSN" ] }, { - "cidr": "84.8.68.0/25", + "cidr": "161.33.255.0/24", "tags": [ "OSN" ] }, { - "cidr": "84.8.72.0/22", + "cidr": "217.142.160.0/21", "tags": [ "OSN" ] }, { - "cidr": "84.8.88.128/25", + "cidr": "217.142.168.0/22", "tags": [ "OSN" ] }, { - "cidr": "130.110.224.0/21", + "cidr": "217.142.176.0/23", "tags": [ "OSN" ] }, { - "cidr": "141.253.212.0/23", + "cidr": "217.142.178.128/25", "tags": [ "OSN" ] @@ -5491,64 +5634,64 @@ ] }, { - "region": "sa-bogota-1", + "region": "sa-valparaiso-1", "cidrs": [ { - "cidr": "149.130.160.0/19", + "cidr": "148.116.104.0/21", "tags": [ "OCI" ] }, { - "cidr": "157.137.192.0/19", + "cidr": "149.130.224.0/19", "tags": [ "OCI" ] }, { - "cidr": "157.137.224.0/20", + "cidr": "165.1.120.0/21", "tags": [ "OCI" ] }, { - "cidr": "158.247.120.0/21", + "cidr": "168.129.176.0/22", "tags": [ "OCI" ] }, { - "cidr": "157.137.254.0/24", + "cidr": "165.1.96.0/22", "tags": [ "OSN" ] }, { - "cidr": "158.247.96.0/22", + "cidr": "165.1.100.0/25", "tags": [ "OSN" ] }, { - "cidr": "158.247.100.0/25", + "cidr": "165.1.104.0/22", "tags": [ "OSN" ] }, { - "cidr": "158.247.104.0/22", + "cidr": "165.1.112.0/23", "tags": [ "OSN" ] }, { - "cidr": "158.247.112.0/23", + "cidr": "165.1.114.128/25", "tags": [ "OSN" ] }, { - "cidr": "158.247.114.128/25", + "cidr": "168.129.180.0/23", "tags": [ "OSN" ] @@ -5556,58 +5699,64 @@ ] }, { - "region": "sa-valparaiso-1", + "region": "sa-bogota-1", "cidrs": [ { - "cidr": "149.130.224.0/19", + "cidr": "149.130.160.0/19", "tags": [ "OCI" ] }, { - "cidr": "165.1.120.0/21", + "cidr": "157.137.192.0/19", "tags": [ "OCI" ] }, { - "cidr": "168.129.176.0/22", + "cidr": "157.137.224.0/20", "tags": [ "OCI" ] }, { - "cidr": "165.1.96.0/22", + "cidr": "158.247.120.0/21", + "tags": [ + "OCI" + ] + }, + { + "cidr": "157.137.254.0/24", "tags": [ "OSN" ] }, { - "cidr": "165.1.100.0/25", + "cidr": "158.247.96.0/22", "tags": [ "OSN" ] }, { - "cidr": "165.1.104.0/22", + "cidr": "158.247.100.0/25", "tags": [ "OSN" ] }, { - "cidr": "165.1.112.0/23", + "cidr": "158.247.104.0/22", "tags": [ "OSN" ] }, { - "cidr": "165.1.114.128/25", + "cidr": "158.247.112.0/23", "tags": [ "OSN" ] }, { - "cidr": "168.129.180.0/23", + "cidr": "158.247.114.128/25", "tags": [ "OSN" ] @@ -5670,83 +5819,66 @@ ] }, { - "region": "ca-montreal-1", + "region": "ap-delhi-1", "cidrs": [ { - "cidr": "68.233.120.0/21", - "tags": [ - "OCI" - ] - }, - { - "cidr": "151.145.32.0/19", - "tags": [ - "OCI" - ] - }, - { - "cidr": "155.248.224.0/20", - "tags": [ - "OCI" - ] - }, - { - "cidr": "168.138.64.0/19", + "cidr": "168.107.192.0/19", "tags": [ "OCI" ] }, { - "cidr": "170.9.32.0/20", + "cidr": "134.70.230.0/23", "tags": [ - "OCI" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "204.216.104.0/21", + "cidr": "134.70.232.0/23", "tags": [ - "OCI" + "OSN", + "OBJECT_STORAGE" ] }, { - "cidr": "38.104.155.92/31", + "cidr": "140.91.108.0/23", "tags": [ "OSN" ] }, { - "cidr": "134.70.116.0/22", + "cidr": "140.204.166.128/25", "tags": [ - "OSN", - "OBJECT_STORAGE" + "OSN" ] }, { - "cidr": "140.91.50.0/23", + "cidr": "168.107.248.0/26", "tags": [ "OSN" ] }, { - "cidr": "140.204.46.128/25", + "cidr": "168.107.248.128/25", "tags": [ "OSN" ] }, { - "cidr": "168.129.240.0/22", + "cidr": "168.107.249.192/26", "tags": [ "OSN" ] }, { - "cidr": "192.29.80.0/22", + "cidr": "168.107.250.0/23", "tags": [ "OSN" ] }, { - "cidr": "192.29.88.0/21", + "cidr": "168.107.252.0/22", "tags": [ "OSN" ] @@ -6014,58 +6146,58 @@ ] }, { - "region": "us-quincy-1", + "region": "us-shawnee-1", "cidrs": [ { - "cidr": "192.22.128.0/19", + "cidr": "192.22.0.0/19", "tags": [ "OCI" ] }, { - "cidr": "192.22.160.0/26", + "cidr": "192.22.32.0/26", "tags": [ "OSN" ] }, { - "cidr": "192.22.160.128/25", + "cidr": "192.22.32.128/25", "tags": [ "OSN" ] }, { - "cidr": "192.22.161.192/26", + "cidr": "192.22.33.192/26", "tags": [ "OSN" ] }, { - "cidr": "192.22.162.0/23", + "cidr": "192.22.34.0/23", "tags": [ "OSN" ] }, { - "cidr": "192.22.164.0/22", + "cidr": "192.22.36.0/22", "tags": [ "OSN" ] }, { - "cidr": "192.22.168.0/22", + "cidr": "192.22.40.0/22", "tags": [ "OSN" ] }, { - "cidr": "192.22.172.128/25", + "cidr": "192.22.44.128/25", "tags": [ "OSN" ] }, { - "cidr": "192.22.176.0/23", + "cidr": "192.22.48.0/23", "tags": [ "OSN" ] @@ -6131,6 +6263,124 @@ } ] }, + { + "region": "us-quincy-1", + "cidrs": [ + { + "cidr": "192.22.128.0/19", + "tags": [ + "OCI" + ] + }, + { + "cidr": "192.22.160.0/26", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.22.160.128/25", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.22.161.192/26", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.22.162.0/23", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.22.164.0/22", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.22.168.0/22", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.22.172.128/25", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.22.176.0/23", + "tags": [ + "OSN" + ] + } + ] + }, + { + "region": "sa-riodejaneiro-2", + "cidrs": [ + { + "cidr": "192.22.192.0/19", + "tags": [ + "OCI" + ] + }, + { + "cidr": "192.22.224.0/26", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.22.224.128/25", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.22.225.192/26", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.22.226.0/23", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.22.228.0/22", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.22.232.0/22", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.22.236.128/25", + "tags": [ + "OSN" + ] + }, + { + "cidr": "192.22.240.0/23", + "tags": [ + "OSN" + ] + } + ] + }, { "region": "eu-jovanovac-1", "cidrs": [ @@ -6191,4 +6441,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/wwwroot/js/json-highlight.js b/wwwroot/js/json-highlight.js index 0040b16..5e92b86 100644 --- a/wwwroot/js/json-highlight.js +++ b/wwwroot/js/json-highlight.js @@ -11,6 +11,9 @@ window.highlightJson = function() { // Check if content is already highlighted if (!codeBlock.classList.contains('hljs')) { try { + // Sanitize content by using textContent to prevent HTML injection + const jsonText = codeBlock.textContent; + // Apply the 'language-json' class for highlighting codeBlock.className = 'bg-dark text-light p-3 rounded json-output language-json'; // Run the highlighter diff --git a/wwwroot/openapi.json b/wwwroot/openapi.json new file mode 100644 index 0000000..12bfb3b --- /dev/null +++ b/wwwroot/openapi.json @@ -0,0 +1,239 @@ +{ + "openapi": "3.0.0", + "info": { + "title": "Albatross IP Analysis API", + "version": "1.0.0", + "description": "Comprehensive IP address analysis including cloud provider detection, abuse reputation checking via AbuseIPDB, ASN information from Cloudflare Radar, and AI-powered risk assessment.", + "contact": { + "name": "Albatross API Support", + "url": "https://albatross.devnomadic.com" + } + }, + "servers": [ + { + "url": "https://albatross.devnomadic.com", + "description": "Production server" + }, + { + "url": "https://albatross-api.devnomadic.com", + "description": "API server (no authentication required)" + } + ], + "paths": { + "/api": { + "get": { + "summary": "Analyze IP Address", + "description": "Returns comprehensive analysis of an IP address including cloud provider detection, abuse reputation, ASN information, and AI-powered risk assessment.", + "operationId": "analyzeIP", + "parameters": [ + { + "name": "ipaddress", + "in": "query", + "required": true, + "description": "The IPv4 or IPv6 address to analyze. Must be a valid public routable IP address.", + "schema": { + "type": "string", + "example": "8.8.8.8" + } + }, + { + "name": "cloudprovider", + "in": "query", + "required": false, + "description": "Filter cloud provider matches. Options: all, azure, aws, gcp, oracle. Omit this parameter to disable cloud provider manifest search.", + "schema": { + "type": "string", + "enum": ["all", "azure", "aws", "gcp", "oracle"] + } + }, + { + "name": "maxageindays", + "in": "query", + "required": false, + "description": "Maximum age in days for abuse reports.", + "schema": { + "type": "integer", + "minimum": 1, + "maximum": 365, + "default": 30 + } + }, + { + "name": "verbose", + "in": "query", + "required": false, + "description": "Include detailed abuse reports in the response.", + "schema": { + "type": "boolean", + "default": true + } + }, + { + "name": "enableai", + "in": "query", + "required": false, + "description": "Enable AI-powered risk analysis using Cloudflare Workers AI.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SuccessResponse" + } + } + } + }, + "400": { + "description": "Bad request - Invalid or missing parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ErrorResponse" + } + } + } + }, + "500": { + "description": "Internal server error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ErrorResponse" + } + } + } + } + } + } + } + }, + "components": { + "schemas": { + "SuccessResponse": { + "type": "object", + "properties": { + "success": { + "type": "boolean", + "example": true + }, + "data": { + "type": "object", + "properties": { + "ipAddress": { + "type": "string", + "example": "8.8.8.8" + }, + "cloudMatches": { + "type": "object", + "nullable": true, + "description": "Cloud provider matches (if cloudprovider parameter was specified)" + }, + "reputation": { + "type": "object", + "description": "AbuseIPDB reputation data" + }, + "asnInfo": { + "type": "object", + "description": "ASN information from Cloudflare Radar" + }, + "aiReputation": { + "type": "object", + "nullable": true, + "description": "AI-powered risk assessment (if enabled)" + } + } + }, + "metadata": { + "type": "object", + "properties": { + "requestId": { + "type": "string", + "example": "a1b2c3d4e5f6g7h8" + }, + "timestamp": { + "type": "string", + "format": "date-time", + "example": "2025-12-28T12:00:00Z" + }, + "executionTimeMs": { + "type": "integer", + "example": 1250 + }, + "sources": { + "type": "object", + "properties": { + "cloudSearch": { + "type": "string", + "enum": ["success", "not-requested"] + }, + "abuseipdb": { + "type": "string", + "enum": ["success", "error"] + }, + "radar": { + "type": "string", + "enum": ["success", "error"] + }, + "ai": { + "type": "string", + "enum": ["success", "error", "disabled"] + } + } + }, + "workerInfo": { + "type": "object", + "description": "Cloudflare Worker metadata" + } + } + } + } + }, + "ErrorResponse": { + "type": "object", + "properties": { + "success": { + "type": "boolean", + "example": false + }, + "error": { + "type": "string", + "example": "Missing required parameter: ipaddress" + }, + "code": { + "type": "string", + "example": "MISSING_PARAMETER" + }, + "status": { + "type": "integer", + "example": 400 + }, + "metadata": { + "type": "object", + "properties": { + "requestId": { + "type": "string", + "example": "a1b2c3d4e5f6g7h8" + }, + "timestamp": { + "type": "string", + "format": "date-time", + "example": "2025-12-28T12:00:00Z" + }, + "executionTimeMs": { + "type": "integer", + "example": 25 + } + } + } + } + } + } + } +} diff --git a/wwwroot/sitemap.xml b/wwwroot/sitemap.xml index debbbd6..dfcf6df 100644 --- a/wwwroot/sitemap.xml +++ b/wwwroot/sitemap.xml @@ -7,37 +7,37 @@ https://albatross.devnomadic.com/ - 2025-10-31 + 2025-12-28 weekly 1.0 - https://albatross.devnomadic.com/ip-manifests/AWS.json - 2025-10-31 + https://albatross.devnomadic.com/ip-manifests/aws.json + 2025-12-28 daily 0.8 - https://albatross.devnomadic.com/ip-manifests/Azure.json - 2025-10-31 + https://albatross.devnomadic.com/ip-manifests/azure.json + 2025-12-28 daily 0.8 - https://albatross.devnomadic.com/ip-manifests/GCP.json - 2025-10-31 + https://albatross.devnomadic.com/ip-manifests/gcp.json + 2025-12-28 daily 0.8 - https://albatross.devnomadic.com/ip-manifests/Oracle.json - 2025-10-31 + https://albatross.devnomadic.com/ip-manifests/oracle.json + 2025-12-28 daily 0.8 https://albatross.devnomadic.com/robots.txt - 2025-10-31 + 2025-12-28 monthly 0.3