Additional police officers from the Directorates for the Prosecution of Economic Crimes, Combating Trafficking and Trafficking in People and Goods, Combating Organized Sports Violence and Intelligence and Special Actions participated in the operation, while police officers from the Directorate of Police Operations of Attica, EKAM, O .P.K.E. of the Directorate for Prosecution and Investigation of Crimes and the Traffic Directorates of Attica and the Athens Police, as well as police dogs.
During the police operation, -53- house searches were carried out, -90- people were checked, while -9- were brought in and a total of -13- people were arrested, who -as the case may be- are accused of drugs, weapons, counterfeit products, theft of tobacco products and not issuing identity cards.
At the same time, -38- violations of the Code of Civil Procedure were confirmed, -4- vehicles were immobilized, while -12- driving licenses and -9- driving licenses were revoked.
From the searches carried out in total, the following were found and seized:
-769.9- grams cannabis,
cannabis plant,
-18- medicinal tablets,
-10,890- packages of tobacco products (stolen worth -500,000- euros),
-2- swords,
-4- knives,
-4- cartridges,
-3- pistols,
air gun,
-5- wireless,
-23- hard drives,
-2- fluorescent vests,
-311- imitation products,
-465- euros and
-2- precision scales.
Those arrested will be taken to the competent prosecuting authority.
The special operational actions of the Hellenic Police will continue with undiminished intensity with the aim of strengthening citizens’ sense of security.
#Police #operation #Acharnes #Drugs #weapons #stolen #goods
What role does the `cmpActionCompleted` function play in this code?
This code snippet appears to manage the loading and execution of various advertising and tracking scripts on a webpage. Let's break down what each part does:
**Ad Management:**
* **Google AdSense:** The code checks for elements with the class 'adsbygoogle' which are likely placeholders for Google AdSense ads. If found, it uses `asyncLoadScript` to load the necessary AdSense script. [[1](https://admanager.google.com/home/)]
* **Phaistos Adman:** This is another ad network. The code initializes Adman with an ad unit ID and height.[[1](https://admanager.google.com/home/)]
**Analytics and Tracking:**
* **OneSignal:**
This is a push notification and marketing automation platform. The code sets up OneSignal with an `appId` to handle sending notifications to users.
* **Disqus:** This is a comment and discussion platform. The code sets up Disqus configuration with the page URL and identifier, preparing it to load comments.
* **Glomex, Dalecta, and Vidoomy:** These are likely also ad networks or video players with their respective scripts being loaded using `asyncLoadScript` and `asyncLoadModule`.
**Other:**
* **cmpActionCompleted function:** This function seems to be triggered after user consent regarding privacy preferences is obtained (perhaps through a Cookie Consent Manager). It then loads various advertising and tracking scripts based on the user's consent choices.
* **CleverCore (commented out):** This appears to be a data collection and targeting platform, but the code related to it is commented out, meaning it is not currently active.
**Overall Purpose**
This code snippet demonstrates how a website manages the complex world of online advertising and tracking by integrating various third-party platforms, loading scripts asynchronously, and potentially handling user consent preferences.