The editions of the publication reported that the candidates among the military supported by the Kremlin will be nominated from the United Russia party. The source of Faridaily, close to the leadership of United Russia, believes that it would be difficult to elect 100 military in the State Duma in party lists. At the same time, according to him, in the single-mandate districts in the State Duma, more candidate-military candidates may fall, but their chances of the election will depend on how they are prepared by the authorities. The editions of the publication noted that the great problem for the authorities will be how controlled by deputies from among the former military. One of the sources said that it would not be easy for professional politicians and officials to deal with them. At the same time, a source familiar with how war veterans are taught to work in the civil service, I am sure that the new deputies will be deputies of governors and other officials who have gone to the war. As Faridaily notes, in 2024 the veterans of the Russian-Ukrainian war were massively ran for regional legislatures, but almost none of them passed the primaries of United Russia. All 14 candidates-military candidates did not pass in Moscow. According to the Kommersant newspaper, the Russian authorities set the regions the task of ensuring in the elections to the State Duma to provide 55% of the vote for United Russia in a turnout of 55%. But, according to the source of Medusa, close to United Russia, the plan is 60-65% of the vote for the party with a turnout of 55-60%. On the State Duma election in 2021, according to the CEC of the Russian Federation, United Russia received 49.8% of the vote. The turnout amounted to 51.72%. The “general rehearsal” of the following elections to the State Duma is voted. Employees of the Presidential Administration – think whether to create a new party for those who are disappointed in the Communist Party of the General Rehearsal of the following elections to the State Duma Russians – vote. Employees of the Presidential Administration – think whether to create a new party for those who are disappointed in the Communist Party (Tagstotranslate) News
Credit-Read More
// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts
// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);
// Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);
Random Latest Posts Display // Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;
// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `
${description} Read more
`;
// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}
// Call the function to fetch and display the latest posts
fetchLatestPosts();