/*----------------- COSMOTE ONE FUNCTIONS ---------------------*/
/*-------------------------- Cosmote ONE General ----------------------------*/
function reloadFixedIframe() {
var url = $("#oneFixedAuthorizationIframe").attr('data-init-url');
$("#oneFixedAuthorizationIframe").attr("src", url);
//$("#oneFixedAuthorizationIframe").show();
alignFixedAndMobileAreaWidths();
$("#oneFixedAuthorizationIframe").load(function(){
$('div.fixed-loader').hide();
$(this).show();
});
}
function adjustFixedAreaHeight(newHeight) {
var heightToSet = newHeight;
var iFrames = $('iframe#oneFixedAuthorizationIframe');
for (var i = 0, j = iFrames.length; i < j; i++) {
iFrames[i].style.height = heightToSet + 'px';
}
}
function alignFixedAndMobileAreaWidths() {
// get the width of the Mobile auth container...
var newWidth = $('#oneCosmoteAuthorizationContainer').width();
newWidth = newWidth > $('#oneCosmoteAuthorizationContainer div.container')
.width() ? newWidth : $(
'#oneCosmoteAuthorizationContainer div.container').width();
// ...and apply it to the Fixed auth container
$('#oneFixedAuthorizationIframe').width(newWidth);
}
function updateLoginForms() {
var usernameCookieValue = getCookie('HUB_REMEMBERED_USERNAME');
if (usernameCookieValue && usernameCookieValue != '') {
$(".login-box .usernameLoginClass").val(usernameCookieValue);
$(".login-box input[name=remember]").iCheck('check');
}
}
function setRememberedUsername() {
var isChecked = $('.login-box input[name=remember]').is(':checked');
var username = $(".login-box .usernameLoginClass").val();
if(isChecked) {
//setCookie('HUB_REMEMBERED_USERNAME', username, 60 * 60 * 24 * 365 * 10);
var date = new Date();
date.setDate(date.getDate() + 100000 /*days*/);
var expires = date.toGMTString();
document.cookie="HUB_REMEMBERED_USERNAME="+username+"; expires="+expires+"; path=/";
} else {
document.cookie = "HUB_REMEMBERED_USERNAME=; expires=Thu, 01 Jan 1970 00:00:00 UTC";
}
}
function showMessageOnLoginError() {
if(typeof qr != "undefined" && qr.isInQrMode()){
qr.showAsFailedToLoginViaQR();
return;
}
var formName = "pageOuterForm";
var username = window.parent.$(".iframe-form-login .usernameLoginClass");
var password = window.parent.$(".iframe-form-login .passwordLoginClass");
var error = window.parent.$(".iframe-form-login .login-failed");
username.parent().addClass("error");
password.parent().addClass("error");
password
.parent()
.find('.help-block')
.html("
"+bundles.getTranslation('Hub.MainJs.showMessageOnLoginError.Message')+" ");
password.val("");
error.show();
}
function showLoginConsolidationPopup() {
/*alertBox(bundles.getTranslation('Hub.Login.ConsolidationPopup.Message'),{
title : bundles.getTranslation('Hub.Login.ConsolidationPopup.Title'),
type : 'info'
});*/
cModal.open({
html:''+bundles.getTranslation('Hub.Login.ConsolidationPopup.Title')+' '+bundles.getTranslation('Hub.Login.ConsolidationPopup.Message')+'
'+bundles.getTranslation('Hub.Login.ConsolidationPopup.Note')+'
OK '
});
$('div.cModal-content button').click(function(){
window.location = /consolidation/;
});
}
function isPasswordPolicyCompliant(password) {
var PASSWORD_REGEX = /^(?=.*[0-9])(?=.*[a-zA-Z])([^\u0370-\u03FF?|*\s]{8,20})$/;
if (PASSWORD_REGEX.test(password)) {
return true;
}
return false;
}
function isValidTaxNumber(taxNumber) {
var nonValidChars = /[^0-9]/;
if ((taxNumber == '') || (taxNumber.length != 9)
|| (taxNumber.replace(nonValidChars, '') != taxNumber))
return false;
/* Check if all digits are the same */
var sameDigits = true;
for (var i = 0; i < 8; i++) {
if (taxNumber.charAt(i) != taxNumber.charAt(i + 1)) {
sameDigits = false;
break;
}
}
if (sameDigits)
return false;
var sum = 0;
for (var i = 0; i < 8; i++) {
sum += eval(taxNumber.charAt(i)) * (Math.pow(2, 8 - i));
}
var checkdgt = sum % 11;
if (checkdgt == 10)
checkdgt = 0;
if (checkdgt == taxNumber.charAt(8))
return true;
return false;
}
function hasReCaptchaResponse(recapthcaId) {
return grecaptcha.getResponse(window[recapthcaId]) != "";
}
globalTimers = {
loaderTimer : 500,
popupTimer : 600,
scrollSpeed : 400,
}
$(document).ajaxStart(function() {
try{
if (typeof cLoader!='undefined'){
ajaxLoader = cLoader.open();
}
}catch(err){
console.log("Cannot open loader.",err);
}
});
$(document).ajaxStop(function() {
try{
if (typeof cLoader!='undefined'&&typeof ajaxLoader!='undefined'){
setTimeout(function() {
cLoader.close(ajaxLoader);
},globalTimers.loaderTimer)
}
}catch(err){
console.log("Cannot close loader.",err);
}
});
$(document).ready(function() {
updateLoginForms();
if($('div.password-change-reminder').size() > 0) {
setCookie('PWD_EXP_NTF', 'true', 60 * 60 * 24 * 365 * 10);
}
if($('iframe#oneFixedAuthorizationIframe.loggedin-iframe').size() > 0) {
reloadFixedIframe();
}
//change language links
$('.changeLanguageCosmoteLink').on("click",function() {
var cookieValue = $(this).attr('data-language-cosmote');
document.cookie = "COSMOTE_LANG_ID=" + cookieValue + ";path=/";
window.location.reload();
});
});
$(".custom-modal.close").on('click', function() {
$(this).parents(".cModal-wrapper").remove();
});
UIUtils = {
showErrorsWithinAlert : function(errors, $form) {
var numberOfMessages = errors ? errors.length : 0;
if (numberOfMessages > 0) {
var errorBox = $form ? $form.find('.alert-danger')
: $('.alert-danger');
if (errorBox.size() == 0) {
return;
}
var errorMessagesArea = errorBox.find('.errors-description');
errorMessagesArea.empty();
for (var i = 0; i < numberOfMessages; i++) {
errorMessagesArea.append('' + errors[i] + '
');
}
/*
* var $title = errorBox.find('h4'); if(!title) { $title.hide(); }
* else { $title.empty(); $title.append(title); }
*/
errorBox.find('.default-errors-description').addClass('hidden');
errorBox.find('.errors-description').removeClass('hidden');
errorBox.removeClass('hidden');
}
},
hideFormAlert : function($form) {
var errorBox = $form ? $form.find('.alert-danger') : $('.alert-danger');
errorBox.addClass('hidden');
}
}
$("document").ready(function(){
$(".tab-item").not(".active").on("click",function(){
var $that=$(this);
var onePagesBusinessPath="businessone";
var onePagesPath="one";
var pathnameArray = window.location.pathname.split("/");
var onePages=$.inArray(onePagesPath,pathnameArray)>=0?$.inArray(onePagesPath,pathnameArray): $.inArray(onePagesBusinessPath,pathnameArray);
if ($that.hasClass("individuals")){
var selectedMode = "INDIVIDUAL";
var redirectToOne=onePages>=0?onePagesPath:"";
}else if ($that.hasClass("businesses")){
var selectedMode = "BUSINESS";
var redirectToOne=onePages>=0?onePagesBusinessPath:"";
}
$.ajax({
type : "POST",
url : '/cte/blocks/one/header/businessIndividual/businessIndividualDroplet.jsp',
data : {
"selectedMode" : selectedMode
},
dataType : 'json',
success : function(data) {
if (data.status != "OK") {
} else {
if (onePages>=0){
window.location.replace("/"+redirectToOne+"/");
}else{
window.location.reload();
}
}
},
error : function() {
}
});
});
})
/*-------------------- Login Menu functionality START----------------*/
$(document).ready(function(){
linktoContainerTimer=0;
var container = $(".loginArea");
var loginBox = container.find(".login-box");
var link = $('li.menu-item.mydashboard');
if (container.length>0){
link.hover(function(){
clearTimeout(linktoContainerTimer);
if (!$(this).hasClass("closed")) return;
loginBox.css("display","none");
container.show();
loginBox.show("fade",200);
$(this).removeClass("closed").addClass("open");
link.addClass('active');
},function(){
hoverOutActions();
});
container.hover(function(){
clearTimeout(linktoContainerTimer);
},function(){
hoverOutActions();
});
$(document).mouseup(function (e){
if (!container.is(e.target) && container.has(e.target).length === 0)
{
hideLoginContainer();
}else if (container.is(e.target) || container.has(e.target).length > 0)
{
container.addClass("sticky-login");
}
})
function hoverOutActions(){
if (container.hasClass("sticky-login")) return;
linktoContainerTimer=setTimeout(function(){
hideLoginContainer();
},500);
}
function hideLoginContainer(){
loginBox.hide("fade",400,function(){
container.removeClass("sticky-login").hide();
link.removeClass('active').removeClass('open').addClass('closed');
});
}
}
})
/*-------------------- Login Menu functionality END-----------------*/
/*-------------------------- End of Cosmote ONE General ----------------------------*/
/*-------------------------- Cosmote ONE Nav Menu Selector Start -------------------------- */
$(document).ready(function(){
var $pageBookmark=$("#active-menu");
if ($pageBookmark.length){
var menuItemToHighlight =$pageBookmark.first().data("active-menu");
var menuItem = $(".main-menu li[data-active-menu='"+menuItemToHighlight+"']");
if (menuItem.length){
$(".main-menu li").removeClass("active");
menuItem.addClass("active");
}
}
})
$(document).ready(function(){
var $header=$(".cosmote-one-header, .cosmote-business-one-header");
if ($header.length){
var pathName=window.location.pathname;
var menuItem = $header.find("li a[href='"+pathName+"']");
if (menuItem.length){
menuItem.addClass("active");
}
}
})
/*-------------------------- Cosmote ONE Nav Menu Selector End ---------------------------*/
/*-------------------------- Cosmote ONE login form -------------------------- */
$(document).ready(function() {
$(".iframe-form-login").submit(function(e) {
e.preventDefault();
var username = $(this).find(".usernameLoginClass").val();
var password = $(this).find(".passwordLoginClass").val();
if ($(this).find('div.error').size() > 0) {
return false;
}
var loaderId = cLoader.open({text : bundles.getTranslation('Hub.General.Loader.PleaseWait')});
$('div.cModal-wrapper.cModal-id-'+loaderId).css('background', 'rgba(255, 255, 255, 0.90) none repeat scroll 0 0');
document.getElementById('iframe-hidden-login').contentWindow.submitLogin(username, password);
e.preventDefault();
});
$('.iframe-form-login a.login-submit').click(function() {
$(this).closest('form').submit();
return false;
});
});
/*-------------------------- End of Cosmote ONE login form -------------------------- */
/*-------------------------- Cosmote ONE dashboard -------------------------- */
$(document).ready(function() {
$(".dashboard-show-loader-link").on("click", function(){
cLoader.open();
});
$('.dashboard-ajaxified-content').on('render',function() {
bindEventsForPostLinks();
});
bindEventsForPostLinks();
function bindEventsForPostLinks() {
$(".registered-fixed-post-link").off("click").on("click",function(e) {
e.preventDefault(); // cancel the link itself
var accountNumbersList = $(".ddslick.dashboard-fixed-customer-account-number");
var accountNumber = accountNumbersList && accountNumbersList.size() > 0 ? accountNumbersList[0].getValue().value : '';
var phoneNumbersList = $(".account-services:visible .ddslick.dashboard-fixed-services-phone-number")
var phoneNumber = phoneNumbersList && phoneNumbersList.size() > 0 ? phoneNumbersList[0].getValue().text : '';
submitUrlInCurrentTabViaHiddenForm('POST',this.href,{
accountNumber : accountNumber,
phoneNumber : phoneNumber
});
});
$(".registered-mobile-post-link").off("click").on("click",function(e) {
e.preventDefault(); // cancel the link itself
var msisdnsList = $(".ddslick.dashboard-mobile-authorization, .ddslick.dashboard-mobile-pr-authorization");
var overrideSelectedMsisdn = msisdnsList && msisdnsList.size() > 0 ? msisdnsList[0].getValue().value : '';
submitUrlInCurrentTabViaHiddenForm('POST',this.href,{
overrideSelectedMsisdn : overrideSelectedMsisdn
});
});
}
function submitUrlInCurrentTabViaHiddenForm(method, url, params) {
cLoader.open();
var f = $("")
.attr({
method : method,
action : url
}).appendTo(document.body);
var allParams = $.extend({}, getJsonFromUrl(url), params);
for ( var i in allParams) {
if (allParams.hasOwnProperty(i)) {
$(' ').attr({
name : i,
value : allParams[i]
}).appendTo(f);
}
}
f.submit();
f.remove();
}
function submitUrlInNewTabViaHiddenForm(method, url, params) {
var f = $(
"")
.attr({
method : method,
action : url
}).appendTo(document.body);
var allParams = $.extend({}, getJsonFromUrl(url), params);
for ( var i in allParams) {
if (allParams.hasOwnProperty(i)) {
$(' ').attr({
name : i,
value : allParams[i]
}).appendTo(f);
}
}
f.submit();
f.remove();
}
function getJsonFromUrl(url) {
var result = {};
var queryStringStartIndex = url.indexOf('?') + 1;
if (queryStringStartIndex > 0) {
var queryString = url.slice(queryStringStartIndex);
queryString.split("&").forEach(function(part) {
var item = part.split("=");
result[item[0]] = decodeURIComponent(item[1]);
});
}
return result;
}
});
/*-------------------------- End of Cosmote ONE dashboard -------------------------- */
/*------------------------ Start of Cosmote ONE authorization ---------------------- */
$(document).ready(function() {
if ( $('#oneCosmoteAuthorizationContainer').hasClass('already-auth') ) {
cModal.open({
html:'Authorization Success The authorization process was completed successfully!
',
target: '#oneCosmoteAuthorizationContainer .registration-content',
});
}
// authorization form initialization
$('#oneCosmotePrivateAuthForm input[type="text"], #oneCosmotePrivateAuthForm input[type="checkbox"]').each(function(){
if (this.id != "phoneNo") {
// remove validation from additional fields when only MSISDN is
// shown
// don't send the additional fields when only MSISDN is shown
$(this).prop('disabled', true);
}
});
$('#cancelButton').click(function () {
$(this).css("display", "none");
$("form#oneCosmotePrivateAuthForm input[name='phoneNo']").removeAttr('readonly');
$("form#oneCosmotePrivateAuthForm input[name='phoneNo']").val(null);
$("#fieldPassportNumber").css("display", "none");
$("form#oneCosmotePrivateAuthForm input[name='passportNumber']").val(null);
$("#fieldTaxNumber").css("display", "none");
$("form#oneCosmotePrivateAuthForm input[name='taxNumber']").val(null);
$('#fieldBirthDate').css("display", "none");
$('#oneCosmotePrivateAuthForm input[type="text"]').each(function(){
if (this.id != "phoneNo") {
$(this).removeClass("validatable");
$(this).prop('disabled', true);
}
});
$('#oneCosmotePrivateAuthForm input[type="checkbox"]').each(function(){
// don't send the additional fields when only MSISDN is shown
$(this).removeProp('checked');
$(this).iCheck('uncheck');
$(this).prop('disabled', true);
});
$('#oneCosmotePrivateAuthForm .datepicker-wrapper input').val("").empty();
$("form#oneCosmotePrivateAuthForm input[name='birthDate']").val(null);
$("form#oneCosmotePrivateAuthForm label#checkboxAgreement").parent(".accept-policy").css("display", "none");
$("form#oneCosmotePrivateAuthForm div.terms-container").css("display", "none");
$("form#oneCosmotePrivateAuthForm input[name='checkboxAgreement']").attr('checked',false);
$("form#oneCosmotePrivateAuthForm input[name='mobileNumberType']").val(null);
});
$('#oneCosmotePrivateAuthForm').ajaxForm({
global: false,
async: true,
dataType: 'json',
beforeSend: function() {
lid = cLoader.open({
target: '#oneCosmoteAuthorizationContainer .registration-content'
});
},
success: function(data, status, xhr, form) {
console.log(data);
setTimeout(function(){
cLoader.close(lid);
}, globalTimers.loaderTimer);
if(data.statusCode == "OK") {
var isSecondStep = form.find('input[name=birthDate]').not(':disabled').size()>0;
if(isSecondStep) {
setTimeout(function(){
cModal.open({
html:('
'+bundles.getTranslation('Hub.MainJs.oneCosmoteCompanyAuthForm.AuthorizationMessage')+' '),
target: '#oneCosmoteAuthorizationContainer .registration-content',
});
}, globalTimers.popupTimer);
return;
}
var msisdnType = data.mobileNumberType;
$("form#oneCosmotePrivateAuthForm input[name='phoneNo']").attr('readonly','readonly');
var taxNumberInput = $("form#oneCosmotePrivateAuthForm input[name='taxNumber']");
var passportNumberInput = $("form#oneCosmotePrivateAuthForm input[name='passportNumber']");
var birthDateInput = $("form#oneCosmotePrivateAuthForm #fieldBirthDate input[name=birthDate]");
var otherDateInputs = $("form#oneCosmotePrivateAuthForm #fieldBirthDate input");
if (msisdnType == "PREPAID") {
$("#fieldPassportNumber").css("display", "block");
passportNumberInput.addClass("validatable");
passportNumberInput.prop('disabled', false);
taxNumberInput.val(null);
}
if (msisdnType == "POSTPAID" || msisdnType == "COST_CONTROL") {
msisdnType = 'POSTPAID';
$("#fieldTaxNumber").css("display", "block");
taxNumberInput.addClass("validatable");
taxNumberInput.prop('disabled', false);
passportNumberInput.val(null);
}
$("form#oneCosmotePrivateAuthForm input[name='mobileNumberType']").val(msisdnType);
var birthDateF = $("#fieldBirthDate");
birthDateF.css("display", "block");
birthDateInput.addClass("validatable");
otherDateInputs.prop('disabled', false);
$("form#oneCosmotePrivateAuthForm label#checkboxAgreement").parent(".accept-policy").css("display", "block");
$("form#oneCosmotePrivateAuthForm label#checkboxAgreement").css("display", "block");
$("form#oneCosmotePrivateAuthForm div.terms-container").css("display", "block");
$("form#oneCosmotePrivateAuthForm input#cancelButton").css("display", "block");
$("form#oneCosmotePrivateAuthForm input[name='checkboxAgreement']").prop('disabled',false);
} else {
setTimeout(function(){
alertBox(data.errorMsg,{
title : bundles.getTranslation('Hub.ProfileForm.Error.General'),
type : 'danger',
target: '#oneCosmoteAuthorizationContainer .registration-content',
});
}, globalTimers.popupTimer);
}
}, error: function (jqXHR, textStatus, errorThrown) {
setTimeout(function(){
cLoader.close(lid);
}, globalTimers.loaderTimer);
setTimeout(function(){
alertBox(errorThrown,{
title : textStatus,
type : 'danger',
target: '#oneCosmoteAuthorizationContainer .registration-content',
});
}, globalTimers.popupTimer);
}
});
$('#oneCosmoteCompanyAuthForm').ajaxForm({
global: false,
async: true,
dataType: 'json',
beforeSend: function() {
$('html, body').animate({
scrollTop: $("#oneCosmoteAuthorizationContainer").offset().top - ( $(window).height() - $("#oneCosmoteAuthorizationContainer").outerHeight(true) ) / 2
}, globalTimers.scrollSpeed);
lid = cLoader.open({
target: '#oneCosmoteAuthorizationContainer .registration-content'
});
},
success: function (data) {
console.log(data);
setTimeout(function(){
cLoader.close(lid);
}, globalTimers.loaderTimer);
if (data && data.statusCode != "OK") {
setTimeout(function(){
alertBox(data.errorMsg,{
title : bundles.getTranslation('Hub.MainJs.oneCosmoteCompanyAuthForm.Message'),
type : 'danger',
target: '#oneCosmoteAuthorizationContainer .registration-content',
});
}, globalTimers.popupTimer);
} else {
setTimeout(function(){
cModal.open({
html:('
'+bundles.getTranslation('Hub.MainJs.oneCosmoteCompanyAuthForm.AuthorizationMessage')+' '),
target: '#oneCosmoteAuthorizationContainer .registration-content',
});
}, globalTimers.popupTimer);
}
}, error: function (jqXHR, textStatus, errorThrown) {
setTimeout(function(){
cLoader.close(lid);
}, globalTimers.loaderTimer);
setTimeout(function(){
alertBox(errorThrown,{
title : bundles.getTranslation('Hub.MainJs.oneCosmoteCompanyAuthForm.Message'),
type : 'danger',
target: '#oneCosmoteAuthorizationContainer .registration-content',
});
}, globalTimers.popupTimer);
}
});
$('#oneCosmoteSplitBillAuthForm').ajaxForm({
global: false,
async: true,
dataType: 'json',
beforeSend: function() {
$('html, body').animate({
scrollTop: $("#oneCosmoteAuthorizationContainer").offset().top - ( $(window).height() - $("#oneCosmoteAuthorizationContainer").outerHeight(true) ) / 2
}, globalTimers.scrollSpeed);
lid = cLoader.open({
target: '#oneCosmoteAuthorizationContainer .registration-content'
});
},
success: function (data) {
console.log(data);
setTimeout(function(){
cLoader.close(lid);
}, globalTimers.loaderTimer);
if (data && data.statusCode != "OK") {
setTimeout(function(){
alertBox(data.errorMsg,{
title : bundles.getTranslation('Hub.MainJs.oneCosmoteCompanyAuthForm.Message'),
type : 'danger',
target: '#oneCosmoteAuthorizationContainer .registration-content',
});
}, globalTimers.popupTimer);
} else {
setTimeout(function(){
cModal.open({
html:('
'+bundles.getTranslation('Hub.MainJs.oneCosmoteCompanyAuthForm.AuthorizationMessage')+' '),
target: '#oneCosmoteAuthorizationContainer .registration-content',
});
}, globalTimers.popupTimer);
}
}, error: function (jqXHR, textStatus, errorThrown) {
setTimeout(function(){
cLoader.close(lid);
}, globalTimers.loaderTimer);
setTimeout(function(){
alertBox(errorThrown,{
title : bundles.getTranslation('Hub.MainJs.oneCosmoteCompanyAuthForm.Message'),
type : 'danger',
target: '#oneCosmoteAuthorizationContainer .registration-content',
});
}, globalTimers.popupTimer);
}
});
$("input[name='client_type']").change(function() {
alert("Changed");
});
});
/*--- Radio buttons AuthFormCosmote---*/
$(document).ready(function() {
$('#checkbox-split_bill').on('ifChecked', function() {
$("#company").addClass("hidden");
$("#split_bill").removeClass("hidden");
});
$('#checkbox-company').on('ifChecked', function() {
$("#company").removeClass("hidden");
$("#split_bill").addClass("hidden");
});
});
/*------------------------ End of Cosmote ONE authorization ---------------------- */
/*-------------------- One profile page ------------------*/
OneProfileActions = {
resetPasswordForm : function() {
var form = $('#form-profile-auth');
form.hide();
form.find('input[type=password]').val('');
form.find('.password info-box').hide();
var panel = form.closest('div.tab-pane');
panel.find('.change').show();
panel.find('.field-value').show();
$('.profile-settings-wrapper .nav-stacked').height(
$('.tab-content').height() + 50);
},
resetProfileFields : function() {
},
updateProfileFields : function() {
$('#oneCustomerProfileForm tr').each(function() {
var $editable = $(this).find('.field-editable');
var $textField = $editable.find('input.validatable');
var emailUpdated = false;
if ($textField.size() == 0) {
return;
}
var $valueField = $editable.find('.field-value');
if ($textField.attr('name') != 'email') {
$valueField.text($textField.val());
} else {
emailUpdated = true;
}
var firstNameUpdated = false;
var lastNameUpdated = false;
if($textField.attr('name') == 'firstName') {
firstNameUpdated = true;
$('span.profile-first-name').text($textField.val());
}
if($textField.attr('name') == 'lastName') {
lastNameUpdated = true;
$('span.profile-last-name').text($textField.val());
}
$valueField.show();
$editable.find('.form-group').hide();
$(this).find('.actions .cancel').hide();
$(this).find('.actions .change').show();
if (emailUpdated) {
$('.email-change-success').show();
}
});
$('#oneCustomerProfileForm input').removeClass('validatable');
$('#oneCustomerProfileForm input').prop('disabled', true);
$('#oneCustomerProfileForm .profile-submit-area').addClass('hidden');
}
}
$(document).ready(function() {
/* Registration first step form */
$('#oneCustomerRegistrationFormFirstStep input[name=email]').keyup(function(){
var form = $('#oneCustomerRegistrationFormFirstStep')
form.find('input[type=submit]').removeClass('disabled').prop('disabled', false);
form.find('div.registration-alert-container').addClass('hidden');
});
$('#oneCustomerRegistrationFormFirstStep').ajaxForm({
url : '/cte/blocks/one/registration/registrationEmailCheckController.jsp',
async : true,
dataType : 'json',
beforeSubmit: function(arr, form, options) {
form.find('div.registration-alert-container').addClass('hidden');
},
success : function(data, status, xhr, form) {
grecaptcha.reset();
if (data.status == "OK" ) {
grecaptcha.reset();
$('div.registration-first-step').addClass('hidden');
$('div.registration-second-step').removeClass('hidden');
var $roots = $('#oneCustomerRegistrationFormPrivate, #oneCustomerRegistrationFormBusiness');
$roots.find('input[name=email], input[name=email-shown]').val(form.find('input[name=email]').val());
} else if(data.status == 'CONSOLIDATION') {
form.find('div.registration-alert-container.consolidation-alert').removeClass('hidden');
form.find('div.registration-alert-container.consolidation-alert div').show();
form.find('input[type=submit]').addClass('disabled').prop('disabled', true);
form.find('input[name=email]').closest('.form-group.control-group').addClass('error');
} else if(data.status == 'PREACTIVE') {
form.find('div.registration-alert-container.preactive-alert').removeClass('hidden');
form.find('div.registration-alert-container.preactive-alert div').show();
form.find('input[type=submit]').addClass('disabled').prop('disabled', true);
form.find('input[name=email]').closest('.form-group.control-group').addClass('error');
} else if(data.status == 'LOGIN') {
form.find('div.registration-alert-container.login-alert').removeClass('hidden');
form.find('div.registration-alert-container.login-alert div').show();
form.find('input[type=submit]').addClass('disabled').prop('disabled', true);
form.find('input[name=email]').closest('.form-group.control-group').addClass('error');
} else {
var errorMessage = bundles.getTranslation('Hub.MainJs.oneCustomerRegistrationForm.Message');
setTimeout(function() {
alertBox(errorMessage, {
title : bundles.getTranslation('Hub.MainJs.oneCustomerRegistrationForm.AlertBox'),
type : 'danger',
});
}, globalTimers.popupTimer);
}
},
error : function(data, status, xhr, form) {
grecaptcha.reset();
var errorMessage = bundles.getTranslation('Hub.MainJs.oneCustomerRegistrationForm.Message');
setTimeout(function() {
alertBox(errorMessage, {
title : bundles.getTranslation('Hub.MainJs.oneCustomerRegistrationForm.AlertBox'),
type : 'danger',
});
}, globalTimers.popupTimer);
}
});
$('#oneCustomerRegistrationFormPrivate a.back-to-first-step, #oneCustomerRegistrationFormBusiness a.back-to-first-step').click(function(){
var $roots = $('#oneCustomerRegistrationFormPrivate, #oneCustomerRegistrationFormBusiness');
$roots.find('input[type=text], input[type=password]').val('');
$('div.registration-second-step').addClass('hidden');
$('div.registration-first-step').removeClass('hidden');
$roots.find('div.form-group.control-group').removeClass('error');
$roots.find('div.form-group.control-group div.info-box').addClass('hidden');
$roots.find('input[type=checkbox][name=newsletterKiniti]').iCheck('check');
$roots.find('input[type=checkbox][name=newsletterStatheri]').iCheck('check');
$roots.find('div.form-group.control-group p.help-block').empty();
var classes = $('#oneCustomerRegistrationFormPrivate').find('div.pass-strength-wrapper').attr("class").split(" ");
var classesBusiness = $('#oneCustomerRegistrationFormBusiness').find('div.pass-strength-wrapper').attr("class").split(" ");
classes = $.merge(classes, classesBusiness);
for(var curClass=0; curClass < classes.length; curClass++){
var found = classes[curClass].search(/verdict-level+/);
if( found >= 0) {
$('div.pass-strength-wrapper').removeClass(classes[curClass]);
}
}
$roots.find('div.pass-verdict').empty();
$roots.find('div.pass-progress-bar').empty();
return false;
});
/* End of registration first step form */
$('#oneCustomerRegistrationFormPrivate, #oneCustomerRegistrationFormBusiness').ajaxForm({
url : '/cte/blocks/one/registration/registrationController.jsp',
async : true,
dataType : 'json',
beforeSubmit: function(){
var validationErrorFields=$(".cust-val");
if (validationErrorFields.length>0){
validationErrorFields.parent(".form-group").addClass("error");
validationErrorFields.find(".help-block").html(""+bundles.getTranslation('Hub.Registration.Error.CloudEmailAlreadyExists')+" ");
var firstField=validationErrorFields.first();
$('html, body').animate({
scrollTop: firstField.offset().top - ( $(window).height() - firstField.outerHeight(true) ) / 2
}, globalTimers.scrollSpeed);
return false
}
},
success : function(data, status, xhr, form) {
if (data && data.result == "OK") {
var successMessageClone = $('.successMessage').clone();
successMessageClone.find(".alert-fixed-wrapper").css('background', 'none repeat scroll 0 0 rgba(255, 255, 255, 0)');
var messageHtmlString = successMessageClone.html();
setTimeout(function() {
var loaderId = cModal.open({
html : messageHtmlString
});
$('div.cModal-wrapper.cModal-id-'+loaderId).css('background', 'rgba(255, 255, 255, 0.75) none repeat scroll 0 0');
}, globalTimers.popupTimer);
console.log(data);
} else {
var errorMessage = "";
if (data.errMessages != undefined) {
$.each(data.errMessages,function(index, value) {
errorMessage += value + " ";
});
}
setTimeout(function() {
alertBox(errorMessage, {
title : bundles.getTranslation('Hub.MainJs.oneCustomerRegistrationForm.AlertBox'),
type : 'danger',
});
}, globalTimers.popupTimer);
var fieldValidations=data.fieldValidations;
if (fieldValidations.length>0) {
var formObj=form;
var firstField="";
$.each(fieldValidations,function(i){
var fieldName=this.field;
var fieldMessage=this.message;
var fieldObj= formObj.find("input[name='"+fieldName+"']");
fieldObj.parents(".form-group").addClass("error");
var translatedMessage=bundles.getTranslation(fieldMessage)?bundles.getTranslation(fieldMessage):fieldMessage;
fieldObj.nextAll(".help-block").append("");
if (i==0) {
firstField=fieldObj;
}
});
$('html, body').animate({
scrollTop: firstField.offset().top - ( $(window).height() - firstField.outerHeight(true) ) / 2
}, globalTimers.scrollSpeed);
}
}
},
error : function(data) {
var errorMessage = bundles.getTranslation('Hub.MainJs.oneCustomerRegistrationForm.Message');
if (data.errMessages != undefined) {
$.each(data.errMessages,function(index, value) {
errorMessage += value + " ";
});
}
setTimeout(function() {
alertBox(errorMessage, {
title : bundles.getTranslation('Hub.MainJs.oneCustomerRegistrationForm.AlertBox'),
type : 'danger',
});
}, globalTimers.popupTimer);
var fieldValidations=data.fieldValidations;
if (fieldValidations.length>0) {
var formObj=form;
var firstField="";
$.each(fieldValidations,function(i){
var fieldName=this.field;
var fieldMessage=this.message;
var fieldObj= formObj.find("input[name='"+fieldName+"']");
fieldObj.parents(".form-group").addClass("error");
var translatedMessage=bundles.getTranslation(fieldMessage)?bundles.getTranslation(fieldMessage):fieldMessage;
fieldObj.nextAll(".help-block").append("");
if (i==0) {
firstField=fieldObj;
}
});
$('html, body').animate({
scrollTop: firstField.offset().top - ( $(window).height() - firstField.outerHeight(true) ) / 2
}, globalTimers.scrollSpeed);
}
}
});
$('.userName').focusout(function() {
var $that = $(this);
var userName = $that.val();
var parentForm = $that.parents(".form-registration");
var firstName = parentForm.find('.firstName').val();
var lastName = parentForm.find('.lastName').val();
if(!userName || userName == '' || !userName.match('^[A-Za-z0-9\-\_]{3,20}$')) {
return true;
}
if(!firstName && !lastName) {
lastName = 'cosmote';
}
$.ajax({
global : false,
type : "POST",
url : '/cte/blocks/one/registration/suggestedUsernamesJson.jsp',
data : {
"userName" : userName,
"firstName" : firstName,
"lastName" : lastName
},
dataType : 'json',
beforeSend: function(){
/*parentForm.find(".username-suggestions-wrapper").addClass('hidden');*/
$that.parents(".row").removeClass("cust-val").parent(".form-group").removeClass("error");
parentForm.find(".suggested-usernames-content .checked").removeClass("checked");
parentForm.find(".suggested-usernames-content input[type=radio]").iCheck('uncheck');
},
success : function(data) {
if (data.status != "OK" && data.usernames && data.usernames.length>0) {
parentForm.find(".suggested-usernames-content span").each(function(i) {
$(this).text(data.usernames[i])
});
parentForm.find(".username-suggestions-wrapper").removeClass('hidden');
$that.parents(".row").addClass("cust-val").parent(".form-group").addClass("error");
$that.nextAll(".help-block").html(""+bundles.getTranslation('Hub.Registration.Error.CloudEmailAlreadyExists')+" ");
} else {
parentForm.find(".username-suggestions-wrapper").addClass('hidden');
$that.parents(".row").removeClass("cust-val").parent(".form-group").removeClass("error");
$that.nextAll(".help-block").html("");
}
},
error : function() {
parentForm.find(".username-suggestions-wrapper").addClass('hidden');
}
});
});
// On page load validatable class should exist to have the
// handler bound
// on all input fields but then it is removed because the
// should not be actually
// validatable when the page loads (they are non editable
// thus should be excluded from
// all validations unless they become editable).
$('#oneCustomerProfileForm .validatable').removeClass(
'validatable');
$('#oneCustomerProfileForm input').each(function() {
$(this).prop('disabled', true);
});
$('#oneCustomerProfileForm a.change').click(function() {
var currentInput = $(this).closest('tr').find('input');
currentInput.addClass('validatable');
currentInput.prop('disabled', false);
$('#oneCustomerProfileForm .profile-submit-area').removeClass('hidden');
});
$('#oneCustomerProfileForm a.cancel').click(function() {
var currentInput = $(this).closest('tr').find('input');
currentInput.removeClass('validatable');
currentInput.prop('disabled', true);
var inputsLeft = $('#oneCustomerProfileForm input.validatable').size();
if(inputsLeft == 0) {
$('#oneCustomerProfileForm .profile-submit-area').addClass('hidden');
}
});
$('#oneCustomerProfileForm').ajaxForm({
type : 'POST',
dataType : 'json',
beforeSubmit : function(arr, $form, options) {
$('.alert-danger').hide();
$('.email-change-success').hide();
},
success : function(dataReceived, status, xhr, form) {
if (dataReceived.status == 'OK') {
OneProfileActions.updateProfileFields();
/*alertBox('Η αλλαγή των στοιχείων σας έγινε επιτυχώς',{
title : '',
type : 'info'
}); */
// alert('success');
/*
* var numberOfMessages =
* dataReceived.messages ?
* dataReceived.messages.length :
* 0; if(numberOfMessages > 0) {
* $('.alert-danger
* .errors-description').empty(); }
*/
} else {
// alert("Error");
/*alertBox('Παρουσιάστηκε σφάλμα',{
title : '',
type : 'danger'
}); */
var numberOfMessages = dataReceived.messages ? dataReceived.messages.length : 0;
if (numberOfMessages > 0) {
var errorBox = $('.alert-danger');
var errorMessagesArea = errorBox.find('.errors-description');
errorMessagesArea.empty();
for (var i = 0; i < numberOfMessages; i++) {
errorMessagesArea.append('' + dataReceived.messages[i] + '
');
}
errorBox.show();
}
}
},
error : function(e) {
alertBox(bundles.getTranslation('Hub.ProfileForm.Error.General'),{
title : bundles.getTranslation('Hub.ProfileForm.Error.General'),
type : 'danger'
});
}
});
$("form#oneCustomerProfileForm a.ajax-submit-button").click(function() {
// If no field has been marked as
// validatable then no field is in
// "change" mode thus the form should
// not be submitted
if ($(
'#oneCustomerProfileForm input.validatable')
.size() == 0) {
alertBox(bundles.getTranslation('Hub.ProfileForm.Error.EditField'),{
title : bundles.getTranslation('Hub.ProfileForm.Error.General'),
type : 'danger'
});
//alert('Please edit a field before submitting the form');
return false;
}
var form = $(this).closest("form");
form.submit();
return false;
});
$('#profile-tabs li a').click(function(){
$('.alert-danger').hide();
$('.email-change-success').hide();
});
$('#form-profile-auth').ajaxForm({
type : 'POST',
dataType : 'json',
success : function(dataReceived, status, xhr, form) {
if (dataReceived.status == 'OK') {
OneProfileActions.resetPasswordForm();
setTimeout(function(){
alertBox(bundles.getTranslation('Hub.ProfileForm.UsernamePassowrdTab.Success'),{
title : bundles.getTranslation('Hub.ProfileForm.UsernamePassowrdTab.Alert.Title'),
type : 'info'
});
}, globalTimers.popupTimer);
var numberOfMessages = dataReceived.messages ? dataReceived.messages.length : 0;
if (numberOfMessages > 0) {
$('.alert-danger .errors-description').empty();
}
} else {
var message;
if (dataReceived.messages && dataReceived.messages.length == 1) {
message = dataReceived.messages[0];
} else {
message = bundles.getTranslation('Hub.ProfileForm.Error.General');
}
alertBox(message,{
title : bundles.getTranslation('Hub.ProfileForm.UsernamePassowrdTab.Alert.Title'),
type : 'danger'
});
/*var numberOfMessages = dataReceived.messages ? dataReceived.messages.length : 0;
if (numberOfMessages > 0) {
var errorBox = $('.alert-danger');
var errorMessagesArea = errorBox.find('.errors-description');
errorMessagesArea.empty();
for (var i = 0; i < numberOfMessages; i++) {
errorMessagesArea.append('' + dataReceived.messages[i] + '
');
}
errorBox.show();
}*/
}
},
error : function(e) {
alertBox(bundles.getTranslation('Hub.ProfileForm.Error.General'),{
title : bundles.getTranslation('Hub.ProfileForm.UsernamePassowrdTab.Alert.Title'),
type : 'danger'
});
}
});
});
/*-------------------- End of One profile page ------------------*/
/*-------------------- Start of One registration page ------------------*/
$(document).ready(function() {
$('.info-box .iradio_flat-blue').on('ifChecked', function() {
var text = $(this).parent('label').children('span').text();
var infoBox = $(this).parents('.info-box');
var prevInput= infoBox.prev('input');
prevInput.val(text);
prevInput.parents(".row").removeClass("cust-val").parent(".form-group").removeClass("error");
prevInput.nextAll(".help-block").html("");
infoBox.addClass("hidden");
})
$('.pws-strength').focus(function() {
$(this).nextAll(".info-box").removeClass('hidden');
})
$('.pws-strength').focusout(function() {
$(this).nextAll(".info-box").addClass('hidden');
var passVerifyField=$(this).parents(".form-password").next(".form-password").find('.password-verify');
var passVerifyText=passVerifyField.val();
if (passVerifyText&&passVerifyText!=""){
passVerifyField.trigger("blur");
}
})
$('.mobilePhoneNo').focus(
function() {
var infoBox = $(this).nextAll(".info-box");
infoBox.removeClass('hidden');
$(".info-box").not(infoBox).not('.hidden').addClass('tempHidden');
}).focusout(function() {
var infoBox = $(this).nextAll(".info-box");
infoBox.addClass('hidden');
$('.tempHidden').removeClass('tempHidden');
})
})
/*-------------------- End of One registration page ------------------*/
/*-------------------- Start of One forgot password page ------------------*/
$("#oneForgotPasswordForm").ajaxForm({
dataType : "json",
success : function(data, status, xhr, form) {
UIUtils.hideFormAlert();
if (data.status != 'OK') {
grecaptcha.reset();
}
if (data.status == 'USERNAME_REQ') {
var $secondStepDiv = $('#oneForgotPasswordForm .second-step-div');
$secondStepDiv.removeClass('hidden');
var $inputField = $secondStepDiv.find('input');
$inputField.addClass('validatable');
$inputField.prop('disabled', false);
return;
} else if (data.status == 'OK') {
$('.forgot-pwd-success').removeClass('hidden');
form.addClass('hidden');
return;
} else if (data.status == 'ABORT') {
UIUtils.showErrorsWithinAlert(
[ bundles.getTranslation('Hub.ForgotPassword.Error.Abort') ], form);
return;
/*
* Δεν μπορεί να ολοκληρωθεί η διαδικασία ανάκτησης
* κωδικού πρόσβασης. Παρακαλώ επικοινωνήστε με το
* helpdesk.
*/
} else {
var checkInfo = 'CHECK_INFO' == data.status;
var messageKey = checkInfo ? 'Hub.ForgotPassword.Error.CheckInfo' : 'Hub.ForgotPassword.Error.General';
var message = data.message ? data.message : bundles.getTranslation(messageKey);
UIUtils.showErrorsWithinAlert(
[ message ],
form);
return;
}
},
error : function() {
grecaptcha.reset();
UIUtils
.showErrorsWithinAlert([ bundles.getTranslation('Hub.ForgotPassword.Error.General') ]);
return;
}
});
$(document).ready(function() {
var $secondStepDiv = $('#oneForgotPasswordForm .second-step-div, #oneForgotUsernameForm .second-step-div');
$secondStepDiv.addClass('hidden');
var $inputField = $secondStepDiv.find('input');
$inputField.removeClass('validatable');
$inputField.prop('disabled', true);
});
$("#oneForgotPasswordSetPwdForm").ajaxForm({
dataType : "json",
success : function(data, status, xhr, form) {
UIUtils.hideFormAlert();
if (data.status == 'OK') {
$('.forgot-pwd-success').removeClass('hidden');
form.addClass('hidden');
return;
} else {
UIUtils.showErrorsWithinAlert([ bundles.getTranslation(data.messageKey) ], form);
return;
}
},
error : function() {
UIUtils
.showErrorsWithinAlert([ bundles.getTranslation('Hub.ForgotPassword.Error.General') ]);
return;
}
});
/*-------------------- End of One forgot password page ------------------*/
/*-------------------------- Forgot username page -----------------------*/
$("#oneForgotUsernameForm").ajaxForm({
dataType : "json",
success : function(data, status, xhr, form) {
UIUtils.hideFormAlert();
if (data.status != 'OK') {
grecaptcha.reset();
}
if (data.status == 'EMAIL_REQ') {
var $secondStepDiv = $('#oneForgotUsernameForm .second-step-div');
$secondStepDiv.removeClass('hidden');
var $inputField = $secondStepDiv.find('input');
$inputField.addClass('validatable');
$inputField.prop('disabled', false);
return;
} else if (data.status == 'OK') {
$('.forgot-uname-success').removeClass('hidden');
form.addClass('hidden');
return;
} else if (data.status == 'ABORT') {
UIUtils.showErrorsWithinAlert(
[ bundles.getTranslation('Hub.ForgotUsername.Error.Abort') ], form);
return;
/*
* Δεν μπορεί να ολοκληρωθεί η διαδικασία ανάκτησης
* κωδικού πρόσβασης. Παρακαλώ επικοινωνήστε με το
* helpdesk.
*/
} else {
var checkInfo = 'CHECK_INFO' == data.status;
var messageKey = checkInfo ? 'Hub.ForgotUsername.Error.CheckInfo' : 'Hub.ForgotUsername.Error.General';
var message = data.message ? data.message : bundles.getTranslation(messageKey);
UIUtils.showErrorsWithinAlert(
[ message ],
form);
return;
}
},
error : function() {
grecaptcha.reset();
UIUtils
.showErrorsWithinAlert([ bundles.getTranslation('Hub.ForgotUsername.Error.General') ]);
return;
}
});
/*-------------------- End of One forgot username page ------------------*/
/*----------------- END OF COSMOTE ONE FUNCTIONS ---------------------*/
$(document)
.ready(
function() {
/**
* Search navbar
*/
var navSearch = $('.search-results-dropdown-wrapper input');
/* Change event or when user enters search input */
navSearch
.on(
'change',
function(ev, query, filterValue,
renderResults) {
/*
* ev = event query is the query string
* user input. filterValue is the value
* of the filter next to
* search(Όλα,tablets,smartphones,etc).
* renderResult is the callback function
* when data is ready (fetched from
* server).
*/
/*
* Hits are the items inside the blue
* container...
*/
var hits = [ {
title : 'iPhone 3Gs',
url : 'http://wxyz.com',
additional : bundles.getTranslation('Hub.MainJs.SearchResultsDropdownWrapper.Devices')
}, {
title : 'iPhone 4',
url : 'http://wxyz.com',
additional : bundles.getTranslation('Hub.MainJs.SearchResultsDropdownWrapper.Devices')
}, {
title : 'iPhone 4s',
url : 'http://wxyz.com',
additional : bundles.getTranslation('Hub.MainJs.SearchResultsDropdownWrapper.Devices')
}, {
title : 'iPhone 4s',
url : 'http://wxyz.com',
additional : bundles.getTranslation('Hub.MainJs.SearchResultsDropdownWrapper.Devices')
}, {
title : 'Pre-order iPhone 5s',
url : 'http://wxyz.com',
additional : bundles.getTranslation('Hub.MainJs.SearchResultsDropdownWrapper.Devices')
}, {
title : 'iPhone 3Gs',
url : 'http://wxyz.com',
additional : bundles.getTranslation('Hub.MainJs.SearchResultsDropdownWrapper.Devices')
} ];
/*
* productSuggestions are the items in
* the right pane of the search results
* dropdown...
*/
var productSuggestions = [
{
title : 'iPhone 3Gs ',
url : 'http://wxyz.com',
// price: '$767',
special_price : '$667',
img_src : '../../assets/resources/cosmote/sample_content/mobile/teaser-mobile.png'
},
{
title : 'iPhone 4',
url : 'http://wxyz.com',
// price: '$767',
special_price : '$667',
img_src : '../../assets/resources/cosmote/sample_content/mobile/teaser-mobile.png'
},
{
title : 'iPhone 4s',
url : 'http://wxyz.com',
special_price : '$767',
img_src : '../../assets/resources/cosmote/sample_content/mobile/teaser-mobile.png'
},
{
title : 'iPhone 4s',
url : 'http://wxyz.com',
special_price : '$767',
img_src : '../../assets/resources/cosmote/sample_content/mobile/teaser-mobile.png'
},
{
title : 'Pre-order iPhone 5s',
url : 'http://wxyz.com',
special_price : '$767',
img_src : '../../assets/resources/cosmote/sample_content/mobile/teaser-mobile.png'
} ];
var ads = [ {
html : ' Nokia Lumia 1020
Απόκτησέ το στο πρόγραμμα
COSMOTE 4G Προς Όλους 35
με 99,5€ και 35,9 πάγιο
'
} ];
// run renderResults to render results
// :)...
// If a section (hits,productSuggestions
// or ads) is not provided (etc hits:
// null),
// the correspondent area will be
// hidden. Required from specification
if (renderResults) {
renderResults({
hits : hits,
productSuggestions : productSuggestions,
ads : ads
});
}
});
var stores = [
{
"id" : "1-7UDM-4967",
"type" : "germanos",
"area" : "ΚΑΛΑΜΠΑΚΑ",
"county" : "ΤΡΙΚΑΛΩΝ",
"postalCode" : "422 00",
"telephone" : "2432079161",
"address_name" : "ΤΡΙΚΑΛΩΝ 68",
"workingHoursFriday" : "",
"latitude" : "39.70635886",
"longitude" : "21.6243616"
},
{
"id" : "1-7UDM-4969",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "116 34",
"telephone" : "2107563243",
"address_name" : "ΥΜΗΤΤΟΥ 86",
"workingHoursFriday" : "",
"latitude" : "37.9678354",
"longitude" : "23.75058923"
},
{
"id" : "1-7UDM-3041",
"type" : "germanos",
"area" : "ΠΑΤΡΑ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "265 00",
"telephone" : "2610240300",
"address_name" : "ΜΑΙΖΩΝΟΣ 70",
"workingHoursFriday" : "",
"latitude" : "38.24741457",
"longitude" : "21.73598259"
},
{
"id" : "1-1W0GSM",
"type" : "germanos",
"area" : "ΑΜΠΕΛΩΝΑΣ",
"county" : "ΛΑΡΙΣΗΣ",
"postalCode" : "404 00",
"telephone" : "2492033120",
"address_name" : "ΑΓ.ΚΩΝΣΤΑΝΤΙΝΟΥ 52",
"workingHoursFriday" : "",
"latitude" : "39.74587665",
"longitude" : "22.36837152"
},
{
"id" : "1-GQIIX",
"type" : "germanos",
"area" : "ΖΩΓΡΑΦΟΥ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "157 80",
"telephone" : "2107478700",
"address_name" : "ΗΡΩΩΝ ΠΟΛΥΤΕΧΝΕΙΟΥ 9",
"workingHoursFriday" : "",
"latitude" : "37.97576305",
"longitude" : "23.77830945"
},
{
"id" : "1-2KHJQFH",
"type" : "germanos",
"area" : "ΑΙΓΑΛΕΩ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "122 41",
"telephone" : "2119997490",
"address_name" : "Λ. ΚΗΦΙΣΟΥ 96-98",
"workingHoursFriday" : "",
"latitude" : "95727131",
"longitude" : "37.98077165"
},
{
"id" : "1-7UDM-3045",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "144 52",
"telephone" : "2102895720",
"address_name" : "ΕΡΜΟΥ & ΧΛΟΗΣ 92",
"workingHoursFriday" : "",
"latitude" : "38.06931288",
"longitude" : "23.76594795"
},
{
"id" : "1-37MF1QI",
"type" : "germanos",
"area" : "ΠΑΛΑΙΟΧΩΡΑ",
"county" : "ΧΑΝΙΩΝ",
"postalCode" : "730 01",
"telephone" : "2821050520",
"address_name" : "ΚΟΝΔΗΚΑΚΗ 0",
"workingHoursFriday" : "",
"latitude" : "40.50095628",
"longitude" : "23.45082527"
},
{
"id" : "1-1E8085V",
"type" : "germanos",
"area" : "ΙΛΙΟΝ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "131 23",
"telephone" : "2105028028",
"address_name" : "ΑΓΙΟΥ ΝΙΚΟΛΑΟΥ 105",
"workingHoursFriday" : "",
"latitude" : "38.04512809",
"longitude" : "23.69960625"
},
{
"id" : "1-3O7EU8T",
"type" : "germanos",
"area" : "ΑΧΑΡΝΕΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "136 71",
"telephone" : "2102477772",
"address_name" : "ΠΑΡΝΗΘΟΣ 172",
"workingHoursFriday" : "",
"latitude" : "38.0961924",
"longitude" : "23.7388837"
},
{
"id" : "1-7UDM-5603",
"type" : "germanos",
"area" : "ΑΡΓΥΡΟΥΠΟΛΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "164 52",
"telephone" : "2109948660",
"address_name" : "ΛΕΩΦ.ΒΟΥΛΙΑΓΜΕΝΗΣ 595 & ΓΕΡΟΥΛΑΝΟΥ Μ. 3",
"workingHoursFriday" : "",
"latitude" : "37.91204975",
"longitude" : "23.74522149"
},
{
"id" : "1-7UDM-3180",
"type" : "germanos",
"area" : "ΣΤΑΥΡΟΥΠΟΛΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "564 31",
"telephone" : "2310587510",
"address_name" : "ΜΑΚΡΥΓΙΑΝΝΗ 35",
"workingHoursFriday" : "",
"latitude" : "40.67337481",
"longitude" : "22.92878061"
},
{
"id" : "1-7UDM-3181",
"type" : "germanos",
"area" : "ΝΑΟΥΣΑ",
"county" : "ΗΜΑΘΙΑΣ",
"postalCode" : "592 00",
"telephone" : "2332052060",
"address_name" : "ΔΗΜΑΡΧΙΑΣ 1",
"workingHoursFriday" : "",
"latitude" : "40.6305168",
"longitude" : "22.06739004"
},
{
"id" : "1-7UDM-4823",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "104 43",
"telephone" : "2105157914",
"address_name" : "ΛΕΝΟΡΜΑΝ 234 & ΙΦΙΓΕΝΕΙΑΣ 14",
"workingHoursFriday" : "",
"latitude" : "37.99906403",
"longitude" : "23.70842859"
},
{
"id" : "1-4PD4ZMZ",
"type" : "germanos",
"area" : "ΑΙΓΙΟ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "251 00",
"telephone" : "2691020452",
"address_name" : "ΚΛ. ΟΙΚΟΝΟΜΟΥ 7",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-4059",
"type" : "germanos",
"area" : "ΑΓΙΑ ΠΑΡΑΣΚΕΥΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "153 42",
"telephone" : "2106084200",
"address_name" : "ΜΕΣΟΓΕΙΩΝ -",
"workingHoursFriday" : "",
"latitude" : "38.01108677",
"longitude" : "23.83986268"
},
{
"id" : "1-7UDM-5309",
"type" : "germanos",
"area" : "ΑΙΓΙΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "180 10",
"telephone" : "2297027298",
"address_name" : "ΣΠΥΡΟΥ ΡΟΔΗ & ΠΗΛΕΩΣ -",
"workingHoursFriday" : "",
"latitude" : "37.74671933",
"longitude" : "23.42994409"
},
{
"id" : "1-4PS6FYL",
"type" : "germanos",
"area" : "ΔΕΣΚΑΤΗ",
"county" : "ΓΡΕΒΕΝΩΝ",
"postalCode" : "512 00",
"telephone" : "2462036159",
"address_name" : "ΜΟΝΔΑΙΑΣ 7",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-4958",
"type" : "germanos",
"area" : "ΙΣΤΙΑΙΑ",
"county" : "ΕΥΒΟΙΑΣ",
"postalCode" : "342 00",
"telephone" : "2226069301",
"address_name" : "Ι.ΣΤΡΙΜΜΕΝΟΥ 5",
"workingHoursFriday" : "",
"latitude" : "38.95357568",
"longitude" : "23.15096556"
},
{
"id" : "1-7UDM-4957",
"type" : "germanos",
"area" : "ΘΕΡΜΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "570 01",
"telephone" : "2310486290",
"address_name" : "ΤΑΒΑΚΗ 3",
"workingHoursFriday" : "",
"latitude" : "40.54785647",
"longitude" : "23.01985821"
},
{
"id" : "1-1CXHP6G",
"type" : "germanos",
"area" : "ΚΑΛΛΙΘΕΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "176 76",
"telephone" : "2109579015",
"address_name" : "ΣΙΒΙΤΑΝΙΔΟΥ -",
"workingHoursFriday" : "",
"latitude" : "37.95819413",
"longitude" : "23.69954824"
},
{
"id" : "1-7UDM-6894",
"type" : "germanos",
"area" : "ΝΙΚΑΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "184 53",
"telephone" : "2104929929",
"address_name" : "ΛΕΩΦ. ΠΕΤΡΟΥ ΡΑΛΛΗ 217",
"workingHoursFriday" : "",
"latitude" : "37.97007355",
"longitude" : "23.65110133"
},
{
"id" : "1-38W52AB",
"type" : "germanos",
"area" : "ΚΑΛΛΙΘΕΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "176 72",
"telephone" : "2109579215",
"address_name" : "ΔΑΒΑΚΗ 65",
"workingHoursFriday" : "",
"latitude" : "37.95502037",
"longitude" : "23.70301619"
},
{
"id" : "1-7UDM-3980",
"type" : "germanos",
"area" : "ΠΕΤΡΑΛΩΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "118 52",
"telephone" : "2103413003",
"address_name" : "ΘΕΣΣΑΛΟΝΙΚΗΣ 147",
"workingHoursFriday" : "",
"latitude" : "99518686",
"longitude" : "37.96803218"
},
{
"id" : "1-7UDM-5611",
"type" : "germanos",
"area" : "ΛΙΒΑΔΕΙΑ",
"county" : "ΒΟΙΩΤΙΑΣ",
"postalCode" : "321 00",
"telephone" : "2261081106",
"address_name" : "ΓΕΩΡΓΑΝΤΑ & ΚΑΛΙΑΓΚΑΚΗ 14",
"workingHoursFriday" : "",
"latitude" : "38.514661",
"longitude" : "22.736195"
},
{
"id" : "1-7UDM-6757",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 44",
"telephone" : "2310454550",
"address_name" : "Μ. ΜΠΟΤΣΑΡΗ 54",
"workingHoursFriday" : "",
"latitude" : "40.6070571",
"longitude" : "22.95852127"
},
{
"id" : "1-5729N17",
"type" : "germanos",
"area" : "ΚΑΣΤΕΛΛΙ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "700 06",
"telephone" : "2891032008",
"address_name" : "ΚΑΣΤΕΛΛΙ ΠΕΔΙΑΔΟΣ 0",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-44VWVSG",
"type" : "germanos",
"area" : "ΚΑΤΣΙΚΑΣ",
"county" : "ΙΩΑΝΝΙΝΩΝ",
"postalCode" : "455 00",
"telephone" : "2651305847",
"address_name" : "ΕΘΝ.ΑΝΤΙΣΤΑΣΕΩΣ 93",
"workingHoursFriday" : "",
"latitude" : "142645053",
"longitude" : "39.66853019"
},
{
"id" : "1-2NE6ZTR",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "115 23",
"telephone" : "2106930390",
"address_name" : "ΛΟΥΙΖΗΣ ΡΙΑΝΚΟΥΡ 65-67 & ΛΑΡΙΣΗΣ 31",
"workingHoursFriday" : "",
"latitude" : "37.99266506",
"longitude" : "23.76329521"
},
{
"id" : "1-53OUVYJ",
"type" : "germanos",
"area" : "ΛΑΡΙΣΑ",
"county" : "ΛΑΡΙΣΗΣ",
"postalCode" : "412 22",
"telephone" : "2410536133",
"address_name" : "ΠΑΠΑΚΥΡΙΑΖΗ 15",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-6057",
"type" : "germanos",
"area" : "ΞΑΝΘΗ",
"county" : "ΞΑΝΘΗΣ",
"postalCode" : "671 00",
"telephone" : "2541065277",
"address_name" : "ΜΙΧΑΗΛ ΚΑΡΑΟΛΗ 24",
"workingHoursFriday" : "",
"latitude" : "41.13717924",
"longitude" : "24.88996324"
},
{
"id" : "1-7UFW-92",
"type" : "germanos",
"area" : "ΧΑΝΙΑ",
"county" : "ΧΑΝΙΩΝ",
"postalCode" : "731 36",
"telephone" : "8011197000",
"address_name" : "ΣΚΑΛΙΔΗ 23",
"workingHoursFriday" : "09:00-14:30 & 17:30-21:00",
"latitude" : "35.51348599",
"longitude" : "24.01639909"
},
{
"id" : "1-LSOKTN",
"type" : "germanos",
"area" : "ΤΡΙΠΟΛΗ",
"county" : "ΑΡΚΑΔΙΑΣ",
"postalCode" : "221 00",
"telephone" : "2710234200",
"address_name" : "Α ΙΣΑΑΚ & Σ ΣΟΛΩΜΟΥ (ΠΛΑΤΕΙΑ ΠΕΤΡΙΝΟΥ) 4",
"workingHoursFriday" : "",
"latitude" : "37.5111352",
"longitude" : "22.37347905"
},
{
"id" : "1-7UDM-6056",
"type" : "germanos",
"area" : "ΣΟΥΔΑ",
"county" : "ΧΑΝΙΩΝ",
"postalCode" : "732 00",
"telephone" : "2821081549",
"address_name" : "ΕΘΝΑΡΧΟΥ ΒΕΝΙΖΕΛΟΥ 18",
"workingHoursFriday" : "",
"latitude" : "35.48807925",
"longitude" : "24.07214915"
},
{
"id" : "1-7UFW-93",
"type" : "germanos",
"area" : "ΚΟΛΩΝΑΚΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "106 73",
"telephone" : "8011197000",
"address_name" : "ΠΑΤΡΙΑΡΧΟΥ ΙΩΑΚΕΙΜ 5",
"workingHoursFriday" : "09:00-20:30",
"latitude" : "37.97758419",
"longitude" : "23.74210729"
},
{
"id" : "1-7UFW-95",
"type" : "germanos",
"area" : "ΜΑΡΟΥΣΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "151 22",
"telephone" : "8011197000",
"address_name" : "ΑΝΔΡΕΑ ΠΑΠΑΝΔΡΕΟΥ 35",
"workingHoursFriday" : "10:00-21:00",
"latitude" : "38.04490114",
"longitude" : "23.7926252"
},
{
"id" : "1-7UDM-3272",
"type" : "germanos",
"area" : "ΦΛΩΡΙΝΑ",
"county" : "ΦΛΩΡΙΝΗΣ",
"postalCode" : "531 00",
"telephone" : "2385026616",
"address_name" : "ΠΑΥΛΟΥ ΜΕΛΑ 46",
"workingHoursFriday" : "",
"latitude" : "40.78063671",
"longitude" : "21.41099256"
},
{
"id" : "1-3SYLFBT",
"type" : "germanos",
"area" : "ΜΟΙΡΕΣ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "704 00",
"telephone" : "2892022227",
"address_name" : "25ΗΣ ΜΑΡΤΙΟΥ 157",
"workingHoursFriday" : "",
"latitude" : "35.05099001",
"longitude" : "24.87489646"
},
{
"id" : "1-7UDM-3270",
"type" : "germanos",
"area" : "ΑΛΕΞΑΝΔΡΕΙΑ",
"county" : "ΗΜΑΘΙΑΣ",
"postalCode" : "593 00",
"telephone" : "2333028200",
"address_name" : "Δ.ΒΕΤΣΟΠΟΥΛΟΥ 42",
"workingHoursFriday" : "",
"latitude" : "40.629775",
"longitude" : "22.438084"
},
{
"id" : "1-7UDM-6197",
"type" : "germanos",
"area" : "ΝΕΑ ΣΜΥΡΝΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "171 21",
"telephone" : "2109310539",
"address_name" : "ΟΜΗΡΟΥ 58",
"workingHoursFriday" : "",
"latitude" : "37.94606694",
"longitude" : "23.71284416"
},
{
"id" : "1-7UDM-6196",
"type" : "germanos",
"area" : "ΤΟΥΜΠΑ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "555 35",
"telephone" : "2311808800",
"address_name" : "ΚΟΜΒΟΣ 12 ΤΟΥΜΠΑ -",
"workingHoursFriday" : "",
"latitude" : "40.59978979",
"longitude" : "22.98589347"
},
{
"id" : "1-11675B",
"type" : "germanos",
"area" : "ΝΕΑ ΚΗΦΙΣΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "145 64",
"telephone" : "2108002028",
"address_name" : "ΙΛΙΣΙΩΝ & ΧΑΡΑΣ 2",
"workingHoursFriday" : "",
"latitude" : "38.09216791",
"longitude" : "23.79652782"
},
{
"id" : "1-5632S3M",
"type" : "germanos",
"area" : "ΚΟΡΩΠΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "194 00",
"telephone" : "2106628220",
"address_name" : "ΒΑΣ.ΚΩΝΣΤΑΝΤΙΝΟΥ 212",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-1X21HYN",
"type" : "germanos",
"area" : "ΣΥΡΟΣ",
"county" : "ΚΥΚΛΑΔΩΝ",
"postalCode" : "841 00",
"telephone" : "2281087202",
"address_name" : "ΒΙΚΕΛΑ 2 & ΠΛ. ΜΙΑΟΥΛΗ 0",
"workingHoursFriday" : "",
"latitude" : "37.44542672",
"longitude" : "24.94373259"
},
{
"id" : "1-7UDM-6709",
"type" : "germanos",
"area" : "ΜΑΡΚΟΠΟΥΛΟ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "190 03",
"telephone" : "2299049170",
"address_name" : "ΕΡΜΟΥ 17 & ΧΡΗΣΤΟΥ ΑΛΑΓΙΑΝΝΗ 0",
"workingHoursFriday" : "",
"latitude" : "37.88395726",
"longitude" : "23.93122123"
},
{
"id" : "1-1SX0GK6",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "106 82",
"telephone" : "2103307212",
"address_name" : "ΣΤΟΥΡΝΑΡΗ -",
"workingHoursFriday" : "",
"latitude" : "37.98729628",
"longitude" : "23.73195843"
},
{
"id" : "1-7UDM-4078",
"type" : "germanos",
"area" : "ΓΛΥΦΑΔΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "166 75",
"telephone" : "2108940939",
"address_name" : "ΛΑΖΑΡΑΚΗ 11",
"workingHoursFriday" : "",
"latitude" : "37.86422687",
"longitude" : "23.74688706"
},
{
"id" : "1-7UDM-3179",
"type" : "germanos",
"area" : "ΙΕΡΑΠΕΤΡΑ",
"county" : "ΛΑΣΙΘΙΟΥ",
"postalCode" : "722 00",
"telephone" : "2842080591",
"address_name" : "ΜΙΧΑΗΛ ΚΟΡΑΚΑ 1 ΠΛ.ΕΛ. ΒΕΝΙΖΕΛΟΥ -",
"workingHoursFriday" : "",
"latitude" : "35.00928307",
"longitude" : "25.73962223"
},
{
"id" : "1-7UDM-6067",
"type" : "germanos",
"area" : "ΑΝΩ ΛΙΟΣΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "133 41",
"telephone" : "2102483334",
"address_name" : "ΛΕΩΦΟΡΟΥ ΦΥΛΗΣ 115",
"workingHoursFriday" : "",
"latitude" : "38.09856231",
"longitude" : "23.66939806"
},
{
"id" : "1-7UDM-3177",
"type" : "germanos",
"area" : "ΝΑΥΠΛΙΟ",
"county" : "ΑΡΓΟΛΙΔΟΣ",
"postalCode" : "211 00",
"telephone" : "2752029590",
"address_name" : "ΑΡΓΟΥΣ 6",
"workingHoursFriday" : "",
"latitude" : "37.5667294",
"longitude" : "22.80688682"
},
{
"id" : "1-4X62UUL",
"type" : "germanos",
"area" : "ΜΑΡΟΥΣΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "151 23",
"telephone" : "2106895555",
"address_name" : "ΚΗΦΙΣΙΑΣ 37A",
"workingHoursFriday" : "",
"latitude" : "95727131",
"longitude" : "0"
},
{
"id" : "1-7UDM-3267",
"type" : "germanos",
"area" : "ΛΑΡΙΣΑ",
"county" : "ΛΑΡΙΣΗΣ",
"postalCode" : "412 22",
"telephone" : "2410670070",
"address_name" : "ΜΑΝΔΗΛΑΡΑ 5Β ΚΑΙ ΒΕΛΛΗ 16",
"workingHoursFriday" : "",
"latitude" : "39.63511782",
"longitude" : "22.41500996"
},
{
"id" : "1-7UDM-3268",
"type" : "germanos",
"area" : "ΣΑΜΟΣ",
"county" : "ΣΑΜΟΥ",
"postalCode" : "831 00",
"telephone" : "2273028884",
"address_name" : "ΘΕΜΙΣΤΟΚΛΗ ΣΟΦΟΥΛΗ 75",
"workingHoursFriday" : "",
"latitude" : "37.75318156",
"longitude" : "26.97865217"
},
{
"id" : "1-7UFW-82",
"type" : "germanos",
"area" : "ΛΑΡΙΣΑ",
"county" : "ΛΑΡΙΣΗΣ",
"postalCode" : "412 23",
"telephone" : "8011197000",
"address_name" : "ΚΟΥΜΑ 32",
"workingHoursFriday" : "08:30-14:00 & 17:30-21:00",
"latitude" : "39.63774066",
"longitude" : "22.41981752"
},
{
"id" : "1-7UDM-4835",
"type" : "germanos",
"area" : "ΝΕΑ ΜΑΚΡΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "190 05",
"telephone" : "2294069178",
"address_name" : "ΛΕΩΦ. ΜΑΡΑΘΩΝΟΣ 177",
"workingHoursFriday" : "",
"latitude" : "38.08906336",
"longitude" : "23.9754984"
},
{
"id" : "1-7UDM-3176",
"type" : "germanos",
"area" : "ΣΑΛΑΜΙΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "189 00",
"telephone" : "2104640505",
"address_name" : "Λ.ΣΑΛΑΜΙΝΑΣ 274",
"workingHoursFriday" : "",
"latitude" : "37.96444309",
"longitude" : "23.49596435"
},
{
"id" : "1-1HKDGE",
"type" : "germanos",
"area" : "ΠΑΠΠΑΔΟΣ",
"county" : "ΛΕΣΒΟΥ",
"postalCode" : "811 06",
"telephone" : "2251082851",
"address_name" : "ΠΑΠΠΑΔΟΣ ΛΕΣΒΟΥ -",
"workingHoursFriday" : "",
"latitude" : "39.039353",
"longitude" : "26.454821"
},
{
"id" : "1-KO5QM",
"type" : "germanos",
"area" : "ΣΗΤΕΙΑ",
"county" : "ΛΑΣΙΘΙΟΥ",
"postalCode" : "723 00",
"telephone" : "2102891000",
"address_name" : "ΜΗΤΡΟΠΟΛΙΤΟΥ ΦΙΛΟΘΕΟΥ 4",
"workingHoursFriday" : "",
"latitude" : "35.20780114",
"longitude" : "26.10635493"
},
{
"id" : "1-15EYFDT",
"type" : "germanos",
"area" : "ΑΜΑΡΥΝΘΟΣ",
"county" : "ΕΥΒΟΙΑΣ",
"postalCode" : "340 06",
"telephone" : "2229037869",
"address_name" : "ΒΑΣΙΛΕΩΣ ΚΩΝΣΤΑΝΤΙΝΟΥ 7",
"workingHoursFriday" : "",
"latitude" : "38.391485",
"longitude" : "23.884894"
},
{
"id" : "1-XH8QN6",
"type" : "germanos",
"area" : "ΚΟΡΙΝΘΟΣ",
"county" : "ΚΟΡΙΝΘΙΑΣ",
"postalCode" : "201 00",
"telephone" : "2741075720",
"address_name" : "ΕΘΝ.ΑΝΤΙΣΤΑΣΕΩΣ 38",
"workingHoursFriday" : "",
"latitude" : "37.93765337",
"longitude" : "22.93110166"
},
{
"id" : "1-K7QFB7",
"type" : "germanos",
"area" : "ΛΙΜΕΝΑΣ ΧΕΡΣΟΝΗΣΟΥ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "700 14",
"telephone" : "2897025554",
"address_name" : "ΕΛ. ΒΕΝΙΖΕΛΟΥ 12",
"workingHoursFriday" : "",
"latitude" : "40.68738556",
"longitude" : "22.84805022"
},
{
"id" : "1-W6BNT",
"type" : "germanos",
"area" : "ΑΝΩ ΤΟΥΜΠΑ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "543 51",
"telephone" : "2310989312",
"address_name" : "ΓΡ. ΛΑΜΠΡΑΚΗ 123",
"workingHoursFriday" : "",
"latitude" : "40.61497774",
"longitude" : "22.9767733"
},
{
"id" : "1-7UDM-4082",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 21",
"telephone" : "2310234519",
"address_name" : "ΤΣΙΜΙΣΚΗ & ΔΑΓΚΛΗ 137",
"workingHoursFriday" : "",
"latitude" : "40.6285757",
"longitude" : "22.95173671"
},
{
"id" : "1-7UDM-4086",
"type" : "germanos",
"area" : "Ν.ΙΩΝΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "142 31",
"telephone" : "2102720039",
"address_name" : "ΗΡΑΚΛΕΙΟΥ & ΗΡΩΔΟΥ ΑΤΤΙΚΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "38.04578526",
"longitude" : "23.75594695"
},
{
"id" : "1-7UDM-3089",
"type" : "germanos",
"area" : "ΧΙΟΣ",
"county" : "ΧΙΟΥ",
"postalCode" : "821 00",
"telephone" : "2271040301",
"address_name" : "ΑΠΛΩΤΑΡΙΑΣ 21",
"workingHoursFriday" : "",
"latitude" : "38.36917091",
"longitude" : "26.13533812"
},
{
"id" : "1-7UDM-4868",
"type" : "germanos",
"area" : "ΧΑΛΑΝΔΡΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "152 34",
"telephone" : "2106857849",
"address_name" : "ΑΝΔΡΕΑ ΠΑΠΑΝΔΡΕΟΥ 6",
"workingHoursFriday" : "",
"latitude" : "38.02215423",
"longitude" : "23.7997062"
},
{
"id" : "1-2IG6A3H",
"type" : "germanos",
"area" : "ΣΠΑΤΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "190 04",
"telephone" : "2106630904",
"address_name" : "Ο.Τ. Ε71 ΕΠΙΧΕΙΡΗΜΑΤΙΚΟ ΠΑΡΚΟ ΓΥΑΛΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "37.96230268",
"longitude" : "23.91529042"
},
{
"id" : "1-7UFW-72",
"type" : "germanos",
"area" : "ΙΩΑΝΝΙΝΑ",
"county" : "ΙΩΑΝΝΙΝΩΝ",
"postalCode" : "453 32",
"telephone" : "8011197000",
"address_name" : "ΝΑΠΟΛΕΟΝΤΟΣ ΖΕΡΒΑ 10",
"workingHoursFriday" : "09:00-14:30 & 17:30-21:00",
"latitude" : "39.6629467",
"longitude" : "20.85086358"
},
{
"id" : "1-7UFW-70",
"type" : "germanos",
"area" : "ΠΕΡΙΣΤΕΡΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "121 34",
"telephone" : "8011197000",
"address_name" : "ΕΘΝΙΚΗΣ ΑΝΤΙΣΤΑΣΕΩΣ 65",
"workingHoursFriday" : "09:00-14:30 & 17:30-21:00",
"latitude" : "38.01323956",
"longitude" : "23.69069758"
},
{
"id" : "1-1B1DL1X",
"type" : "germanos",
"area" : "ΑΧΑΡΝΕΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "136 71",
"telephone" : "2102467944",
"address_name" : "ΠΑΡΝΗΘΟΣ 5",
"workingHoursFriday" : "",
"latitude" : "38.08143316",
"longitude" : "23.73646871"
},
{
"id" : "1-7UFW-69",
"type" : "germanos",
"area" : "ΒΟΛΟΣ",
"county" : "ΜΑΓΝΗΣΙΑΣ",
"postalCode" : "382 21",
"telephone" : "8011197000",
"address_name" : "ΛΩΡΗ & ΔΗΜΗΤΡΙΑΔΟΣ 82",
"workingHoursFriday" : "08:30-14:00 & 17:30-21:00",
"latitude" : "39.36081847",
"longitude" : "22.946113"
},
{
"id" : "1-7UFW-68",
"type" : "germanos",
"area" : "ΚΟΡΥΔΑΛΛΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "181 20",
"telephone" : "8011197000",
"address_name" : "ΠΛ.ΕΛΕΥΘΕΡΙΑΣ & ΑΘΗΝΑΣ 76",
"workingHoursFriday" : "09:00-14:30 & 17:30-21:00",
"latitude" : "37.97662202",
"longitude" : "23.65112751"
},
{
"id" : "1-KN7G5",
"type" : "germanos",
"area" : "ΓΛΥΦΑΔΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "166 74",
"telephone" : "2102891000",
"address_name" : "Λ.ΒΟΥΛΙΑΓΜΕΝΗΣ 83 & ΠΡΟΦΗΤΗ ΗΛΙΑ 1 & Μ.ΔΗΜΕΛΑ 12",
"workingHoursFriday" : "",
"latitude" : "37.87247267",
"longitude" : "23.75818773"
},
{
"id" : "1-1E1CJ9",
"type" : "germanos",
"area" : "ΧΑΛΚΙΔΑ",
"county" : "ΕΥΒΟΙΑΣ",
"postalCode" : "341 00",
"telephone" : "2221020700",
"address_name" : "ΑΓΓΕΛΗ ΓΟΒΙΟΥ 16",
"workingHoursFriday" : "",
"latitude" : "38.46315047",
"longitude" : "23.59127701"
},
{
"id" : "1-1HJ0T5",
"type" : "germanos",
"area" : "ΩΡΩΠΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "190 15",
"telephone" : "2295079091",
"address_name" : "ΠΡΟΠΟΝΤΙΔΟΣ 8-10",
"workingHoursFriday" : "",
"latitude" : "38.321695",
"longitude" : "23.79849"
},
{
"id" : "1-7UDM-4865",
"type" : "germanos",
"area" : "ΑΡΓΥΡΟΥΠΟΛΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "165 52",
"telephone" : "2109939734",
"address_name" : "ΚΥΠΡΟΥ 106",
"workingHoursFriday" : "",
"latitude" : "37.9062062",
"longitude" : "23.75351285"
},
{
"id" : "1-7UDM-4864",
"type" : "germanos",
"area" : "ΓΛΥΦΑΔΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "165 62",
"telephone" : "2109635520",
"address_name" : "ΓΟΥΝΑΡΗ 25",
"workingHoursFriday" : "",
"latitude" : "37.89234062",
"longitude" : "23.76066235"
},
{
"id" : "1-KO5Q1",
"type" : "germanos",
"area" : "ΤΡΙΠΟΛΗ",
"county" : "ΑΡΚΑΔΙΑΣ",
"postalCode" : "221 00",
"telephone" : "2102891000",
"address_name" : "Λ. ΟΗΕ & ΝΑΥΠΛΙΟΥ 20",
"workingHoursFriday" : "",
"latitude" : "37.50863425",
"longitude" : "22.38504708"
},
{
"id" : "1-7UDM-4867",
"type" : "germanos",
"area" : "ΓΛΥΦΑΔΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "166 75",
"telephone" : "2108943630",
"address_name" : "Α.ΜΕΤΑΞΑ 19",
"workingHoursFriday" : "",
"latitude" : "37.86281162",
"longitude" : "23.75127323"
},
{
"id" : "1-7UDM-6177",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "105 57",
"telephone" : "2103210899",
"address_name" : "ΜΗΤΡΟΠΟΛΕΩΣ 1 & ΦΙΛΕΛΛΗΝΩΝ 0",
"workingHoursFriday" : "",
"latitude" : "37.97475247",
"longitude" : "23.73405573"
},
{
"id" : "1-7UDM-5846",
"type" : "germanos",
"area" : "ΑΓΡΙΝΙΟ",
"county" : "ΑΙΤΩΛΟΑΚΑΡΝΑΝΙΑΣ",
"postalCode" : "301 00",
"telephone" : "2641024450",
"address_name" : "ΜΠΑΪΜΠΑ 21",
"workingHoursFriday" : "",
"latitude" : "38.62477601",
"longitude" : "21.41068412"
},
{
"id" : "1-7UDM-4860",
"type" : "germanos",
"area" : "ΒΟΛΟΣ",
"county" : "ΜΑΓΝΗΣΙΑΣ",
"postalCode" : "382 21",
"telephone" : "2421020972",
"address_name" : "Κ.ΚΑΡΤΑΛΗ 68",
"workingHoursFriday" : "",
"latitude" : "39.36129952",
"longitude" : "22.9474587"
},
{
"id" : "1-7K667",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "104 36",
"telephone" : "2102724228",
"address_name" : "ΚΟΛΩΝΟΥ 3",
"workingHoursFriday" : "",
"latitude" : "37.98204458",
"longitude" : "23.72282671"
},
{
"id" : "1-7UDM-6710",
"type" : "germanos",
"area" : "ΔΙΑΒΑΤΑ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "570 08",
"telephone" : "2310788597",
"address_name" : "Κ.ΚΑΡΑΜΑΝΛΗ 70",
"workingHoursFriday" : "",
"latitude" : "40.68632169",
"longitude" : "22.85492238"
},
{
"id" : "1-55LG84Z",
"type" : "germanos",
"area" : "ΚΟΜΟΤΗΝΗ",
"county" : "ΡΟΔΟΠΗΣ",
"postalCode" : "691 00",
"telephone" : "2531036877",
"address_name" : "ΠΛΑΤΕΙΑ ΕΙΡΗΝΗΣ 25",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UFW-61",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 22",
"telephone" : "8011197000",
"address_name" : "ΤΣΙΜΙΣΚΗ 109",
"workingHoursFriday" : "09:00-14:30 & 17:30-21:00",
"latitude" : "40.62930417",
"longitude" : "22.94840913"
},
{
"id" : "1-IZ0G5J",
"type" : "germanos",
"area" : "ΚΑΒΑΛΑ",
"county" : "ΚΑΒΑΛΑΣ",
"postalCode" : "653 02",
"telephone" : "2510839939",
"address_name" : "ΙΩΝΟΣ ΔΡΑΓΟΥΜΗ ΚΑΙ ΕΡΜΟΥ -",
"workingHoursFriday" : "",
"latitude" : "40.93770146",
"longitude" : "24.41248503"
},
{
"id" : "1-1MEWGX8",
"type" : "germanos",
"area" : "ΕΛΕΥΘΕΡΟΥΠΟΛΗ",
"county" : "ΚΑΒΑΛΑΣ",
"postalCode" : "641 00",
"telephone" : "2592023102",
"address_name" : "ΦΡ.ΠΑΠΑΧΡΗΣΤΙΔΗ 112",
"workingHoursFriday" : "",
"latitude" : "40.91553851",
"longitude" : "24.25340574"
},
{
"id" : "1-7UDM-3203",
"type" : "germanos",
"area" : "ΠΑΤΡΑ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "262 21",
"telephone" : "2610240700",
"address_name" : "ΑΓ.ΑΝΔΡΕΟΥ 120&ΦΙΛΟΠΟΙΜΕΝΟΣ -",
"workingHoursFriday" : "",
"latitude" : "38.24596681",
"longitude" : "21.7313475"
},
{
"id" : "1-1O7H2F",
"type" : "germanos",
"area" : "ΜΑΓΟΥΛΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "196 00",
"telephone" : "2105587710",
"address_name" : "ΘΕΣΗ ΣΚΛΗΡΗ -",
"workingHoursFriday" : "",
"latitude" : "37.30914105",
"longitude" : "21.92577149"
},
{
"id" : "1-7UDM-6288",
"type" : "germanos",
"area" : "ΜΠΡΑΧΑΜΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "173 43",
"telephone" : "2109889222",
"address_name" : "ΑΓ.ΔΗΜΗΤΡΙΟΥ 303",
"workingHoursFriday" : "",
"latitude" : "37.93917918",
"longitude" : "23.73128253"
},
{
"id" : "1-7UDM-5850",
"type" : "germanos",
"area" : "ΒΕΡΟΙΑ",
"county" : "ΗΜΑΘΙΑΣ",
"postalCode" : "591 00",
"telephone" : "2331071041",
"address_name" : "ΜΗΤΡΟΠΟΛΕΩΣ 38",
"workingHoursFriday" : "",
"latitude" : "40.52171891",
"longitude" : "22.20253976"
},
{
"id" : "1-7UDM-6187",
"type" : "germanos",
"area" : "ΣΠΑΤΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "190 04",
"telephone" : "2103534956",
"address_name" : "5ο ΧΙΛΜ. ΛΕΩΦ.ΣΠΑΤΩΝ - ΛΟΥΤΣΑΣ 0",
"workingHoursFriday" : "",
"latitude" : "37.97682696",
"longitude" : "23.90072899"
},
{
"id" : "1-7UDM-5851",
"type" : "germanos",
"area" : "ΚΑΣΤΟΡΙΑ",
"county" : "ΚΑΣΤΟΡΙΑΣ",
"postalCode" : "521 00",
"telephone" : "2467084833",
"address_name" : "ΑΘΑΝΑΣΙΟΥ ΔΙΑΚΟΥ 30",
"workingHoursFriday" : "",
"latitude" : "40.519892",
"longitude" : "21.257526"
},
{
"id" : "1-7UDM-6185",
"type" : "germanos",
"area" : "ΚΕΡΚΥΡΑ",
"county" : "ΚΕΡΚΥΡΑΣ",
"postalCode" : "491 00",
"telephone" : "2661047112",
"address_name" : "Γ. ΘΕΟΤΟΚΗ 61",
"workingHoursFriday" : "",
"latitude" : "39.62195254",
"longitude" : "19.91900169"
},
{
"id" : "1-7UDM-3332",
"type" : "germanos",
"area" : "ΗΡΑΚΛΕΙΟ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "713 06",
"telephone" : "2810301300",
"address_name" : "Λ.ΔΗΜΟΚΡΑΤΙΑΣ 33",
"workingHoursFriday" : "",
"latitude" : "35.33457631",
"longitude" : "25.13871357"
},
{
"id" : "1-7UDM-3230",
"type" : "germanos",
"area" : "ΧΑΝΙΑ",
"county" : "ΧΑΝΙΩΝ",
"postalCode" : "731 00",
"telephone" : "2821083073",
"address_name" : "ΚΥΔΩΝΙΑΣ 53",
"workingHoursFriday" : "",
"latitude" : "35.51247221",
"longitude" : "24.0182771"
},
{
"id" : "1-1DYZAI",
"type" : "germanos",
"area" : "ΛΕΡΟΣ",
"county" : "ΔΩΔΕΚΑΝΗΣΟΥ",
"postalCode" : "854 00",
"telephone" : "2247028888",
"address_name" : "ΒΑΣ.ΓΕΩΡΓΙΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "37.96206593",
"longitude" : "23.91696245"
},
{
"id" : "1-7UDM-2603",
"type" : "germanos",
"area" : "ΖΑΚΥΝΘΟΣ",
"county" : "ΖΑΚΥΝΘΟΥ",
"postalCode" : "291 00",
"telephone" : "2695042499",
"address_name" : "ΠΛΑΤΕΙΑ ΔΗΜΟΚΡΑΤΙΑΣ 2",
"workingHoursFriday" : "",
"latitude" : "37.78804623",
"longitude" : "20.89931733"
},
{
"id" : "1-2J75NK5",
"type" : "germanos",
"area" : "ΠΕΡΙΣΤΕΡΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "121 36",
"telephone" : "2105773003",
"address_name" : "ΤΖΩΝ ΚΕΝΝΕΝΤΥ (ΛΟΦΟΣ ΑΞΙΩΜΑΤΙΚΩΝ) 110",
"workingHoursFriday" : "",
"latitude" : "38.00688149",
"longitude" : "23.68325123"
},
{
"id" : "1-7UDM-3236",
"type" : "germanos",
"area" : "ΤΥΡΝΑΒΟΣ",
"county" : "ΛΑΡΙΣΗΣ",
"postalCode" : "401 00",
"telephone" : "2492025125",
"address_name" : "ΚΑΡΑΟΛΗ ΔΗΜΗΤΡΙΟΥ 2",
"workingHoursFriday" : "",
"latitude" : "39.73757919",
"longitude" : "22.28877812"
},
{
"id" : "1-7UDM-5726",
"type" : "germanos",
"area" : "ΝΕΑ ΕΡΥΘΡΑΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "146 71",
"telephone" : "2106254261",
"address_name" : "ΕΛ. ΒΕΝΙΖΕΛΟΥ 101",
"workingHoursFriday" : "",
"latitude" : "38.08987401",
"longitude" : "23.81949662"
},
{
"id" : "1-7UDM-3238",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 46",
"telephone" : "2310412312",
"address_name" : "Β. ΟΛΓΑΣ 191 & ΜΟΥΣΟΥΡΗ 2",
"workingHoursFriday" : "",
"latitude" : "40.59883559",
"longitude" : "22.95502324"
},
{
"id" : "1-7UDM-4989",
"type" : "germanos",
"area" : "ΘΗΡΑ",
"county" : "ΚΥΚΛΑΔΩΝ",
"postalCode" : "847 00",
"telephone" : "2286027070",
"address_name" : "ΠΛΑΤΕΙΑ ΦΗΡΩΝ -",
"workingHoursFriday" : "",
"latitude" : "37.98975178",
"longitude" : "23.76758586"
},
{
"id" : "1-7UDM-3233",
"type" : "germanos",
"area" : "ΚΩΣ",
"county" : "ΔΩΔΕΚΑΝΗΣΟΥ",
"postalCode" : "853 00",
"telephone" : "2242048590",
"address_name" : "ΒΑΣ. ΠΑΥΛΟΥ 17",
"workingHoursFriday" : "",
"latitude" : "36.89173101",
"longitude" : "27.28889554"
},
{
"id" : "1-2HI7ZIB",
"type" : "germanos",
"area" : "ΠΕΙΡΑΙΑΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "185 42",
"telephone" : "2104930558",
"address_name" : "ΘΗΒΩΝ 127",
"workingHoursFriday" : "",
"latitude" : "37.96298588",
"longitude" : "23.65779757"
},
{
"id" : "1-7UDM-4983",
"type" : "germanos",
"area" : "ΤΡΙΠΟΛΗ",
"county" : "ΑΡΚΑΔΙΑΣ",
"postalCode" : "221 00",
"telephone" : "2710238668",
"address_name" : "ΕΘ.ΑΝΤΙΣΤΑΣΕΩΣ 51",
"workingHoursFriday" : "",
"latitude" : "37.51252791",
"longitude" : "22.37356732"
},
{
"id" : "1-44VUBF2",
"type" : "germanos",
"area" : "ΣΑΜΟΘΡΑΚΗ",
"county" : "ΕΒΡΟΥ",
"postalCode" : "680 02",
"telephone" : "2551041870",
"address_name" : "ΚΑΜΑΡΙΩΤΙΣΣΑ 0",
"workingHoursFriday" : "",
"latitude" : "40.47429529",
"longitude" : "25.52500983"
},
{
"id" : "1-7UDM-6157",
"type" : "germanos",
"area" : "ΣΤΑΥΡΟΣ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "570 14",
"telephone" : "2397021030",
"address_name" : "ΓΕΩΡΓΙΟΥ ΠΑΠΑΝΔΡΕΟΥ 25",
"workingHoursFriday" : "",
"latitude" : "40.665141",
"longitude" : "23.694232"
},
{
"id" : "1-4YCDTIF",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 43",
"telephone" : "2310846237",
"address_name" : "ΒΑΣ. ΟΛΓΑΣ 101",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-2XGQMAI",
"type" : "germanos",
"area" : "ΑΡΚΑΛΟΧΩΡΙ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "703 00",
"telephone" : "2891023733",
"address_name" : "ΕΛ.ΒΕΝΙΖΕΛΟΥ 69",
"workingHoursFriday" : "",
"latitude" : "40.64126122",
"longitude" : "22.85487881"
},
{
"id" : "1-2ISJ3V",
"type" : "germanos",
"area" : "ΖΑΚΥΝΘΟΣ",
"county" : "ΖΑΚΥΝΘΟΥ",
"postalCode" : "291 00",
"telephone" : "2695024338",
"address_name" : "ΑΛΕΞΑΝΔΡΟΥ ΡΩΜΑ 30",
"workingHoursFriday" : "",
"latitude" : "37.78348205",
"longitude" : "20.89640279"
},
{
"id" : "1-2YSOYPF",
"type" : "germanos",
"area" : "ΑΛΜΥΡΟΣ",
"county" : "ΜΑΓΝΗΣΙΑΣ",
"postalCode" : "371 00",
"telephone" : "2422029166",
"address_name" : "ΕΡΜΟΥ 118",
"workingHoursFriday" : "",
"latitude" : "39.1797404",
"longitude" : "22.75519505"
},
{
"id" : "1-2HI7ZGV",
"type" : "germanos",
"area" : "ΚΙΑΤΟ",
"county" : "ΚΟΡΙΝΘΙΑΣ",
"postalCode" : "202 00",
"telephone" : "2742020086",
"address_name" : "Γ. ΜΑΥΡΟΥΛΙΑ & ΠΛ. ΕΛΕΥΘΕΡΙΑΣ 0",
"workingHoursFriday" : "",
"latitude" : "38.01032655",
"longitude" : "22.74412921"
},
{
"id" : "1-7UDM-5739",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "106 78",
"telephone" : "2103845123",
"address_name" : "ΑΚΑΔΗΜΙΑΣ 76",
"workingHoursFriday" : "",
"latitude" : "Γ)",
"longitude" : "999281137"
},
{
"id" : "1-7UFW-34",
"type" : "germanos",
"area" : "ΗΡΑΚΛΕΙΟ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "712 02",
"telephone" : "8011197000",
"address_name" : "ΔΙΚΑΙΟΣΥΝΗΣ 67-69",
"workingHoursFriday" : "09:00-14:30 & 17:30-21:00",
"latitude" : "35.33798921",
"longitude" : "25.13573066"
},
{
"id" : "1-7UFW-32",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "105 64",
"telephone" : "8011197000",
"address_name" : "ΠΑΝΕΠΙΣΤΗΜΙΟΥ 39",
"workingHoursFriday" : "09:00-20:00",
"latitude" : "37.98097554",
"longitude" : "23.73235804"
},
{
"id" : "1-7UDM-4870",
"type" : "germanos",
"area" : "ΜΑΡΟΥΣΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "151 24",
"telephone" : "2108060802",
"address_name" : "ΠΑΝΑΘΗΝΑΙΩΝ ΠΛ. ΕΥΤΕΡΠΗΣ (ΗΛ.ΣΤΑΘΜΟΣ) 3",
"workingHoursFriday" : "",
"latitude" : "38.05591733",
"longitude" : "23.80520633"
},
{
"id" : "1-7UDM-5734",
"type" : "germanos",
"area" : "ΚΑΛΛΟΝΗ",
"county" : "ΛΕΣΒΟΥ",
"postalCode" : "811 07",
"telephone" : "2253029500",
"address_name" : "4Ης ΔΕΚΕΜΒΡΙΟΥ 1912 -",
"workingHoursFriday" : "",
"latitude" : "38.68201362",
"longitude" : "21.97423228"
},
{
"id" : "1-7UFW-36",
"type" : "germanos",
"area" : "ΠΑΤΡΑ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "262 21",
"telephone" : "8011197000",
"address_name" : "ΕΡΜΟΥ 4 & ΑΓ.ΑΝΔΡΕΟΥ 48",
"workingHoursFriday" : "09:00-14:30 & 17:30-21:00",
"latitude" : "38.24831864",
"longitude" : "21.73407127"
},
{
"id" : "1-7UFW-35",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "111 43",
"telephone" : "8011197000",
"address_name" : "ΑΧΑΡΝΩΝ 434",
"workingHoursFriday" : "09:00-14:30 & 17:30-21:00",
"latitude" : "38.02275472",
"longitude" : "23.73041803"
},
{
"id" : "1-4WJ0SN4",
"type" : "germanos",
"area" : "ΙΟΣ",
"county" : "ΚΥΚΛΑΔΩΝ",
"postalCode" : "840 01",
"telephone" : "2286092642",
"address_name" : "ΘΕΣΗ ΠΕΝΤΑΝΑΣΣΑ 0",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-4873",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "106 77",
"telephone" : "2103825808",
"address_name" : "ΓΛΑΔΣΤΩΝΟΣ 1 ΚΑΙ ΠΑΤΗΣΙΩΝ -",
"workingHoursFriday" : "",
"latitude" : "Γ)",
"longitude" : "999815011"
},
{
"id" : "1-4G32URT",
"type" : "germanos",
"area" : "ΠΕΡΙΣΤΕΡΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "121 34",
"telephone" : "2105763605",
"address_name" : "ΠΑΝ.ΤΣΑΛΔΑΡΗ 95",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-4871",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "105 59",
"telephone" : "2103317548",
"address_name" : "ΕΥΡΙΠΙΔΟΥ 2 & ΑΡΙΣΤΕΙΔΟΥ 1",
"workingHoursFriday" : "",
"latitude" : "Γ)",
"longitude" : "999815011"
},
{
"id" : "1-812PP",
"type" : "germanos",
"area" : "ΚΕΡΚΥΡΑ",
"county" : "ΚΕΡΚΥΡΑΣ",
"postalCode" : "491 00",
"telephone" : "2661024200",
"address_name" : "Ε.Ο.ΛΕΥΚΙΜΗΣ (ΘΕΣΗ ΛΕΜΕΝΤΙ-ΝΤΑΒΙΟΥ ΤΟΥ Δ.Δ ΚΑΝΑΛΙΩΝ ΤΟΥ ΔΗΜΟΥ ΚΕΡΚΥΡΑΙΩΝ) -",
"workingHoursFriday" : "",
"latitude" : "39.603572",
"longitude" : "19.895028"
},
{
"id" : "1-7UDM-4877",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 42",
"telephone" : "2310945335",
"address_name" : "ΠΕΣΤΩΝ & ΚΛΕΑΝΘΟΥΣ 47",
"workingHoursFriday" : "",
"latitude" : "40.61376558",
"longitude" : "22.9692445"
},
{
"id" : "1-7UDM-4876",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 23",
"telephone" : "2310264607",
"address_name" : "ΕΓΝΑΤΙΑΣ 80 ΚΑΙ ΑΡΙΣΤΟΤΕΛΟΥΣ 30",
"workingHoursFriday" : "",
"latitude" : "40.63568267",
"longitude" : "22.94420416"
},
{
"id" : "1-7UDM-4875",
"type" : "germanos",
"area" : "ΝΕΟΙ ΕΠΙΒΑΤΕΣ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "570 19",
"telephone" : "2392027458",
"address_name" : "ΑΜΠΕΛΟΚΗΠΩΝ ΚΑΙ ΚΡΗΤΗΣ 83",
"workingHoursFriday" : "",
"latitude" : "40.50540173",
"longitude" : "22.92673717"
},
{
"id" : "1-7UDM-776",
"type" : "germanos",
"area" : "ΧΟΛΑΡΓΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "155 61",
"telephone" : "2106532599",
"address_name" : "Λ.ΜΕΣΟΓΕΙΩΝ 182",
"workingHoursFriday" : "",
"latitude" : "38.00116052",
"longitude" : "23.78825918"
},
{
"id" : "1-7UDM-5950",
"type" : "germanos",
"area" : "ΤΡΙΚΑΛΑ",
"county" : "ΤΡΙΚΑΛΩΝ",
"postalCode" : "421 00",
"telephone" : "2431024444",
"address_name" : "ΠΛΑΤΕΙΑ ΜΑΚΑΡΙΟΥ -",
"workingHoursFriday" : "",
"latitude" : "39.55291919",
"longitude" : "21.76527889"
},
{
"id" : "1-2IG2QLV",
"type" : "germanos",
"area" : "ΚΑΛΛΙΘΕΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "176 73",
"telephone" : "2111811800",
"address_name" : "Λ.ΣΥΓΓΡΟΥ 340",
"workingHoursFriday" : "",
"latitude" : "37.94473343",
"longitude" : "23.70087411"
},
{
"id" : "1-39IT6V",
"type" : "germanos",
"area" : "ΝΕΟΣ ΚΟΣΜΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "117 43",
"telephone" : "2109020044",
"address_name" : "ΗΛΙΑ ΗΛΙΟΥ 95 ΚΑΙ ΛΑΓΟΥΜΙΤΖΗ -",
"workingHoursFriday" : "",
"latitude" : "37.95860049",
"longitude" : "23.73245551"
},
{
"id" : "1-7UDM-7100",
"type" : "germanos",
"area" : "ΤΑΥΡΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "177 78",
"telephone" : "2102891000",
"address_name" : "ΠΕΤΡΟΥ ΡΑΛΛΗ 101 & ΗΛΙΑ ΒΕΝΕΖΗ -",
"workingHoursFriday" : "",
"latitude" : "37.97392013",
"longitude" : "23.70727364"
},
{
"id" : "1-7UDM-7261",
"type" : "germanos",
"area" : "ΓΛΥΚΑ ΝΕΡΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "153 54",
"telephone" : "2103511617",
"address_name" : "ΛΕΩΦ.ΛΑΥΡΙΟΥ 41",
"workingHoursFriday" : "",
"latitude" : "38.00605528",
"longitude" : "23.84641987"
},
{
"id" : "1-1QW8L3Z",
"type" : "germanos",
"area" : "ΣΗΤΕΙΑ",
"county" : "ΛΑΣΙΘΙΟΥ",
"postalCode" : "723 00",
"telephone" : "2843029280",
"address_name" : "ΕΛ.ΒΕΝΙΖΕΛΟΥ -",
"workingHoursFriday" : "",
"latitude" : "35.20815733",
"longitude" : "26.10636015"
},
{
"id" : "1-7UFW-26",
"type" : "germanos",
"area" : "ΚΑΛΑΜΑΡΙΑ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "551 34",
"telephone" : "8011197000",
"address_name" : "ΕΘΝΙΚΗΣ ΑΝΤΙΣΤΑΣΕΩΣ 7",
"workingHoursFriday" : "09:00-14:30 & 17:30-21:00",
"latitude" : "40.58886768",
"longitude" : "22.96039881"
},
{
"id" : "1-7UFW-27",
"type" : "germanos",
"area" : "ΓΛΥΦΑΔΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "166 75",
"telephone" : "8011197000",
"address_name" : "ΛΑΖΑΡΑΚΗ 8",
"workingHoursFriday" : "09:00-21:00",
"latitude" : "37.86271356",
"longitude" : "23.74927457"
},
{
"id" : "1-7UDM-190",
"type" : "germanos",
"area" : "ΠΑΤΡΑ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "262 22",
"telephone" : "2610311999",
"address_name" : "ΑΚΡΩΤΗΡΙΟΥ & ΦΙΛΙΠΠΟΥ ΟΛΥΜΠΙΑΔΟΣ 43-45",
"workingHoursFriday" : "",
"latitude" : "38.22093647",
"longitude" : "21.73787208"
},
{
"id" : "1-5CLHYH",
"type" : "germanos",
"area" : "ΕΛΑΣΣΟΝΑ",
"county" : "ΛΑΡΙΣΗΣ",
"postalCode" : "402 00",
"telephone" : "2493024625",
"address_name" : "ΕΛΕΥΘΕΡΙΟΥ ΒΕΝΙΖΕΛΟΥ 7",
"workingHoursFriday" : "",
"latitude" : "39.895144",
"longitude" : "22.188499"
},
{
"id" : "1-5BNXCH",
"type" : "germanos",
"area" : "ΣΚΑΛΑ",
"county" : "ΛΑΚΩΝΙΑΣ",
"postalCode" : "230 51",
"telephone" : "2735029189",
"address_name" : "5ης ΜΑΙΟΥ 101",
"workingHoursFriday" : "",
"latitude" : "40.37709006",
"longitude" : "23.44055403"
},
{
"id" : "1-7UFW-30",
"type" : "germanos",
"area" : "ΠΕΙΡΑΙΑΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "185 35",
"telephone" : "8011197000",
"address_name" : "ΓΡ. ΛΑΜΠΡΑΚΗ 140",
"workingHoursFriday" : "09:00-14:30 & 17:30-21:00",
"latitude" : "37.94077417",
"longitude" : "23.64977598"
},
{
"id" : "1-7UDM-185",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "570 08",
"telephone" : "2310778313",
"address_name" : "Κ. ΚΑΡΑΜΑΝΛΗ 126",
"workingHoursFriday" : "",
"latitude" : "40.68863997",
"longitude" : "22.8505639"
},
{
"id" : "1-7UDM-188",
"type" : "germanos",
"area" : "ΠΑΤΡΑ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "262 22",
"telephone" : "2610631080",
"address_name" : "ΓΟΥΝΑΡΗ 38 & ΚΑΝΑΚΑΡΗ -",
"workingHoursFriday" : "",
"latitude" : "38.24343254",
"longitude" : "21.73346314"
},
{
"id" : "1-7UDM-1180",
"type" : "germanos",
"area" : "ΙΩΑΝΝΙΝΑ",
"county" : "ΙΩΑΝΝΙΝΩΝ",
"postalCode" : "454 44",
"telephone" : "2651022899",
"address_name" : "28ης ΟΚΤΩΒΡΙΟΥ 4",
"workingHoursFriday" : "",
"latitude" : "39.66601784",
"longitude" : "20.85264452"
},
{
"id" : "1-7UDM-5381",
"type" : "germanos",
"area" : "ΡΟΔΟΣ",
"county" : "ΔΩΔΕΚΑΝΗΣΟΥ",
"postalCode" : "851 00",
"telephone" : "2241075510",
"address_name" : "ΕΘΝΙΚΗΣ ΑΝΤΙΣΤΑΣΕΩΣ & ΤΣΑΛΔΑΡΗ -",
"workingHoursFriday" : "",
"latitude" : "36.43283365",
"longitude" : "28.21710894"
},
{
"id" : "1-7UDM-3102",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "113 61",
"telephone" : "2108256457",
"address_name" : "ΦΩΚΙΩΝΟΣ ΝΕΓΡΗ 84 & ΠΛ. ΚΑΝΑΡΗ 0",
"workingHoursFriday" : "",
"latitude" : "38.0025456",
"longitude" : "23.74094493"
},
{
"id" : "1-7UDM-181",
"type" : "germanos",
"area" : "ΛΑΓΚΑΔΑΣ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "572 00",
"telephone" : "2394020100",
"address_name" : "ΛΟΥΤΡΩΝ 47",
"workingHoursFriday" : "",
"latitude" : "40.74713824",
"longitude" : "23.07125051"
},
{
"id" : "1-7UDM-184",
"type" : "germanos",
"area" : "ΣΤΑΥΡΟΥΠΟΛΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "564 30",
"telephone" : "2310604199",
"address_name" : "ΛΑΓΚΑΔΑ 201",
"workingHoursFriday" : "",
"latitude" : "40.66016524",
"longitude" : "22.9353204"
},
{
"id" : "1-7UDM-2669",
"type" : "germanos",
"area" : "ΚΑΡΠΕΝΗΣΙ",
"county" : "ΕΥΡΥΤΑΝΙΑΣ",
"postalCode" : "361 00",
"telephone" : "2237023199",
"address_name" : "ΕΘΝΙΚΗΣ ΑΝΤΙΣΤΑΣΗΣ 3",
"workingHoursFriday" : "",
"latitude" : "38.9155072",
"longitude" : "21.79298892"
},
{
"id" : "1-6KHQR",
"type" : "germanos",
"area" : "ΦΑΡΣΑΛΑ",
"county" : "ΛΑΡΙΣΗΣ",
"postalCode" : "403 00",
"telephone" : "2491022333",
"address_name" : "ΜΗΤΡ.ΙΕΖΕΚΙΗΛ 7",
"workingHoursFriday" : "",
"latitude" : "39.29508139",
"longitude" : "22.38383463"
},
{
"id" : "1-7UDM-280",
"type" : "germanos",
"area" : "ΣΕΡΡΕΣ",
"county" : "ΣΕΡΡΩΝ",
"postalCode" : "621 00",
"telephone" : "2321096175",
"address_name" : "ΓΡΗΓΟΡΗ ΛΑΜΠΡΑΚΗ 3",
"workingHoursFriday" : "",
"latitude" : "41.09175717",
"longitude" : "23.54898314"
},
{
"id" : "1-HQ6OD",
"type" : "germanos",
"area" : "ΠΡΕΒΕΖΑ",
"county" : "ΠΡΕΒΕΖΗΣ",
"postalCode" : "481 00",
"telephone" : "2682089180",
"address_name" : "Λ. ΕΙΡΗΝΗΣ 48",
"workingHoursFriday" : "",
"latitude" : "38.95625465",
"longitude" : "20.75227507"
},
{
"id" : "1-7UDM-2467",
"type" : "germanos",
"area" : "ΠΑΓΚΡΑΤΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "116 33",
"telephone" : "2107565075",
"address_name" : "ΦΙΛΟΛΑΟΥ 59 & ΕΚΦΑΝΤΙΔΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "37.9652167",
"longitude" : "23.74985933"
},
{
"id" : "1-7UDM-7918",
"type" : "germanos",
"area" : "ΠΛΑΙΣΙΟ COMPUTERS Α.Ε.Β.Ε.",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "ΕΥΚΑΡΠΙΑ",
"telephone" : "564 29",
"address_name" : "ΠΕΡΙΦ.ΟΔΟΣ Ν.ΕΥΚΑΡΠΙΑΣ",
"workingHoursFriday" : "",
"latitude" : "ΦΑΕΕ ΑΘΗΝΩΝ",
"longitude" : "94222211"
},
{
"id" : "1-K4GU1",
"type" : "germanos",
"area" : "ΝΕΑΠΟΛΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "567 28",
"telephone" : "2310632565",
"address_name" : "ΑΝΔΡΕΑ ΠΑΠΑΝΔΡΕΟΥ 89",
"workingHoursFriday" : "",
"latitude" : "40.65824824",
"longitude" : "22.98348662"
},
{
"id" : "1-7UDM-189",
"type" : "germanos",
"area" : "ΠΑΤΡΑ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "264 41",
"telephone" : "2610423699",
"address_name" : "ΕΛΛ.ΣΤΡΑΤΙΩΤΟΥ 85-87",
"workingHoursFriday" : "",
"latitude" : "38.25819018",
"longitude" : "21.7418795"
},
{
"id" : "1-7UDM-5288",
"type" : "germanos",
"area" : "ΠΕΙΡΑΙΑΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "185 31",
"telephone" : "2104138700",
"address_name" : "ΕΘΝ. ΑΝΤΙΣΤΑΣΕΩΣ 21 &ΚΑΡΑΟΛΗ & ΔΗΜΗΤΡΙΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "37.94621934",
"longitude" : "23.6461198"
},
{
"id" : "1-7UDM-2468",
"type" : "germanos",
"area" : "ΜΕΛΙΣΣΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "151 27",
"telephone" : "2108101275",
"address_name" : "ΛΕΩΦ. ΔΗΜΟΚΡΑΤΙΑΣ 77",
"workingHoursFriday" : "",
"latitude" : "38.05143142",
"longitude" : "23.83763577"
},
{
"id" : "1-7UDM-1082",
"type" : "germanos",
"area" : "ΣΗΤΕΙΑ",
"county" : "ΛΑΣΙΘΙΟΥ",
"postalCode" : "723 00",
"telephone" : "2843023399",
"address_name" : "ΚΑΠΕΤΑΝ ΣΗΦΗ 22",
"workingHoursFriday" : "",
"latitude" : "35.20808834",
"longitude" : "26.10537088"
},
{
"id" : "1-IGQ2V",
"type" : "germanos",
"area" : "ΠΑΤΡΑ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "262 21",
"telephone" : "2610225802",
"address_name" : "ΚΟΡΙΝΘΟΥ 208",
"workingHoursFriday" : "",
"latitude" : "38.24773772",
"longitude" : "21.73752451"
},
{
"id" : "1-40AQJ7K",
"type" : "germanos",
"area" : "ΚΑΡΠΑΘΟΣ",
"county" : "ΔΩΔΕΚΑΝΗΣΟΥ",
"postalCode" : "857 00",
"telephone" : "2245022510",
"address_name" : "ΠΗΓΑΔΙΑ ΚΑΡΠΑΘΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "35.50686857",
"longitude" : "27.21306158"
},
{
"id" : "1-HQ6Q1",
"type" : "germanos",
"area" : "ΝΕΜΕΑ",
"county" : "ΚΟΡΙΝΘΙΑΣ",
"postalCode" : "205 00",
"telephone" : "2746022087",
"address_name" : "ΠΑΠΑΚΩΝΣΤΑΝΤΙΝΟΥ 76",
"workingHoursFriday" : "",
"latitude" : "37.82076616",
"longitude" : "22.66273608"
},
{
"id" : "1-2IG0HMM",
"type" : "germanos",
"area" : "ΓΕΡΑΚΑΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "153 44",
"telephone" : "2111812800",
"address_name" : "Λ.ΜΑΡΑΘΩΝΟΣ 145-149",
"workingHoursFriday" : "",
"latitude" : "38.00698087",
"longitude" : "23.8624499"
},
{
"id" : "1-7UDM-2750",
"type" : "germanos",
"area" : "ΧΙΟΣ",
"county" : "ΧΙΟΥ",
"postalCode" : "821 00",
"telephone" : "2271044799",
"address_name" : "ΚΑΝΑΡΗ 1",
"workingHoursFriday" : "",
"latitude" : "38.3709467",
"longitude" : "26.13661021"
},
{
"id" : "1-5T8QPZ",
"type" : "germanos",
"area" : "ΝΕΑΠΟΛΗ ΛΑΚΩΝΙΑΣ",
"county" : "ΛΑΚΩΝΙΑΣ",
"postalCode" : "230 53",
"telephone" : "2734029071",
"address_name" : "ΑΚΤΗ ΒΟΙΩΝ 0",
"workingHoursFriday" : "",
"latitude" : "37.96774934",
"longitude" : "23.74332005"
},
{
"id" : "1-7UDM-5398",
"type" : "germanos",
"area" : "ΕΥΟΣΜΟΣ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "562 24",
"telephone" : "2310700457",
"address_name" : "ΜΕΓΑΛΟΥ ΑΛΕΞΑΝΔΡΟΥ 43",
"workingHoursFriday" : "",
"latitude" : "40.66965337",
"longitude" : "22.90772582"
},
{
"id" : "1-4OPPREU",
"type" : "germanos",
"area" : "ΚΑΛΑΜΑΤΑ",
"county" : "ΜΕΣΣΗΝΙΑΣ",
"postalCode" : "241 00",
"telephone" : "2721089630",
"address_name" : "ΑΡΙΣΤΟΜΕΝΟΥΣ & ΒΑΛΑΩΡΙΤΟΥ 2",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-3AQ66RF",
"type" : "germanos",
"area" : "ΑΓ. ΚΗΡΥΚΟΣ ΙΚΑΡΙΑΣ",
"county" : "ΣΑΜΟΥ",
"postalCode" : "833 00",
"telephone" : "2275023850",
"address_name" : "ΕΜΠΟΡΙΚΟ ΚΕΝΤΡΟ ΑΓΙΟΥ ΚΗΡΥΚΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "37.72292118",
"longitude" : "23.9583309"
},
{
"id" : "1-7UDM-5394",
"type" : "germanos",
"area" : "ΑΜΠΕΛΟΚΗΠΟΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "115 26",
"telephone" : "2107474201",
"address_name" : "ΚΗΦΙΣΙΑΣ 18 & ΑΙΤΩΛΙΑΣ -",
"workingHoursFriday" : "",
"latitude" : "37.98748005",
"longitude" : "23.76240244"
},
{
"id" : "1-7UDM-5393",
"type" : "germanos",
"area" : "ΚΟΛΩΝΑΚΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "106 74",
"telephone" : "2103615798",
"address_name" : "ΚΑΝΑΡΗ 26",
"workingHoursFriday" : "",
"latitude" : "999599475",
"longitude" : "37.97698925"
},
{
"id" : "1-7UDM-5392",
"type" : "germanos",
"area" : "ΕΛΕΥΘΕΡΙΟ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "563 44",
"telephone" : "2310703297",
"address_name" : "ΑΝΔΡΕΑ ΠΑΠΑΝΔΡΕΟΥ 24",
"workingHoursFriday" : "",
"latitude" : "40.6742665",
"longitude" : "22.89235091"
},
{
"id" : "1-7UDM-192",
"type" : "germanos",
"area" : "ΑΙΓΙΟ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "251 00",
"telephone" : "2691029999",
"address_name" : "ΜΗΤΡΟΠΟΛΕΩΣ 36",
"workingHoursFriday" : "",
"latitude" : "38.25056212",
"longitude" : "22.08097356"
},
{
"id" : "1-3SK1FU7",
"type" : "germanos",
"area" : "ΧΟΛΑΡΓΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "155 62",
"telephone" : "2106524529",
"address_name" : "ΜΕΣΟΓΕΙΩΝ 218",
"workingHoursFriday" : "",
"latitude" : "38.00711442",
"longitude" : "23.80027117"
},
{
"id" : "1-7UDM-7905",
"type" : "germanos",
"area" : "ΝΕΑ ΜΟΥΔΑΝΙΑ",
"county" : "ΧΑΛΚΙΔΙΚΗΣ",
"postalCode" : "632 00",
"telephone" : "2373065360",
"address_name" : "Δ. ΤΖΑΒΟΥΡΑ 10",
"workingHoursFriday" : "",
"latitude" : "40.22379267",
"longitude" : "23.66770007"
},
{
"id" : "1-4X62V10",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 23",
"telephone" : "2310231020",
"address_name" : "ΤΣΙΜΙΣΚΗ 43",
"workingHoursFriday" : "",
"latitude" : "95727131",
"longitude" : "0"
},
{
"id" : "1-7UDM-2256",
"type" : "germanos",
"area" : "ΑΡΓΟΣΤΟΛΙ",
"county" : "ΚΕΦΑΛΛΗΝΙΑΣ",
"postalCode" : "281 00",
"telephone" : "2671029200",
"address_name" : "Λ. ΒΕΡΓΩΤΗ 8",
"workingHoursFriday" : "",
"latitude" : "38.17860718",
"longitude" : "20.48722292"
},
{
"id" : "1-7UDM-5949",
"type" : "germanos",
"area" : "ΤΡΙΚΑΛΑ",
"county" : "ΤΡΙΚΑΛΩΝ",
"postalCode" : "421 00",
"telephone" : "2431028207",
"address_name" : "ΕΡΜΟΥ 5",
"workingHoursFriday" : "",
"latitude" : "39.55601064",
"longitude" : "21.76739738"
},
{
"id" : "1-7UDM-2254",
"type" : "germanos",
"area" : "ΜΥΤΙΛΗΝΗ",
"county" : "ΛΕΣΒΟΥ",
"postalCode" : "811 00",
"telephone" : "2251024299",
"address_name" : "ΒΟΥΡΝΑΖΩΝ 8",
"workingHoursFriday" : "",
"latitude" : "39.1039903",
"longitude" : "26.55347597"
},
{
"id" : "1-7UDM-5399",
"type" : "germanos",
"area" : "ΛΥΚΟΒΡΥΣΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "141 23",
"telephone" : "2102855601",
"address_name" : "ΣΟΦ.ΒΕΝΙΖΕΛΟΥ 37",
"workingHoursFriday" : "",
"latitude" : "38.07021353",
"longitude" : "23.78383714"
},
{
"id" : "1-7UDM-5971",
"type" : "germanos",
"area" : "ΑΡΓΟΣΤΟΛΙ",
"county" : "ΚΕΦΑΛΛΗΝΙΑΣ",
"postalCode" : "281 00",
"telephone" : "2671027077",
"address_name" : "ΛΕΩΦ. ΒΕΡΓΩΤΗ ΑΡ. 25 ΚΑΙ ΧΟΪΔΑ -",
"workingHoursFriday" : "",
"latitude" : "38.175107",
"longitude" : "20.488912"
},
{
"id" : "1-3AUM110",
"type" : "germanos",
"area" : "ΓΑΛΑΤΑΣ ΤΡΟΙΖΗΝΙΑΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "180 20",
"telephone" : "2298043496",
"address_name" : "25ΗΣ ΜΑΡΤΙΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "38.01997491",
"longitude" : "23.79632966"
},
{
"id" : "1-7UDM-2046",
"type" : "germanos",
"area" : "ΧΑΝΙΑ",
"county" : "ΧΑΝΙΩΝ",
"postalCode" : "731 00",
"telephone" : "2821092212",
"address_name" : "ΧΑΤΖΗΜΙΧΑΛΗ ΓΙΑΝΝΑΡΗ 7",
"workingHoursFriday" : "",
"latitude" : "35.5138931",
"longitude" : "24.01905693"
},
{
"id" : "1-7UDM-5129",
"type" : "germanos",
"area" : "ΛΑΥΡΙΟ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "195 00",
"telephone" : "2292069002",
"address_name" : "ΗΡΩΩΝ ΠΟΛΥΤΕΧΝΕΙΟΥ 11",
"workingHoursFriday" : "",
"latitude" : "37.71596462",
"longitude" : "24.05506372"
},
{
"id" : "1-1QW8L69",
"type" : "germanos",
"area" : "ΑΜΦΙΛΟΧΙΑ",
"county" : "ΑΙΤΩΛΟΑΚΑΡΝΑΝΙΑΣ",
"postalCode" : "305 00",
"telephone" : "2642029046",
"address_name" : "ΕΘΝ. ΟΔΟΣ ΑΝΤΙΡΡΙΟΥ-ΙΩΑΝΝΙΝΩΝ 0",
"workingHoursFriday" : "",
"latitude" : "38.86340553",
"longitude" : "21.16669499"
},
{
"id" : "1-7UDM-1263",
"type" : "germanos",
"area" : "ΤΡΙΚΑΛΑ",
"county" : "ΤΡΙΚΑΛΩΝ",
"postalCode" : "421 00",
"telephone" : "2431022299",
"address_name" : "ΠΛΑΤΕΙΑ 25ης ΜΑΡΤΙΟΥ -",
"workingHoursFriday" : "",
"latitude" : "39.557075",
"longitude" : "21.766942"
},
{
"id" : "1-7UDM-898",
"type" : "germanos",
"area" : "ΑΓΡΙΝΙΟ",
"county" : "ΑΙΤΩΛΟΑΚΑΡΝΑΝΙΑΣ",
"postalCode" : "301 00",
"telephone" : "2641069342",
"address_name" : "ΠΑΝΟΥ ΣΟΥΛΟΥ 9",
"workingHoursFriday" : "",
"latitude" : "38.62863238",
"longitude" : "21.41231157"
},
{
"id" : "1-7UDM-1268",
"type" : "germanos",
"area" : "ΡΟΔΟΣ",
"county" : "ΔΩΔΕΚΑΝΗΣΟΥ",
"postalCode" : "851 00",
"telephone" : "2241059612",
"address_name" : "ΑΜΕΡΙΚΗΣ 91",
"workingHoursFriday" : "",
"latitude" : "36.44998143",
"longitude" : "28.22282244"
},
{
"id" : "1-7UDM-5120",
"type" : "germanos",
"area" : "ΑΝΩ ΛΙΟΣΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "133 41",
"telephone" : "2102484525",
"address_name" : "ΔΗΜΑΡΧΕΙΟΥ 15 & ΑΧΑΡΝΩΝ 0",
"workingHoursFriday" : "",
"latitude" : "38.0825619",
"longitude" : "23.70150666"
},
{
"id" : "1-7UDM-5970",
"type" : "germanos",
"area" : "ΝΕΑ ΜΗΧΑΝΙΩΝΑ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "570 04",
"telephone" : "2392034205",
"address_name" : "25ΗΣ ΜΑΡΤΊΟΥ 29",
"workingHoursFriday" : "",
"latitude" : "40.465074",
"longitude" : "22.860484"
},
{
"id" : "1-7UDM-2042",
"type" : "germanos",
"area" : "ΚΑΡΔΙΤΣΑ",
"county" : "ΚΑΡΔΙΤΣΗΣ",
"postalCode" : "431 00",
"telephone" : "2441076813",
"address_name" : "Σ.ΛΑΠΠΑ & Ν.ΠΛΑΣΤΗΡΑ 14",
"workingHoursFriday" : "",
"latitude" : "39.36498246",
"longitude" : "21.92301521"
},
{
"id" : "1-7UDM-895",
"type" : "germanos",
"area" : "ΜΕΣΟΛΟΓΓΙ",
"county" : "ΑΙΤΩΛΟΑΚΑΡΝΑΝΙΑΣ",
"postalCode" : "302 00",
"telephone" : "2631051099",
"address_name" : "ΣΠΥΡΙΔΩΝΟΣ ΤΡΙΚΟΥΠΗ 5",
"workingHoursFriday" : "",
"latitude" : "38.3670744",
"longitude" : "21.42643719"
},
{
"id" : "1-11U4XR",
"type" : "germanos",
"area" : "ΛΑΓΚΑΔΑΣ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "572 00",
"telephone" : "2394026280",
"address_name" : "ΛΟΥΤΡΩΝ 33",
"workingHoursFriday" : "",
"latitude" : "40.749155",
"longitude" : "23.068483"
},
{
"id" : "1-2KUE8S9",
"type" : "germanos",
"area" : "ΑΝΟΙΞΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "145 69",
"telephone" : "2106218397",
"address_name" : "Λ.ΜΑΡΑΘΩΝΟΣ 70",
"workingHoursFriday" : "",
"latitude" : "38.13395002",
"longitude" : "23.858719"
},
{
"id" : "1-36NJG79",
"type" : "germanos",
"area" : "ΒΡΑΧΑΤΙ",
"county" : "ΚΟΡΙΝΘΙΑΣ",
"postalCode" : "200 06",
"telephone" : "2741050058",
"address_name" : "Π.Ε.Ο. ΚΟΡΙΝΘΟΥ-ΠΑΤΡΩΝ (ΘΕΣΗ ΒΥΔΙ) 119 - 121",
"workingHoursFriday" : "",
"latitude" : "37.95899593",
"longitude" : "22.80562615"
},
{
"id" : "1-7UDM-163",
"type" : "germanos",
"area" : "ΑΙΓΑΛΕΩ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "122 43",
"telephone" : "2105313499",
"address_name" : "ΙΕΡΑ ΟΔΟΣ 296",
"workingHoursFriday" : "",
"latitude" : "37.99405493",
"longitude" : "23.67492397"
},
{
"id" : "1-7UDM-165",
"type" : "germanos",
"area" : "ΕΛΕΥΣΙΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "192 00",
"telephone" : "2105562999",
"address_name" : "Γ. ΠΑΥΛΟΥ 10",
"workingHoursFriday" : "",
"latitude" : "38.04222956",
"longitude" : "23.54115795"
},
{
"id" : "1-7UDM-168",
"type" : "germanos",
"area" : "ΑΧΑΡΝΕΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "136 71",
"telephone" : "2102444999",
"address_name" : "ΦΙΛΑΔΕΛΦΕΙΑΣ 2",
"workingHoursFriday" : "",
"latitude" : "38.0721021",
"longitude" : "23.73880678"
},
{
"id" : "1-7UDM-167",
"type" : "germanos",
"area" : "ΙΛΙΟΝ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "131 22",
"telephone" : "2102693000",
"address_name" : "ΙΔΟΜΕΝΕΩΣ 29",
"workingHoursFriday" : "",
"latitude" : "38.03157378",
"longitude" : "23.70921988"
},
{
"id" : "1-BOX26",
"type" : "germanos",
"area" : "ΔΡΑΜΑ",
"county" : "ΔΡΑΜΑΣ",
"postalCode" : "661 00",
"telephone" : "2521022605",
"address_name" : "ΤΕΡΜΑ 1ΗΣ ΙΟΥΛΙΟΥ ΔΡΑΜΑ -",
"workingHoursFriday" : "",
"latitude" : "41.15043975",
"longitude" : "24.15225349"
},
{
"id" : "1-467DA3",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "117 42",
"telephone" : "2109212603",
"address_name" : "ΦΑΛΗΡΟΥ 3",
"workingHoursFriday" : "",
"latitude" : "997888702",
"longitude" : "37.96750843"
},
{
"id" : "1-1H6PFOV",
"type" : "germanos",
"area" : "ΚΙΛΚΙΣ",
"county" : "ΚΙΛΚΙΣ",
"postalCode" : "611 00",
"telephone" : "2341020860",
"address_name" : "21ΗΣ ΙΟΥΝΙΟΥ 115-117",
"workingHoursFriday" : "",
"latitude" : "40.99253313",
"longitude" : "22.8737844"
},
{
"id" : "1-7UDM-5966",
"type" : "germanos",
"area" : "ΠΥΛΑΙΑ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 33",
"telephone" : "2310472818",
"address_name" : "ΑΓΙΟΥ ΔΗΜΗΤΡΙΟΥ 91",
"workingHoursFriday" : "",
"latitude" : "40.63794097",
"longitude" : "22.94870204"
},
{
"id" : "1-27J4NZ5",
"type" : "germanos",
"area" : "ΝΑΟΥΣΑ",
"county" : "ΗΜΑΘΙΑΣ",
"postalCode" : "592 00",
"telephone" : "2332043301",
"address_name" : "5ο ΧΛΜ ΝΑΟΥΣΑΣ-ΒΕΡΟΙΑΣ 0",
"workingHoursFriday" : "",
"latitude" : "40.63060782",
"longitude" : "22.06954471"
},
{
"id" : "1-7UDM-2438",
"type" : "germanos",
"area" : "ΜΥΡΙΝΑ",
"county" : "ΛΕΣΒΟΥ",
"postalCode" : "814 00",
"telephone" : "2254029999",
"address_name" : "ΠΛΑΤΕΙΑ ΥΨΙΠΥΛΗΣ -",
"workingHoursFriday" : "",
"latitude" : "39.877024",
"longitude" : "25.060201"
},
{
"id" : "1-7UDM-1270",
"type" : "germanos",
"area" : "ΑΡΤΑ",
"county" : "ΑΡΤΗΣ",
"postalCode" : "471 00",
"telephone" : "2681072199",
"address_name" : "ΠΛΑΤΕΙΑ ΕΘΝΙΚΗΣ ΑΝΤΙΣΤΑΣΗΣ -",
"workingHoursFriday" : "",
"latitude" : "39.1614909",
"longitude" : "20.98577421"
},
{
"id" : "1-E9ONL",
"type" : "germanos",
"area" : "ΗΡΑΚΛΕΙΟ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "713 05",
"telephone" : "2810360340",
"address_name" : "Γ.ΠΑΠΑΝΔΡΕΟΥ 33",
"workingHoursFriday" : "",
"latitude" : "35.33116597",
"longitude" : "25.13671379"
},
{
"id" : "1-7UDM-7397",
"type" : "germanos",
"area" : "ΠΕΡΙΣΤΕΡΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "121 35",
"telephone" : "2105739379",
"address_name" : "ΣΙΚΑΓΟΥ 4",
"workingHoursFriday" : "",
"latitude" : "38.02654722",
"longitude" : "23.68188819"
},
{
"id" : "1-7UDM-7398",
"type" : "germanos",
"area" : "ΚΑΤΩ ΤΙΘΟΡΕΑ",
"county" : "ΦΘΙΩΤΙΔΟΣ",
"postalCode" : "350 15",
"telephone" : "2234049828",
"address_name" : "ΚΑΤΩ ΤΙΘΟΡΕΑ -",
"workingHoursFriday" : "",
"latitude" : "38.6092028",
"longitude" : "22.71289153"
},
{
"id" : "1-7UDM-1275",
"type" : "germanos",
"area" : "ΠΡΕΒΕΖΑ",
"county" : "ΠΡΕΒΕΖΗΣ",
"postalCode" : "481 00",
"telephone" : "2682061099",
"address_name" : "Κ. ΚΑΡΥΩΤΑΚΗ 16",
"workingHoursFriday" : "",
"latitude" : "38.95524361",
"longitude" : "20.75289737"
},
{
"id" : "1-367BQN",
"type" : "germanos",
"area" : "ΚΑΒΑΛΑ",
"county" : "ΚΑΒΑΛΑΣ",
"postalCode" : "653 02",
"telephone" : "2510226859",
"address_name" : "ΟΜΟΝΟΙΑΣ 103",
"workingHoursFriday" : "",
"latitude" : "40.93893805",
"longitude" : "24.40930777"
},
{
"id" : "1-7UDM-1274",
"type" : "germanos",
"area" : "ΗΓΟΥΜΕΝΙΤΣΑ",
"county" : "ΘΕΣΠΡΩΤΙΑΣ",
"postalCode" : "461 00",
"telephone" : "2665023499",
"address_name" : "ΓΡΗΓΟΡΗ ΛΑΜΠΡΑΚΗ 35",
"workingHoursFriday" : "",
"latitude" : "39.50289754",
"longitude" : "20.26400528"
},
{
"id" : "1-7UDM-2776",
"type" : "germanos",
"area" : "ΛΕΥΚΑΔΑ",
"county" : "ΛΕΥΚΑΔΟΣ",
"postalCode" : "311 00",
"telephone" : "2645021404",
"address_name" : "ΘΕΩΔ. ΣΤΡΑΤΟΥ 1",
"workingHoursFriday" : "",
"latitude" : "38.83286795",
"longitude" : "20.70381559"
},
{
"id" : "1-7UDM-180",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 23",
"telephone" : "2310253336",
"address_name" : "ΕΡΜΟΥ 40",
"workingHoursFriday" : "",
"latitude" : "40.63403124",
"longitude" : "22.94454146"
},
{
"id" : "1-7UDM-1078",
"type" : "germanos",
"area" : "ΑΓΙΟΣ ΝΙΚΟΛΑΟΣ",
"county" : "ΛΑΣΙΘΙΟΥ",
"postalCode" : "721 00",
"telephone" : "2841095341",
"address_name" : "Κ. ΣΦΑΚΙΑΝΑΚΗ 10",
"workingHoursFriday" : "",
"latitude" : "35.1896073",
"longitude" : "25.71868214"
},
{
"id" : "1-7UDM-172",
"type" : "germanos",
"area" : "ΠΕΡΙΣΤΕΡΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "121 32",
"telephone" : "2105770999",
"address_name" : "Π. ΤΣΑΛΔΑΡΗ 4-6",
"workingHoursFriday" : "",
"latitude" : "38.00764462",
"longitude" : "23.69872808"
},
{
"id" : "1-24M8UG4",
"type" : "germanos",
"area" : "ΑΝΩ ΓΛΥΦΑΔΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "166 74",
"telephone" : "2109646250",
"address_name" : "ΔΗΜΗΤΡΙΟΥ ΓΟΥΝΑΡΗ 203 & ΙΛΙΟΥ 38",
"workingHoursFriday" : "",
"latitude" : "37.86986766",
"longitude" : "23.76554349"
},
{
"id" : "1-7UDM-2137",
"type" : "germanos",
"area" : "ΠΤΟΛΕΜΑΙΔΑ",
"county" : "ΚΟΖΑΝΗΣ",
"postalCode" : "502 00",
"telephone" : "2463029999",
"address_name" : "25ης ΜΑΡΤΙΟΥ 40",
"workingHoursFriday" : "",
"latitude" : "40.52433914",
"longitude" : "21.68329375"
},
{
"id" : "1-7UDM-171",
"type" : "germanos",
"area" : "ΜΕΓΑΡΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "191 00",
"telephone" : "2296029999",
"address_name" : "ΚΕΝΤΡΙΚΗ ΠΛΑΤΕΙΑ ΜΕΓΑΡΩΝ -",
"workingHoursFriday" : "",
"latitude" : "37.99484444",
"longitude" : "23.34458517"
},
{
"id" : "1-7UDM-2136",
"type" : "germanos",
"area" : "ΚΟΖΑΝΗ",
"county" : "ΚΟΖΑΝΗΣ",
"postalCode" : "501 00",
"telephone" : "2461040899",
"address_name" : "Ξ. ΤΡΙΑΝΤΑΦΥΛΛΙΔΗ 5",
"workingHoursFriday" : "",
"latitude" : "40.3002623",
"longitude" : "21.7869818"
},
{
"id" : "1-7UDM-177",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "544 53",
"telephone" : "2310942299",
"address_name" : "ΠΑΠΑΦΗ 130",
"workingHoursFriday" : "",
"latitude" : "40.61222964",
"longitude" : "22.96798617"
},
{
"id" : "1-27J4NYC",
"type" : "germanos",
"area" : "ΜΥΡΙΝΑ",
"county" : "ΛΕΣΒΟΥ",
"postalCode" : "814 00",
"telephone" : "2254022230",
"address_name" : "ΠΛΑΤΕΙΑ ΒΑΣ. ΥΨΙΠΥΛΗΣ 0",
"workingHoursFriday" : "",
"latitude" : "39.40748839",
"longitude" : "21.96415593"
},
{
"id" : "1-NWQM3",
"type" : "germanos",
"area" : "ΡΟΔΟΣ",
"county" : "ΔΩΔΕΚΑΝΗΣΟΥ",
"postalCode" : "851 00",
"telephone" : "2241066922",
"address_name" : "ΕΘΝΙΚΗΣ ΑΝΤΙΣΤΑΣΕΩΣ 39",
"workingHoursFriday" : "",
"latitude" : "36.43380523",
"longitude" : "28.2227575"
},
{
"id" : "1-7UDM-175",
"type" : "germanos",
"area" : "ΠΕΡΑΙΑ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "570 19",
"telephone" : "2392025100",
"address_name" : "ΑΜΠΕΛΟΚΗΠΩΝ 40",
"workingHoursFriday" : "",
"latitude" : "40.50407513",
"longitude" : "22.92698388"
},
{
"id" : "1-7UDM-174",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "551 33",
"telephone" : "2310364463",
"address_name" : "ΠΕΡΙΚΛΕΟΥΣ 50",
"workingHoursFriday" : "",
"latitude" : "40.58490078",
"longitude" : "22.95980218"
},
{
"id" : "1-2HID60Z",
"type" : "germanos",
"area" : "Ν.ΙΩΝΙΑ(ΒΟΛΟΣ)",
"county" : "ΜΑΓΝΗΣΙΑΣ",
"postalCode" : "384 46",
"telephone" : "2421091900",
"address_name" : "ΛΕΩΦ.ΕΙΡΗΝΗΣ 4",
"workingHoursFriday" : "",
"latitude" : "37.87766794",
"longitude" : "23.76333915"
},
{
"id" : "1-BOX35",
"type" : "germanos",
"area" : "ΒΡΙΛΗΣΣΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "152 35",
"telephone" : "2102891000",
"address_name" : "ΛΕΩΦ. ΠΕΝΤΕΛΗΣ 57",
"workingHoursFriday" : "",
"latitude" : "38.04164435",
"longitude" : "23.83267861"
},
{
"id" : "1-7UDM-5969",
"type" : "germanos",
"area" : "ΚΑΣΤΕΛΛΙ",
"county" : "ΧΑΝΙΩΝ",
"postalCode" : "734 00",
"telephone" : "2822083396",
"address_name" : "ΟΜΟΓΕΝΩΝ ΑΜΕΡΙΚΗΣ -",
"workingHoursFriday" : "",
"latitude" : "35.49276802",
"longitude" : "23.65382992"
},
{
"id" : "1-7UDM-2432",
"type" : "germanos",
"area" : "ΚΩΣ",
"county" : "ΔΩΔΕΚΑΝΗΣΟΥ",
"postalCode" : "853 00",
"telephone" : "2242027199",
"address_name" : "ΛΟΡΔΟΥ ΒΥΡΩΝΑ 8 & ΞΑΝΘΟΥ -",
"workingHoursFriday" : "",
"latitude" : "38.03088406",
"longitude" : "23.74817755"
},
{
"id" : "1-7UDM-4920",
"type" : "germanos",
"area" : "ΝΕΟ ΗΡΑΚΛΕΙΟ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "141 22",
"telephone" : "2102834761",
"address_name" : "Λ.ΗΡΑΚΛΕΙΟΥ 380",
"workingHoursFriday" : "",
"latitude" : "38.0498011",
"longitude" : "23.76371395"
},
{
"id" : "1-40G55SN",
"type" : "germanos",
"area" : "ΛΟΥΤΡΑΚΙ",
"county" : "ΚΟΡΙΝΘΙΑΣ",
"postalCode" : "203 00",
"telephone" : "2744069375",
"address_name" : "ΕΛ.ΒΕΝΙΖΕΛΟΥ 41",
"workingHoursFriday" : "",
"latitude" : "37.9747859",
"longitude" : "22.97756822"
},
{
"id" : "1-7UDM-2429",
"type" : "germanos",
"area" : "ΚΑΛΥΜΝΟΣ",
"county" : "ΔΩΔΕΚΑΝΗΣΟΥ",
"postalCode" : "852 00",
"telephone" : "2243029699",
"address_name" : "ΝΙΚΟΛΑΟΥ ΚΑΛΑΒΡΟΥ 8",
"workingHoursFriday" : "",
"latitude" : "36.94991808",
"longitude" : "26.9841153"
},
{
"id" : "1-7UDM-3009",
"type" : "germanos",
"area" : "ΠΕΡΙΣΤΕΡΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "121 34",
"telephone" : "2105742222",
"address_name" : "ΕΘΝΙΚΗΣ ΑΝΤΙΣΤΑΣΕΩΣ 42",
"workingHoursFriday" : "",
"latitude" : "38.01314119",
"longitude" : "23.69099122"
},
{
"id" : "1-57J8TEJ",
"type" : "germanos",
"area" : "ΝΑΥΠΑΚΤΟΣ",
"county" : "ΑΙΤΩΛΟΑΚΑΡΝΑΝΙΑΣ",
"postalCode" : "303 00",
"telephone" : "2634038222",
"address_name" : "ΑΘΗΝΩΝ 3",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-8RZ8IS",
"type" : "germanos",
"area" : "ΚΟΡΙΝΘΟΣ",
"county" : "ΚΟΡΙΝΘΙΑΣ",
"postalCode" : "201 00",
"telephone" : "2741080750",
"address_name" : "ΕΘΝ. ΑΝΤΙΣΤΑΣΕΩΣ 42",
"workingHoursFriday" : "",
"latitude" : "37.93738605",
"longitude" : "22.93088965"
},
{
"id" : "1-7UDM-5348",
"type" : "germanos",
"area" : "ΑΛΕΞΑΝΔΡΟΥΠΟΛΗ",
"county" : "ΕΒΡΟΥ",
"postalCode" : "681 00",
"telephone" : "2551084530",
"address_name" : "3o ΧΛΜ.ΑΛΕΞΑΝΔΡΟΥΠΟΛΗΣ-ΦΕΡΡΩΝ 0",
"workingHoursFriday" : "",
"latitude" : "40.84839193",
"longitude" : "25.87213036"
},
{
"id" : "1-1AUAVHH",
"type" : "germanos",
"area" : "ΗΡΑΚΛΕΙΑ",
"county" : "ΣΕΡΡΩΝ",
"postalCode" : "624 00",
"telephone" : "2325028500",
"address_name" : "ΠΟΛΥΤΕΧΝΕΙΟΥ 69",
"workingHoursFriday" : "",
"latitude" : "38.045802",
"longitude" : "23.77196686"
},
{
"id" : "1-7UDM-1042",
"type" : "germanos",
"area" : "ΜΥΚΟΝΟΣ",
"county" : "ΚΥΚΛΑΔΩΝ",
"postalCode" : "846 00",
"telephone" : "2289024099",
"address_name" : "ΚΑΜΙΝΑΚΙ 0",
"workingHoursFriday" : "",
"latitude" : "37.449898",
"longitude" : "25.330009"
},
{
"id" : "1-7UDM-1041",
"type" : "germanos",
"area" : "ΜΗΛΟΣ",
"county" : "ΚΥΚΛΑΔΩΝ",
"postalCode" : "848 00",
"telephone" : "2287021399",
"address_name" : "ΠΛΑΚΑ ΜΗΛΟΥ -",
"workingHoursFriday" : "",
"latitude" : "36.743553",
"longitude" : "24.425257"
},
{
"id" : "1-7UDM-5340",
"type" : "germanos",
"area" : "ΕΛΕΥΣΙΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "192 00",
"telephone" : "2105540635",
"address_name" : "ΗΡ.ΠΟΛΥΤΕΧΝΕΙΟΥ 38",
"workingHoursFriday" : "",
"latitude" : "38.04558655",
"longitude" : "23.53370113"
},
{
"id" : "1-7UDM-5246",
"type" : "germanos",
"area" : "ΚΑΡΔΙΤΣΑ",
"county" : "ΚΑΡΔΙΤΣΗΣ",
"postalCode" : "431 00",
"telephone" : "2441079903",
"address_name" : "ΠΛΑΣΤΗΡΑ 27 & ΒΑΣΙΑΡΔΑΝΗ -",
"workingHoursFriday" : "",
"latitude" : "39.36366438",
"longitude" : "21.92262335"
},
{
"id" : "1-7UDM-3147",
"type" : "germanos",
"area" : "ΑΡΙΔΑΙΑ",
"county" : "ΠΕΛΛΗΣ",
"postalCode" : "584 00",
"telephone" : "2384024544",
"address_name" : "ΧΡΥΣΤΟΜΟΥ ΣΜΥΡΝΗΣ 6",
"workingHoursFriday" : "",
"latitude" : "40.97385565",
"longitude" : "22.06143447"
},
{
"id" : "1-7UDM-1044",
"type" : "germanos",
"area" : "ΠΑΡΟΣ",
"county" : "ΚΥΚΛΑΔΩΝ",
"postalCode" : "844 00",
"telephone" : "2284022799",
"address_name" : "ΠΑΡΟΙΚΙΑ -",
"workingHoursFriday" : "",
"latitude" : "37.086179",
"longitude" : "25.149009"
},
{
"id" : "1-7UDM-1043",
"type" : "germanos",
"area" : "ΝΑΞΟΣ",
"county" : "ΚΥΚΛΑΔΩΝ",
"postalCode" : "843 00",
"telephone" : "2285022139",
"address_name" : "ΠΑΡΑΛΙΑ ΝΑΞΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "37.103893",
"longitude" : "25.375339"
},
{
"id" : "1-7UDM-1046",
"type" : "germanos",
"area" : "ΤΗΝΟΣ",
"county" : "ΚΥΚΛΑΔΩΝ",
"postalCode" : "842 00",
"telephone" : "2283022499",
"address_name" : "Λ. ΜΕΓΑΛΟΧΑΡΗΣ 40",
"workingHoursFriday" : "",
"latitude" : "37.5377984",
"longitude" : "25.16137082"
},
{
"id" : "1-EGVUZ7",
"type" : "germanos",
"area" : "ΚΑΛΟΧΩΡΙ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "570 09",
"telephone" : "2310289085",
"address_name" : "28ΗΣ ΟΚΤΩΒΡΙΟΥ 37",
"workingHoursFriday" : "",
"latitude" : "40.642289",
"longitude" : "22.859867"
},
{
"id" : "1-16NHOV9",
"type" : "germanos",
"area" : "ΛΑΡΙΣΑ",
"county" : "ΛΑΡΙΣΗΣ",
"postalCode" : "415 00",
"telephone" : "2102851351",
"address_name" : "8ο ΧΛΜ Π.Ε.Ο. ΛΑΡΙΣΑΣ-ΑΘΗΝΩΝ 0",
"workingHoursFriday" : "",
"latitude" : "39.63936183",
"longitude" : "22.41916529"
},
{
"id" : "1-4XJ680L",
"type" : "germanos",
"area" : "ΚΑΡΠΕΝΗΣΙ",
"county" : "ΕΥΡΥΤΑΝΙΑΣ",
"postalCode" : "361 00",
"telephone" : "2102891000",
"address_name" : "ΑΘ. ΚΑΡΠΕΝΗΣΙΩΤΗ 12",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-2791",
"type" : "germanos",
"area" : "ΜΕΤΑΜΟΡΦΩΣΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "144 52",
"telephone" : "2102892000",
"address_name" : "ΦΑΒΙΕΡΟΥ 5",
"workingHoursFriday" : "",
"latitude" : "38.06833639",
"longitude" : "23.76579967"
},
{
"id" : "1-7UDM-4529",
"type" : "germanos",
"area" : "ΚΑΛΑΜΑΡΙΑ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "551 34",
"telephone" : "2310494000",
"address_name" : "ΕΘΝΙΚΗΣ ΑΝΤΙΣΤΑΣΕΩΣ 131",
"workingHoursFriday" : "",
"latitude" : "40.57925354",
"longitude" : "22.96804862"
},
{
"id" : "1-BOX0J",
"type" : "germanos",
"area" : "ΚΟΚΚΥΛΙΑ ΑΡΓΟΣΤΟΛΙ",
"county" : "ΚΕΦΑΛΛΗΝΙΑΣ",
"postalCode" : "281 00",
"telephone" : "2671027765",
"address_name" : "2ο ΧΛΜ ΕΠΑΡΧ. ΟΔΟΥ ΑΡΓΟΣΤΟΛΙΟΥ-ΠΟΡΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "38.17813328",
"longitude" : "20.48560454"
},
{
"id" : "1-4XJ681A",
"type" : "germanos",
"area" : "ΜΥΤΙΛΗΝΗ",
"county" : "ΛΕΣΒΟΥ",
"postalCode" : "811 00",
"telephone" : "2102891000",
"address_name" : "ΕΛ.ΒΕΝΙΖΕΛΟΥ 6",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-5357",
"type" : "germanos",
"area" : "ΠΟΡΤΟ ΡΑΦΤΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "190 03",
"telephone" : "2299063088",
"address_name" : "ΛΕΩΦ. ΠΟΡΤΟ ΡΑΦΤΗ 34Ν",
"workingHoursFriday" : "",
"latitude" : "37.88573077",
"longitude" : "23.93786769"
},
{
"id" : "1-27J4NVS",
"type" : "germanos",
"area" : "ΡΕΘΥΜΝΟ",
"county" : "ΡΕΘΥΜΝΗΣ",
"postalCode" : "741 00",
"telephone" : "2831050770",
"address_name" : "ΜΟΑΤΣΟΥ 49",
"workingHoursFriday" : "",
"latitude" : "35.36491541",
"longitude" : "24.47715932"
},
{
"id" : "1-7UDM-5358",
"type" : "germanos",
"area" : "ΠΥΡΓΟΣ",
"county" : "ΗΛΕΙΑΣ",
"postalCode" : "271 00",
"telephone" : "2621026166",
"address_name" : "ΜΑΝΩΛΟΠΟΥΛΟΥ 7 & ΓΚΟΤΣΙΝΑ. -",
"workingHoursFriday" : "",
"latitude" : "37.67179264",
"longitude" : "21.43286609"
},
{
"id" : "1-7UDM-5902",
"type" : "germanos",
"area" : "ΚΗΦΙΣΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "145 61",
"telephone" : "2106234660",
"address_name" : "ΒΑΣΙΛΕΩΣ ΟΘΩΝΟΣ 88",
"workingHoursFriday" : "",
"latitude" : "38.07504554",
"longitude" : "23.8099748"
},
{
"id" : "1-45685EH",
"type" : "germanos",
"area" : "ΚΙΛΚΙΣ",
"county" : "ΚΙΛΚΙΣ",
"postalCode" : "611 00",
"telephone" : "2341076221",
"address_name" : "ΕΘΝ.ΑΝΤΙΣΤΑΣΗΣ 6",
"workingHoursFriday" : "",
"latitude" : "40.99376406",
"longitude" : "22.87628521"
},
{
"id" : "1-2JX3JA",
"type" : "germanos",
"area" : "ΛΑΡΙΣΑ",
"county" : "ΛΑΡΙΣΗΣ",
"postalCode" : "412 22",
"telephone" : "2410255085",
"address_name" : "ΠΑΤΡΟΚΛΟΥ 18",
"workingHoursFriday" : "",
"latitude" : "39.6361403",
"longitude" : "22.4179273"
},
{
"id" : "1-45145N7",
"type" : "germanos",
"area" : "ΑΤΑΛΑΝΤΗ",
"county" : "ΦΘΙΩΤΙΔΟΣ",
"postalCode" : "352 00",
"telephone" : "2233089233",
"address_name" : "25ΗΣ ΜΑΡΤΙΟΥ 13",
"workingHoursFriday" : "",
"latitude" : "38.65288716",
"longitude" : "23.00031656"
},
{
"id" : "1-7UDM-4918",
"type" : "germanos",
"area" : "ΞΥΛΟΚΑΣΤΡΟ",
"county" : "ΚΟΡΙΝΘΙΑΣ",
"postalCode" : "204 00",
"telephone" : "2743025950",
"address_name" : "Ι.ΙΩΑΝΝΟΥ 185",
"workingHoursFriday" : "",
"latitude" : "38.07625016",
"longitude" : "22.63730482"
},
{
"id" : "1-1MS6W7",
"type" : "germanos",
"area" : "Σ. Σ. ΒΑΡΔΑΣ",
"county" : "ΗΛΕΙΑΣ",
"postalCode" : "270 52",
"telephone" : "2623071780",
"address_name" : "ΠΑΤΡΩΝ - ΠΥΡΓΟΥ & 28ης ΟΚΤΩΒΡΙΟΥ -",
"workingHoursFriday" : "",
"latitude" : "37.97079414",
"longitude" : "23.63885891"
},
{
"id" : "1-7UDM-1817",
"type" : "germanos",
"area" : "ΤΡΙΠΟΛΗ",
"county" : "ΑΡΚΑΔΙΑΣ",
"postalCode" : "221 00",
"telephone" : "2710222999",
"address_name" : "28ΗΣ ΟΚΤΩΒΡΙΟΥ 29",
"workingHoursFriday" : "",
"latitude" : "37.51206531",
"longitude" : "22.37150822"
},
{
"id" : "1-7UDM-1811",
"type" : "germanos",
"area" : "ΡΕΘΥΜΝΟ",
"county" : "ΡΕΘΥΜΝΗΣ",
"postalCode" : "741 00",
"telephone" : "2831059500",
"address_name" : "Λ. ΚΟΥΝΤΟΥΡΙΩΤΗ 28",
"workingHoursFriday" : "",
"latitude" : "35.36648484",
"longitude" : "24.47597117"
},
{
"id" : "1-XU9L75",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "106 73",
"telephone" : "2119997590",
"address_name" : "ΠΛΑΤΕΙΑ ΦΙΛΙΚΗΣ ΕΤΑΙΡΕΙΑΣ 19-20",
"workingHoursFriday" : "",
"latitude" : "95727131",
"longitude" : "37.97668126"
},
{
"id" : "1-7UDM-5024",
"type" : "germanos",
"area" : "ΚΑΤΕΡΙΝΗ",
"county" : "ΠΙΕΡΙΑΣ",
"postalCode" : "601 00",
"telephone" : "2351076305",
"address_name" : "ΕΙΡΗΝΗΣ 9",
"workingHoursFriday" : "",
"latitude" : "40.27090547",
"longitude" : "22.50989592"
},
{
"id" : "1-7UDM-5931",
"type" : "germanos",
"area" : "ΑΓΙΟΙ ΑΝΑΡΓΥΡΟΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "135 61",
"telephone" : "2102617570",
"address_name" : "ΗΡΩΩΝ ΠΟΛΥΤΕΧΝΕΙΟΥ 6-8",
"workingHoursFriday" : "",
"latitude" : "38.02762357",
"longitude" : "23.71880078"
},
{
"id" : "1-1JZERE1",
"type" : "germanos",
"area" : "ΘΗΒΑ",
"county" : "ΒΟΙΩΤΙΑΣ",
"postalCode" : "322 00",
"telephone" : "2262089799",
"address_name" : "ΕΠΑΜΕΙΝΩΝΔΑ -",
"workingHoursFriday" : "",
"latitude" : "38.31797159",
"longitude" : "23.31707976"
},
{
"id" : "1-D79RBT",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "542 49",
"telephone" : "2310325005",
"address_name" : "ΑΛ. ΠΑΠΑΝΑΣΤΑΣΙΟΥ 126",
"workingHoursFriday" : "",
"latitude" : "40.60394969",
"longitude" : "22.9687528"
},
{
"id" : "1-45145PM",
"type" : "germanos",
"area" : "ΛΑΜΙΑ",
"county" : "ΦΘΙΩΤΙΔΟΣ",
"postalCode" : "351 00",
"telephone" : "2231067666",
"address_name" : "ΛΕΩΝΙΔΟΥ 5",
"workingHoursFriday" : "",
"latitude" : "38.89949349",
"longitude" : "22.43560548"
},
{
"id" : "1-7UDM-5367",
"type" : "germanos",
"area" : "ΧΑΛΑΣΤΡΑ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "573 00",
"telephone" : "2310794534",
"address_name" : "ΕΛ.ΒΕΝΙΖΕΛΟΥ 17",
"workingHoursFriday" : "",
"latitude" : "40.6249488",
"longitude" : "22.7269903"
},
{
"id" : "1-26WAAB",
"type" : "germanos",
"area" : "ΚΟΖΑΝΗ",
"county" : "ΚΟΖΑΝΗΣ",
"postalCode" : "501 00",
"telephone" : "2461021829",
"address_name" : "ΠΑΥΛΟΥ ΧΑΡΙΣΗ -",
"workingHoursFriday" : "",
"latitude" : "40.301278",
"longitude" : "21.785878"
},
{
"id" : "1-7UDM-2540",
"type" : "germanos",
"area" : "ΚΑΣΤΟΡΙΑ",
"county" : "ΚΑΣΤΟΡΙΑΣ",
"postalCode" : "521 00",
"telephone" : "2467082999",
"address_name" : "ΓΡΑΜΜΟΥ 209",
"workingHoursFriday" : "",
"latitude" : "40.51639121",
"longitude" : "21.2532512"
},
{
"id" : "1-7UDM-2542",
"type" : "germanos",
"area" : "ΓΡΕΒΕΝΑ",
"county" : "ΓΡΕΒΕΝΩΝ",
"postalCode" : "511 00",
"telephone" : "2462080500",
"address_name" : "Γ. ΜΠΟΥΣΙΟΥ 9",
"workingHoursFriday" : "",
"latitude" : "40.08486971",
"longitude" : "21.4285906"
},
{
"id" : "1-7UDM-2544",
"type" : "germanos",
"area" : "ΦΛΩΡΙΝΑ",
"county" : "ΦΛΩΡΙΝΗΣ",
"postalCode" : "531 00",
"telephone" : "2385025199",
"address_name" : "ΤΥΡΝΟΒΟΥ 5",
"workingHoursFriday" : "",
"latitude" : "40.78229867",
"longitude" : "21.40982807"
},
{
"id" : "1-DTJAG",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "555 35",
"telephone" : "2310304855",
"address_name" : "ΠΡΟΦΗΤΗ ΗΛΙΑ 67",
"workingHoursFriday" : "",
"latitude" : "40.600951",
"longitude" : "22.988269"
},
{
"id" : "1-7UDM-1805",
"type" : "germanos",
"area" : "ΓΥΘΕΙΟ",
"county" : "ΛΑΚΩΝΙΑΣ",
"postalCode" : "232 00",
"telephone" : "2733022099",
"address_name" : "ΓΕΡΑΣΙΜΟΥ ΚΑΨΑΛΗ 20",
"workingHoursFriday" : "",
"latitude" : "36.75944835",
"longitude" : "22.56627933"
},
{
"id" : "1-6TNNU",
"type" : "germanos",
"area" : "ΓΑΛΑΤΣΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "111 42",
"telephone" : "2102931900",
"address_name" : "ΙΩΑΝΝΟΥ ΦΩΚΑ 66 & ΣΥΡΑΚΟΥΣΩΝ 17",
"workingHoursFriday" : "",
"latitude" : "38.02341002",
"longitude" : "23.74769151"
},
{
"id" : "1-7UDM-1803",
"type" : "germanos",
"area" : "ΣΠΑΡΤΗ",
"county" : "ΛΑΚΩΝΙΑΣ",
"postalCode" : "231 00",
"telephone" : "2731026999",
"address_name" : "ΚΛΕΟΜΒΡΟΤΟΥ 3",
"workingHoursFriday" : "",
"latitude" : "37.07517947",
"longitude" : "22.43070882"
},
{
"id" : "1-2IG2X8Z",
"type" : "germanos",
"area" : "ΣΤΑΥΡΟΥΠΟΛΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "564 30",
"telephone" : "2311803800",
"address_name" : "ΛΑΓΚΑΔΑ 341",
"workingHoursFriday" : "",
"latitude" : "40.67491258",
"longitude" : "22.93873295"
},
{
"id" : "1-7UDM-5039",
"type" : "germanos",
"area" : "ΕΥΚΑΡΠΙΑ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "564 29",
"telephone" : "2310685019",
"address_name" : "ΠΕΡ.ΟΔΟΣ ΘΕΣ-Ν.ΕΥΚΑΡΠΙΑΣ -",
"workingHoursFriday" : "",
"latitude" : "40.66835085",
"longitude" : "22.93066116"
},
{
"id" : "1-7UDM-5038",
"type" : "germanos",
"area" : "ΠΥΛΑΙΑ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "555 35",
"telephone" : "2310473730",
"address_name" : "ΤΟΜΠΑΖΗ ( ΘΕΣΗ ΛΥΓΑΡΙΑ) 15",
"workingHoursFriday" : "",
"latitude" : "40.578189",
"longitude" : "22.976446"
},
{
"id" : "1-2UYJWA2",
"type" : "germanos",
"area" : "ΑΚΡΑΤΑ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "250 06",
"telephone" : "2696039230",
"address_name" : "Π.ΠΕΡΙΦ. Ε.Ο. ΚΟΡΙΝΘΟΥ-ΠΑΤΡΩΝ (ΕΝΑΝΤΙ Π. ΔΙΟΔΙΩΝ) 0",
"workingHoursFriday" : "",
"latitude" : "38.15413626",
"longitude" : "22.31372225"
},
{
"id" : "1-K4GU7",
"type" : "germanos",
"area" : "ΚΑΛΛΙΚΡΑΤΕΙΑ",
"county" : "ΧΑΛΚΙΔΙΚΗΣ",
"postalCode" : "630 80",
"telephone" : "2399048767",
"address_name" : "ΟΣΙΑΣ ΠΑΡΑΚΣΕΥΗΣ 27",
"workingHoursFriday" : "",
"latitude" : "40.311587",
"longitude" : "23.063157"
},
{
"id" : "1-7UDM-7294",
"type" : "germanos",
"area" : "ΚΑΜΑΤΕΡΟ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "134 51",
"telephone" : "2102320192",
"address_name" : "ΦΥΛΗΣ 189",
"workingHoursFriday" : "",
"latitude" : "38.06077532",
"longitude" : "23.71392203"
},
{
"id" : "1-7UDM-4508",
"type" : "germanos",
"area" : "ΑΛΕΞΑΝΔΡΟΥΠΟΛΗ",
"county" : "ΕΒΡΟΥ",
"postalCode" : "681 00",
"telephone" : "2551088944",
"address_name" : "14ΗΣ ΜΑΙΟΥ 4",
"workingHoursFriday" : "",
"latitude" : "40.845762",
"longitude" : "25.876016"
},
{
"id" : "1-KO5UH",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 30",
"telephone" : "2310598800",
"address_name" : "ΑΝΤΙΓΟΝΙΔΩΝ 17",
"workingHoursFriday" : "",
"latitude" : "40.63989176",
"longitude" : "22.93975126"
},
{
"id" : "1-3MRLNI8",
"type" : "germanos",
"area" : "ΣΙΝΔΟΣ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "574 00",
"telephone" : "2310795594",
"address_name" : "ΠΛ. ΔΗΜΟΚΡΑΤΙΑΣ & ΚΥΠΡΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "40.66980628",
"longitude" : "22.8058111"
},
{
"id" : "1-7UDM-2944",
"type" : "germanos",
"area" : "ΣΑΜΟΣ",
"county" : "ΣΑΜΟΥ",
"postalCode" : "831 00",
"telephone" : "2273080689",
"address_name" : "ΠΛΑΤΕΙΑ ΗΡΩΩΝ 2",
"workingHoursFriday" : "",
"latitude" : "37.75902128",
"longitude" : "26.97490017"
},
{
"id" : "1-6TNNF",
"type" : "germanos",
"area" : "ΑΓΙΟΙ ΘΕΟΔΩΡΟΙ",
"county" : "ΚΟΡΙΝΘΙΑΣ",
"postalCode" : "200 03",
"telephone" : "2741060125",
"address_name" : "ΠΑΛΑΙΑ ΕΘΝΙΚΗ ΟΔΟΣ ΑΘΗΝΩΝ – ΚΟΡΙΝΘΟΥ ΚΑΙ ΚΡΟΜΜΥΩΝΟΣ -",
"workingHoursFriday" : "",
"latitude" : "37.93115186",
"longitude" : "23.13744441"
},
{
"id" : "1-7UDM-1174",
"type" : "germanos",
"area" : "ΔΡΑΜΑ",
"county" : "ΔΡΑΜΑΣ",
"postalCode" : "661 00",
"telephone" : "2521022399",
"address_name" : "ΕΡΜΟΥ 1",
"workingHoursFriday" : "",
"latitude" : "41.15124623",
"longitude" : "24.14664605"
},
{
"id" : "1-7UDM-2806",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 21",
"telephone" : "2310252414",
"address_name" : "Π.Π.ΓΕΡΜΑΝΟΥ 11 Κ ΤΣΙΜΙΣΚΗ -",
"workingHoursFriday" : "",
"latitude" : "40.62779605",
"longitude" : "22.95088479"
},
{
"id" : "1-7UDM-1034",
"type" : "germanos",
"area" : "ΣΥΡΟΣ",
"county" : "ΚΥΚΛΑΔΩΝ",
"postalCode" : "841 00",
"telephone" : "2281095504",
"address_name" : "ΠΛΑΤΕΙΑ ΜΙΑΟΥΛΗ -",
"workingHoursFriday" : "",
"latitude" : "37.444829",
"longitude" : "24.94361"
},
{
"id" : "1-7UDM-2804",
"type" : "germanos",
"area" : "ΝΕΟ ΨΥΧΙΚΟ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "154 51",
"telephone" : "2106779200",
"address_name" : "ΟΜΗΡΟΥ 5",
"workingHoursFriday" : "",
"latitude" : "38.00515625",
"longitude" : "23.7767889"
},
{
"id" : "1-7UDM-2805",
"type" : "germanos",
"area" : "ΓΛΥΦΑΔΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "166 75",
"telephone" : "2108981700",
"address_name" : "ΛΑΖΑΡΑΚΗ Κ Λ.Γ.ΠΑΠΑΝΔΡΕΟΥ 5",
"workingHoursFriday" : "",
"latitude" : "37.86497607",
"longitude" : "23.74583821"
},
{
"id" : "1-OMB81",
"type" : "germanos",
"area" : "ΤΑΥΡΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "182 33",
"telephone" : "2103418600",
"address_name" : "ΠΕΙΡΑΙΩΣ 180",
"workingHoursFriday" : "",
"latitude" : "37.95376305",
"longitude" : "23.67062248"
},
{
"id" : "1-7UDM-4403",
"type" : "germanos",
"area" : "ΧΑΛΚΙΔΑ",
"county" : "ΕΥΒΟΙΑΣ",
"postalCode" : "341 00",
"telephone" : "2221073601",
"address_name" : "ΒΕΝΙΖΕΛΟΥ 40",
"workingHoursFriday" : "",
"latitude" : "38.46185976",
"longitude" : "23.59510173"
},
{
"id" : "1-7UDM-2803",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "106 82",
"telephone" : "2102892000",
"address_name" : "ΣΤΟΥΡΝΑΡΗ -",
"workingHoursFriday" : "",
"latitude" : "37.98729628",
"longitude" : "23.73195843"
},
{
"id" : "1-7UDM-1037",
"type" : "germanos",
"area" : "ΘΗΡΑ",
"county" : "ΚΥΚΛΑΔΩΝ",
"postalCode" : "847 00",
"telephone" : "2286022135",
"address_name" : "25ΗΣ ΜΑΡΤΙΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "36.420212",
"longitude" : "25.431992"
},
{
"id" : "1-7UDM-7576",
"type" : "germanos",
"area" : "ΣΟΛΑΡΙ",
"county" : "ΚΕΡΚΥΡΑΣ",
"postalCode" : "491 00",
"telephone" : "2661080938",
"address_name" : "ΚΕΡΚΥΡΑΣ ΠΑΛΑΙΟΚΑΣΤΡΙΤΣΑΣ 64",
"workingHoursFriday" : "",
"latitude" : "39.62402",
"longitude" : "19.896342"
},
{
"id" : "1-7UDM-216",
"type" : "germanos",
"area" : "ΝΕΑ ΜΟΥΔΑΝΙΑ",
"county" : "ΧΑΛΚΙΔΙΚΗΣ",
"postalCode" : "632 00",
"telephone" : "2373065900",
"address_name" : "ΤΖΑΒΟΥΡΑ 23",
"workingHoursFriday" : "",
"latitude" : "40.23912481",
"longitude" : "23.285009"
},
{
"id" : "1-7UDM-215",
"type" : "germanos",
"area" : "ΠΟΛΥΓΥΡΟΣ",
"county" : "ΧΑΛΚΙΔΙΚΗΣ",
"postalCode" : "631 00",
"telephone" : "2371022999",
"address_name" : "ΠΟΛΥΤΕΧΝΕΙΟΥ 30",
"workingHoursFriday" : "",
"latitude" : "40.37759716",
"longitude" : "23.4404719"
},
{
"id" : "1-7UDM-7573",
"type" : "germanos",
"area" : "ΧΑΙΔΑΡΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "124 61",
"telephone" : "2105988265",
"address_name" : "ΣΤΡΑΤΑΡΧΟΥ ΚΑΡΑΙΣΚΑΚΗ 74",
"workingHoursFriday" : "",
"latitude" : "38.00606474",
"longitude" : "23.66457407"
},
{
"id" : "1-7UDM-946",
"type" : "germanos",
"area" : "ΞΑΝΘΗ",
"county" : "ΞΑΝΘΗΣ",
"postalCode" : "671 00",
"telephone" : "2541076299",
"address_name" : "Μ. ΒΟΓΔΟΥ 2",
"workingHoursFriday" : "",
"latitude" : "41.13891787",
"longitude" : "24.88635291"
},
{
"id" : "1-33TPTFH",
"type" : "germanos",
"area" : "ΗΓΟΥΜΕΝΙΤΣΑ",
"county" : "ΘΕΣΠΡΩΤΙΑΣ",
"postalCode" : "461 00",
"telephone" : "2665029320",
"address_name" : "ΚΥΠΡΟΥ 41",
"workingHoursFriday" : "",
"latitude" : "39.505936",
"longitude" : "20.263853"
},
{
"id" : "1-7UDM-1625",
"type" : "germanos",
"area" : "ΗΡΑΚΛΕΙΟ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "712 02",
"telephone" : "2810343401",
"address_name" : "ΜΙΝΩΤΑΥΡΟΥ 10",
"workingHoursFriday" : "",
"latitude" : "35.34006178",
"longitude" : "25.1329683"
},
{
"id" : "1-KWN8D",
"type" : "germanos",
"area" : "ΠΕΡΑΜΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "188 63",
"telephone" : "2104419303",
"address_name" : "Λ. ΕΙΡΗΝΗΣ 89",
"workingHoursFriday" : "",
"latitude" : "37.96410814",
"longitude" : "23.56655725"
},
{
"id" : "1-7UDM-1952",
"type" : "germanos",
"area" : "ΜΕΣΣΗΝΗ",
"county" : "ΜΕΣΣΗΝΙΑΣ",
"postalCode" : "242 00",
"telephone" : "2722023499",
"address_name" : "ΛΟΧΑΓΟΥ ΝΙΚΟΛΟΠΟΥΛΟΥ 6",
"workingHoursFriday" : "",
"latitude" : "39.63013805",
"longitude" : "22.39846118"
},
{
"id" : "1-2JPU361",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "105 64",
"telephone" : "2103236000",
"address_name" : "ΣΤΑΔΙΟΥ 10",
"workingHoursFriday" : "",
"latitude" : "998118780",
"longitude" : "37.97786457"
},
{
"id" : "1-7UDM-1524",
"type" : "germanos",
"area" : "ΧΑΝΙΑ",
"county" : "ΧΑΝΙΩΝ",
"postalCode" : "731 00",
"telephone" : "2821035539",
"address_name" : "ΤΖΑΝΑΚΑΚΗ 3-5",
"workingHoursFriday" : "",
"latitude" : "35.51623545",
"longitude" : "24.01880205"
},
{
"id" : "1-7UDM-113",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "115 27",
"telephone" : "2107788999",
"address_name" : "ΜΙΚΡΑΣ ΑΣΙΑΣ 47 & ΣΙΝΩΠΗΣ -",
"workingHoursFriday" : "",
"latitude" : "37.98221169",
"longitude" : "23.76331302"
},
{
"id" : "1-T1115",
"type" : "germanos",
"area" : "ΝΕΑ ΙΩΝΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "142 31",
"telephone" : "2102757370",
"address_name" : "Λ.ΗΡΑΚΛΕΙΟΥ 288-290",
"workingHoursFriday" : "",
"latitude" : "38.0439286",
"longitude" : "23.75492506"
},
{
"id" : "1-7UDM-116",
"type" : "germanos",
"area" : "ΠΑΓΚΡΑΤΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "116 33",
"telephone" : "2107613199",
"address_name" : "ΧΡΕΜΩΝΙΔΟΥ 46",
"workingHoursFriday" : "",
"latitude" : "37.96444673",
"longitude" : "23.75073302"
},
{
"id" : "1-7UDM-7577",
"type" : "germanos",
"area" : "ΓΕΡΑΚΑΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "153 44",
"telephone" : "2106610217",
"address_name" : "Λ. ΜΑΡΑΘΩΝΟΣ 119",
"workingHoursFriday" : "",
"latitude" : "38.00747302",
"longitude" : "23.85910571"
},
{
"id" : "1-7UDM-1721",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "112 57",
"telephone" : "2108224937",
"address_name" : "ΠΑΤΗΣΙΩΝ -",
"workingHoursFriday" : "",
"latitude" : "37.9961532",
"longitude" : "23.73246403"
},
{
"id" : "1-7UDM-1723",
"type" : "germanos",
"area" : "ΡΕΘΥΜΝΟ",
"county" : "ΡΕΘΥΜΝΗΣ",
"postalCode" : "741 00",
"telephone" : "2831025267",
"address_name" : "ΕΘΝ. ΑΝΤΙΣΤΑΣΕΩΣ 19",
"workingHoursFriday" : "",
"latitude" : "35.36781668",
"longitude" : "24.4744934"
},
{
"id" : "1-7UDM-7866",
"type" : "germanos",
"area" : "ΠΥΛΗ ΤΡΙΚΑΛΩΝ",
"county" : "ΤΡΙΚΑΛΩΝ",
"postalCode" : "420 32",
"telephone" : "2434022023",
"address_name" : "ΠΥΛΗΣ ΑΡΤΑΣ -",
"workingHoursFriday" : "",
"latitude" : "38.21402384",
"longitude" : "23.49406244"
},
{
"id" : "1-7UDM-1722",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "112 54",
"telephone" : "2102231561",
"address_name" : "ΑΧΑΡΝΩΝ 330",
"workingHoursFriday" : "",
"latitude" : "38.01189683",
"longitude" : "23.72891618"
},
{
"id" : "1-7UDM-7863",
"type" : "germanos",
"area" : "ΙΛΙΣΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "157 71",
"telephone" : "2107717246",
"address_name" : "ΓΡΗΓΟΡΙΟΥ ΑΥΞΕΝΤΙΟΥ 38",
"workingHoursFriday" : "",
"latitude" : "37.97604544",
"longitude" : "23.76185066"
},
{
"id" : "1-7UDM-7197",
"type" : "germanos",
"area" : "ΚΕΡΚΥΡΑ",
"county" : "ΚΕΡΚΥΡΑΣ",
"postalCode" : "490 81",
"telephone" : "2663064455",
"address_name" : "ΑΧΑΡΑΒΗΣ-ΡΟΔΑΣ -",
"workingHoursFriday" : "",
"latitude" : "39.78192955",
"longitude" : "19.74022247"
},
{
"id" : "1-7UDM-1520",
"type" : "germanos",
"area" : "ΟΡΕΣΤΙΑΔΑ",
"county" : "ΕΒΡΟΥ",
"postalCode" : "682 00",
"telephone" : "2552027799",
"address_name" : "ΚΩΝΣΤΑΝΤΙΝΟΥΠΟΛΕΩΣ 210",
"workingHoursFriday" : "",
"latitude" : "41.50304835",
"longitude" : "26.53229794"
},
{
"id" : "1-7UDM-7198",
"type" : "germanos",
"area" : "ΚΑΡΔΙΤΣΑ",
"county" : "ΚΑΡΔΙΤΣΗΣ",
"postalCode" : "430 60",
"telephone" : "2445041198",
"address_name" : "ΜΟΥΖΑΚΙ ΚΑΡΔΙΤΣΑΣ -",
"workingHoursFriday" : "",
"latitude" : "37.78343681",
"longitude" : "21.56045802"
},
{
"id" : "1-7UDM-4100",
"type" : "germanos",
"area" : "ΓΑΛΑΤΣΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "111 46",
"telephone" : "2102137780",
"address_name" : "ΛΕΩΦΟΡΟΣ ΒΕΪΚΟΥ 43 & ΚΟΡΙΝΗΣ -",
"workingHoursFriday" : "",
"latitude" : "38.0167888",
"longitude" : "23.75497629"
},
{
"id" : "1-7UDM-7196",
"type" : "germanos",
"area" : "ΙΕΡΙΣΣΟΣ",
"county" : "ΧΑΛΚΙΔΙΚΗΣ",
"postalCode" : "630 75",
"telephone" : "2377021002",
"address_name" : "ΙΕΡΙΣΣΟΣ -",
"workingHoursFriday" : "",
"latitude" : "40.39735522",
"longitude" : "23.87497412"
},
{
"id" : "1-7UDM-942",
"type" : "germanos",
"area" : "ΒΕΡΟΙΑ",
"county" : "ΗΜΑΘΙΑΣ",
"postalCode" : "591 00",
"telephone" : "2331036150",
"address_name" : "ΜΗΤΡΟΠΟΛΕΩΣ 53",
"workingHoursFriday" : "",
"latitude" : "40.52171891",
"longitude" : "22.20253976"
},
{
"id" : "1-7UDM-943",
"type" : "germanos",
"area" : "ΝΑΟΥΣΑ",
"county" : "ΗΜΑΘΙΑΣ",
"postalCode" : "592 00",
"telephone" : "2332022399",
"address_name" : "ΠΡΟΔΡΟΜΟΥ 9",
"workingHoursFriday" : "",
"latitude" : "40.63060782",
"longitude" : "22.06954471"
},
{
"id" : "1-7UDM-5195",
"type" : "germanos",
"area" : "ΝΕΑ ΑΡΤΑΚΗ",
"county" : "ΕΥΒΟΙΑΣ",
"postalCode" : "346 00",
"telephone" : "2221061770",
"address_name" : "ΕΘΝΙΚΗΣ ΟΔΟΥ ΧΑΛΚΙΔΑΣ – ΑΙΔΗΨΟΥ (ΕΘΝΙΚΗΣ ΑΝΤΙΣΤΑΣΕΩΣ 80) ΚΑΙ 28ης ΟΚΤΩΒΡΙΟΥ -",
"workingHoursFriday" : "",
"latitude" : "38.51248092",
"longitude" : "23.63854215"
},
{
"id" : "1-7UDM-4102",
"type" : "germanos",
"area" : "ΕΛΕΥΣΙΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "192 00",
"telephone" : "2105561835",
"address_name" : "ΠΕΤΡΑΚΗ & ΗΡΩΩΝ ΠΟΛΥΤΕΧΝΕΙΟΥ -",
"workingHoursFriday" : "",
"latitude" : "38.04558655",
"longitude" : "23.53370113"
},
{
"id" : "1-7UDM-5196",
"type" : "germanos",
"area" : "ΑΜΦΙΣΣΑ",
"county" : "ΦΩΚΙΔΟΣ",
"postalCode" : "331 00",
"telephone" : "2265079018",
"address_name" : "ΓΙΑΓΤΖΗ & ΣΤΑΛΛΟΥ -",
"workingHoursFriday" : "",
"latitude" : "38.52790324",
"longitude" : "22.37793458"
},
{
"id" : "1-8JMI9",
"type" : "germanos",
"area" : "ΑΛΙΑΡΤΟΣ",
"county" : "ΒΟΙΩΤΙΑΣ",
"postalCode" : "320 01",
"telephone" : "2268029444",
"address_name" : "ΛΕΩΦ. ΑΘΗΝΩΝ 30",
"workingHoursFriday" : "",
"latitude" : "38.37306718",
"longitude" : "23.09920831"
},
{
"id" : "1-7UDM-7861",
"type" : "germanos",
"area" : "ΔΟΜΟΚΟΣ",
"county" : "ΦΘΙΩΤΙΔΟΣ",
"postalCode" : "350 10",
"telephone" : "2232022066",
"address_name" : "ΘΑΥΜΑΚΩΝ -",
"workingHoursFriday" : "",
"latitude" : "39.12754762",
"longitude" : "22.30305461"
},
{
"id" : "1-P096L",
"type" : "germanos",
"area" : "ΑΡΤΑ",
"county" : "ΑΡΤΗΣ",
"postalCode" : "471 00",
"telephone" : "2681071808",
"address_name" : "ΣΚΟΥΦΑ 157",
"workingHoursFriday" : "",
"latitude" : "39.16056421",
"longitude" : "20.9838127"
},
{
"id" : "1-7UDM-940",
"type" : "germanos",
"area" : "ΓΙΑΝΝΙΤΣΑ",
"county" : "ΠΕΛΛΗΣ",
"postalCode" : "581 00",
"telephone" : "2382083399",
"address_name" : "ΕΘΝΙΚΗΣ ΑΝΤΙΣΤΑΣΗΣ 9",
"workingHoursFriday" : "",
"latitude" : "40.79473202",
"longitude" : "22.41791765"
},
{
"id" : "1-7UDM-7860",
"type" : "germanos",
"area" : "ΚΑΡΔΙΤΣΑ",
"county" : "ΚΑΡΔΙΤΣΗΣ",
"postalCode" : "431 00",
"telephone" : "2441076222",
"address_name" : "ΝΙΚΗΤΑΡΑ ΚΑΙ ΗΡΩΩΝ ΠΟΛΥΤΕΧΝΕΙΟΥ -",
"workingHoursFriday" : "",
"latitude" : "39.363684",
"longitude" : "21.923937"
},
{
"id" : "1-2JYWXAV",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "544 53",
"telephone" : "2310988227",
"address_name" : "Μ. ΜΠΟΤΣΑΡΗ 135",
"workingHoursFriday" : "",
"latitude" : "40.60943997",
"longitude" : "22.97097045"
},
{
"id" : "1-7UDM-7565",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 22",
"telephone" : "2310264030",
"address_name" : "Π.ΠΑΤΡΩΝ ΓΕΡΜΑΝΟΥ 32",
"workingHoursFriday" : "",
"latitude" : "40.63172876",
"longitude" : "22.94877446"
},
{
"id" : "1-E98RL",
"type" : "germanos",
"area" : "ΑΙΓΑΛΕΩ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "122 41",
"telephone" : "2105614687",
"address_name" : "ΛΕΩΦ.ΘΗΒΩΝ 304",
"workingHoursFriday" : "",
"latitude" : "37.98723006",
"longitude" : "23.67011151"
},
{
"id" : "1-7UDM-957",
"type" : "germanos",
"area" : "ΚΕΡΚΥΡΑ",
"county" : "ΚΕΡΚΥΡΑΣ",
"postalCode" : "491 00",
"telephone" : "2661042199",
"address_name" : "ΜΑΝΤΖΑΡΟΥ 3",
"workingHoursFriday" : "",
"latitude" : "39.62136014",
"longitude" : "19.92009213"
},
{
"id" : "1-7UDM-104",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "105 54",
"telephone" : "2103215999",
"address_name" : "ΑΘΗΝΑΣ 45",
"workingHoursFriday" : "",
"latitude" : "37.97958182",
"longitude" : "23.72687404"
},
{
"id" : "1-7UDM-108",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "104 34",
"telephone" : "2108212999",
"address_name" : "ΠΑΤΗΣΙΩΝ 85",
"workingHoursFriday" : "",
"latitude" : "37.99342025",
"longitude" : "23.73164229"
},
{
"id" : "1-7UDM-7567",
"type" : "germanos",
"area" : "ΞΑΝΘΗ",
"county" : "ΞΑΝΘΗΣ",
"postalCode" : "671 00",
"telephone" : "2541078474",
"address_name" : "28ης ΟΚΤΩΒΡΙΟΥ 271",
"workingHoursFriday" : "",
"latitude" : "41.13332592",
"longitude" : "24.88695355"
},
{
"id" : "1-7UDM-107",
"type" : "germanos",
"area" : "ΝΕΑ ΦΙΛΑΔΕΛΦΕΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "143 41",
"telephone" : "2102588933",
"address_name" : "ΔΕΚΕΛΕΙΑΣ 71",
"workingHoursFriday" : "",
"latitude" : "38.03241896",
"longitude" : "23.73706881"
},
{
"id" : "1-7UDM-7876",
"type" : "germanos",
"area" : "ΑΡΓΥΡΟΥΠΟΛΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "164 52",
"telephone" : "2111809800",
"address_name" : "ΛΕΟΝΤΟΣ 4 & ΕΛΕΥΘΕΡΙΑΣ 0",
"workingHoursFriday" : "",
"latitude" : "37.91314126",
"longitude" : "23.74396316"
},
{
"id" : "1-7UDM-6346",
"type" : "germanos",
"area" : "ΤΗΝΟΣ",
"county" : "ΚΥΚΛΑΔΩΝ",
"postalCode" : "842 00",
"telephone" : "2283022020",
"address_name" : "Λ.ΜΕΓΑΛΟΧΑΡΗΣ 43",
"workingHoursFriday" : "",
"latitude" : "37.5377984",
"longitude" : "25.16137082"
},
{
"id" : "1-4N1FCBZ",
"type" : "germanos",
"area" : "ΑΓΙΑ ΠΑΡΑΣΚΕΥΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "153 43",
"telephone" : "2106395156",
"address_name" : "ΜΕΣΟΓΕΙΩΝ 439",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-1739",
"type" : "germanos",
"area" : "ΚΟΖΑΝΗ",
"county" : "ΚΟΖΑΝΗΣ",
"postalCode" : "501 00",
"telephone" : "2461030629",
"address_name" : "ΠΑΥΛΟΥ ΜΕΛΑ -",
"workingHoursFriday" : "",
"latitude" : "40.302644",
"longitude" : "21.788292"
},
{
"id" : "1-7UDM-1532",
"type" : "germanos",
"area" : "ΚΟΜΟΤΗΝΗ",
"county" : "ΡΟΔΟΠΗΣ",
"postalCode" : "691 00",
"telephone" : "2531056150",
"address_name" : "ΠΑΡΑΣΙΟΥ 2",
"workingHoursFriday" : "",
"latitude" : "41.11597566",
"longitude" : "25.40355077"
},
{
"id" : "1-DM0PL",
"type" : "germanos",
"area" : "ΓΑΖΙ ΗΡΑΚΛΕΙΟΥ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "714 14",
"telephone" : "2810824580",
"address_name" : "ΕΛΕΥΘΕΡΙΟΥ ΒΕΝΙΖΕΛΟΥ 194",
"workingHoursFriday" : "",
"latitude" : "38.39173404",
"longitude" : "23.88697673"
},
{
"id" : "1-7UDM-5183",
"type" : "germanos",
"area" : "ΠΟΛΥΚΑΣΤΡΟ",
"county" : "ΚΙΛΚΙΣ",
"postalCode" : "612 00",
"telephone" : "2343020277",
"address_name" : "Μ.ΑΛΕΞΑΝΔΡΟΥ 99",
"workingHoursFriday" : "",
"latitude" : "40.99413253",
"longitude" : "22.57243607"
},
{
"id" : "1-7UDM-950",
"type" : "germanos",
"area" : "ΚΑΒΑΛΑ",
"county" : "ΚΑΒΑΛΑΣ",
"postalCode" : "654 03",
"telephone" : "2510245799",
"address_name" : "ΑΒΕΡΩΦ & ΚΥΠΡΟΥ -",
"workingHoursFriday" : "",
"latitude" : "40.93760629",
"longitude" : "24.40805778"
},
{
"id" : "1-7UDM-1946",
"type" : "germanos",
"area" : "ΚΑΛΑΜΑΤΑ",
"county" : "ΜΕΣΣΗΝΙΑΣ",
"postalCode" : "241 00",
"telephone" : "2721091399",
"address_name" : "ΣΙΔ.ΣΤΑΘΜΟΥ 4",
"workingHoursFriday" : "",
"latitude" : "37.04137844",
"longitude" : "22.11281154"
},
{
"id" : "1-7UDM-7594",
"type" : "germanos",
"area" : "ΤΡΙΠΟΛΗ",
"county" : "ΑΡΚΑΔΙΑΣ",
"postalCode" : "221 00",
"telephone" : "2710224018",
"address_name" : "ΝΑΥΠΛΙΟΥ 39",
"workingHoursFriday" : "",
"latitude" : "37.51020756",
"longitude" : "22.3737224"
},
{
"id" : "1-7UDM-7592",
"type" : "germanos",
"area" : "ΑΡΓΟΣ",
"county" : "ΑΡΓΟΛΙΔΟΣ",
"postalCode" : "212 00",
"telephone" : "2751069295",
"address_name" : "ΚΑΠΟΔΙΣΤΡΙΟΥ 27",
"workingHoursFriday" : "",
"latitude" : "37.63306649",
"longitude" : "22.72883592"
},
{
"id" : "1-7UDM-6597",
"type" : "germanos",
"area" : "ΠΟΛΥΓΥΡΟΣ",
"county" : "ΧΑΛΚΙΔΙΚΗΣ",
"postalCode" : "631 00",
"telephone" : "2371024949",
"address_name" : "ΧΑΡΙΛΑΟΥ ΤΡΙΚΟΥΠΗ 13",
"workingHoursFriday" : "",
"latitude" : "40.37966212",
"longitude" : "23.44310146"
},
{
"id" : "1-7UDM-7597",
"type" : "germanos",
"area" : "ΡΕΘΥΜΝΟ",
"county" : "ΡΕΘΥΜΝΗΣ",
"postalCode" : "712 02",
"telephone" : "2831058051",
"address_name" : "ΑΡΚΑΔΙΟΥ 142",
"workingHoursFriday" : "",
"latitude" : "38.04746211",
"longitude" : "23.76066977"
},
{
"id" : "1-CVTBF",
"type" : "germanos",
"area" : "ΜΗΛΟΣ",
"county" : "ΚΥΚΛΑΔΩΝ",
"postalCode" : "848 00",
"telephone" : "2287022878",
"address_name" : "ΚΑΡΟΔΡΟΜΟΣ -ΤΡΙΟΒΑΣΑΛΟΣ ΜΗΛΟΥ -",
"workingHoursFriday" : "",
"latitude" : "36.74389096",
"longitude" : "24.42327273"
},
{
"id" : "1-7UDM-7596",
"type" : "germanos",
"area" : "ΗΡΑΚΛΕΙΟ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "712 01",
"telephone" : "2810300454",
"address_name" : "ΕΒΑΝΣ 80 & ΚΑΛΟΝΑΔΩΝ 0",
"workingHoursFriday" : "",
"latitude" : "35.33510573",
"longitude" : "25.13448554"
},
{
"id" : "1-4A6JFYN",
"type" : "germanos",
"area" : "ΜΑΡΟΥΣΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "151 23",
"telephone" : "2102891000",
"address_name" : "ΚΗΦΙΣΙΑΣ 41-47",
"workingHoursFriday" : "",
"latitude" : "38.03518373",
"longitude" : "23.79662059"
},
{
"id" : "1-7UDM-6592",
"type" : "germanos",
"area" : "ΚΑΛΑΜΑΡΙΑ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "551 32",
"telephone" : "2310454510",
"address_name" : "Ι.ΠΑΣΣΑΛΙΔΗ 25",
"workingHoursFriday" : "",
"latitude" : "40.57900285",
"longitude" : "22.94761873"
},
{
"id" : "1-7UDM-7456",
"type" : "germanos",
"area" : "ΛΕΥΚΑΔΑ",
"county" : "ΛΕΥΚΑΔΟΣ",
"postalCode" : "311 00",
"telephone" : "2102891000",
"address_name" : "1ο ΧΛΜ ΘΗΒΩΝ-ΚΑΠΑΡΕΛΙΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "38.90966552",
"longitude" : "21.99877137"
},
{
"id" : "1-7UDM-7455",
"type" : "germanos",
"area" : "ΗΛΙΟΥΠΟΛΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "163 41",
"telephone" : "2102891000",
"address_name" : "ΛΕΩΦΟΡΟΣ ΒΟΥΛΙΑΓΜΕΝΗΣ 519",
"workingHoursFriday" : "",
"latitude" : "37.92363809",
"longitude" : "23.74468311"
},
{
"id" : "1-6KKJ1",
"type" : "germanos",
"area" : "ΩΡΑΙΟΚΑΣΤΡΟ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "570 13",
"telephone" : "2310695806",
"address_name" : "25ΗΣ ΜΑΡΤΊΟΥ & ΔΗΜΟΚΡΑΤΊΑΣ 17",
"workingHoursFriday" : "",
"latitude" : "40.7314619",
"longitude" : "22.91649363"
},
{
"id" : "1-7UDM-7452",
"type" : "germanos",
"area" : "ΣΠΑΤΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "190 04",
"telephone" : "2106025165",
"address_name" : "ΒΑΣ.ΠΑΥΛΟΥ 125",
"workingHoursFriday" : "",
"latitude" : "37.96200261",
"longitude" : "23.91475734"
},
{
"id" : "1-7UDM-1509",
"type" : "germanos",
"area" : "ΑΜΦΙΣΣΑ",
"county" : "ΦΩΚΙΔΟΣ",
"postalCode" : "331 00",
"telephone" : "2265072899",
"address_name" : "ΘΟΑΝΤΟΣ 7",
"workingHoursFriday" : "",
"latitude" : "38.52766733",
"longitude" : "22.37750376"
},
{
"id" : "1-7UDM-7451",
"type" : "germanos",
"area" : "ΒΟΛΟΣ",
"county" : "ΜΑΓΝΗΣΙΑΣ",
"postalCode" : "382 21",
"telephone" : "2421031310",
"address_name" : "ΔΗΜΗΤΡΙΑΔΟΣ 72 & ΙΩΛΚΟΥ -",
"workingHoursFriday" : "",
"latitude" : "39.36103156",
"longitude" : "22.94569986"
},
{
"id" : "1-7UDM-7450",
"type" : "germanos",
"area" : "ΛΙΒΑΔΕΙΑ",
"county" : "ΒΟΙΩΤΙΑΣ",
"postalCode" : "320 01",
"telephone" : "2268029000",
"address_name" : "ΑΘΗΝΩΝ 37",
"workingHoursFriday" : "",
"latitude" : "38.37306718",
"longitude" : "23.09920831"
},
{
"id" : "1-7UDM-6599",
"type" : "germanos",
"area" : "ΞΑΝΘΗ",
"county" : "ΞΑΝΘΗΣ",
"postalCode" : "671 00",
"telephone" : "2541083317",
"address_name" : "28ΗΣ ΟΚΤΩΒΡΙΟΥ 80",
"workingHoursFriday" : "",
"latitude" : "73740596",
"longitude" : "41.13332592"
},
{
"id" : "1-E98QR",
"type" : "germanos",
"area" : "ΝΕΑ ΜΟΥΔΑΝΙΑ",
"county" : "ΧΑΛΚΙΔΙΚΗΣ",
"postalCode" : "632 00",
"telephone" : "2373025155",
"address_name" : "ΕΘΝΙΚΗΣ ΑΝΤΙΣΤΑΣΕΩΣ 21",
"workingHoursFriday" : "",
"latitude" : "40.2392661",
"longitude" : "23.28465092"
},
{
"id" : "1-7UDM-4122",
"type" : "germanos",
"area" : "ΠΕΡΙΣΤΕΡΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "121 36",
"telephone" : "2105774505",
"address_name" : "ΠΕΛΑΣΓΙΑΣ 16 & ΘΗΒΩΝ -",
"workingHoursFriday" : "",
"latitude" : "38.0118675",
"longitude" : "23.6876971"
},
{
"id" : "1-7UDM-6450",
"type" : "germanos",
"area" : "ΗΡΑΚΛΕΙΟ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "713 06",
"telephone" : "2810325700",
"address_name" : "ΛΕΩΦ.ΚΝΩΣΣΟΥ 210",
"workingHoursFriday" : "",
"latitude" : "35.32641086",
"longitude" : "25.13839588"
},
{
"id" : "1-7UDM-1706",
"type" : "germanos",
"area" : "ΖΩΓΡΑΦΟΥ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "157 73",
"telephone" : "2107487853",
"address_name" : "ΠΑΠΑΓΟΥ 77 & ΤΡΑΥΛΑΝΤΩΝΗ 0",
"workingHoursFriday" : "",
"latitude" : "37.97801025",
"longitude" : "23.76959255"
},
{
"id" : "1-7UDM-7846",
"type" : "germanos",
"area" : "ΟΙΝΟΦΥΤΑ",
"county" : "ΒΟΙΩΤΙΑΣ",
"postalCode" : "320 11",
"telephone" : "2262032114",
"address_name" : "Λ.ΒΥΡΩΝΑ & ΜΙΑΟΥΛΗ 0",
"workingHoursFriday" : "",
"latitude" : "38.31010371",
"longitude" : "23.63791155"
},
{
"id" : "1-7UDM-7843",
"type" : "germanos",
"area" : "ΜΥΤΙΛΗΝΗ",
"county" : "ΛΕΣΒΟΥ",
"postalCode" : "811 00",
"telephone" : "2251020565",
"address_name" : "ΠΛ.ΚΩΝΣΤΑΝΤΙΝΟΥΠΟΛΕΩΣ 3",
"workingHoursFriday" : "",
"latitude" : "39.10344364",
"longitude" : "26.55524559"
},
{
"id" : "1-7UDM-7844",
"type" : "germanos",
"area" : "ΝΑΞΟΣ",
"county" : "ΚΥΚΛΑΔΩΝ",
"postalCode" : "843 00",
"telephone" : "2285022262",
"address_name" : "ΧΩΡΑ ΝΑΞΟΥ -",
"workingHoursFriday" : "",
"latitude" : "37.101493",
"longitude" : "25.381368"
},
{
"id" : "1-7UDM-1703",
"type" : "germanos",
"area" : "ΚΑΛΑΜΑΤΑ",
"county" : "ΜΕΣΣΗΝΙΑΣ",
"postalCode" : "241 00",
"telephone" : "2721022212",
"address_name" : "ΑΡΙΣΤΟΜΕΝΟΥΣ 21",
"workingHoursFriday" : "",
"latitude" : "37.04088601",
"longitude" : "22.11181008"
},
{
"id" : "1-4XJ682I",
"type" : "germanos",
"area" : "ΛΗΜΝΟΣ",
"county" : "ΛΕΣΒΟΥ",
"postalCode" : "814 00",
"telephone" : "2102891000",
"address_name" : "1ο ΧΛΜ ΜΥΡΙΝΑΣ-ΜΟΥΝΔΡΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-7842",
"type" : "germanos",
"area" : "ΜΟΙΡΕΣ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "704 00",
"telephone" : "2892025301",
"address_name" : "25ΗΣ ΜΑΡΤΙΟΥ 186",
"workingHoursFriday" : "",
"latitude" : "35.05099001",
"longitude" : "24.87489646"
},
{
"id" : "1-7UDM-4129",
"type" : "germanos",
"area" : "ΠΕΙΡΑΙΑΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "185 35",
"telephone" : "2104118101",
"address_name" : "ΗΡΩΩΝ ΠΟΛΥΤΕΧΝΕΙΟΥ 46 & ΠΛΑΤΩΝΟΣ 5",
"workingHoursFriday" : "",
"latitude" : "37.94167448",
"longitude" : "23.64587531"
},
{
"id" : "1-4XJ6834",
"type" : "germanos",
"area" : "ΓΙΑΝΝΙΤΣΑ",
"county" : "ΠΕΛΛΗΣ",
"postalCode" : "581 00",
"telephone" : "2102891000",
"address_name" : "20ΗΣ ΟΚΤΩΒΡΙΟΥ & ΔΟΥΒΑΤΖΗ 0",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-1XZD5C",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 21",
"telephone" : "2311808725",
"address_name" : "ΑΛΕΞΑΝΔΡΟΥΠΟΛΕΩΣ 10",
"workingHoursFriday" : "",
"latitude" : "40.63545632",
"longitude" : "22.94732189"
},
{
"id" : "1-7UDM-4127",
"type" : "germanos",
"area" : "ΝΕΑ ΕΡΥΘΡΑΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "146 71",
"telephone" : "2106251118",
"address_name" : "ΧΑΡ. ΤΡΙΚΟΥΠΗ 135",
"workingHoursFriday" : "",
"latitude" : "38.08852531",
"longitude" : "23.81490316"
},
{
"id" : "1-7UDM-4125",
"type" : "germanos",
"area" : "ΑΓΙΑ ΠΑΡΑΣΚΕΥΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "153 43",
"telephone" : "2106008975",
"address_name" : "ΛΕΩΦΟΡΟΣ ΜΕΣΟΓΕΙΩΝ 505",
"workingHoursFriday" : "",
"latitude" : "38.01362815",
"longitude" : "23.83187003"
},
{
"id" : "1-7UDM-7076",
"type" : "germanos",
"area" : "ΑΓΙΟΣ ΙΩΑΝΝΗΣ ΡΕΝΤΗΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "182 33",
"telephone" : "2111804712",
"address_name" : "ΛΕΩΦΟΡΟΣ ΚΗΦΙΣΟΥ 161",
"workingHoursFriday" : "",
"latitude" : "37.95979218",
"longitude" : "23.67541343"
},
{
"id" : "1-7UDM-7311",
"type" : "germanos",
"area" : "ΑΙΓΑΛΕΩ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "123 51",
"telephone" : "2105699030",
"address_name" : "ΕΛ. ΒΕΝΙΖΕΛΟΥ 106",
"workingHoursFriday" : "",
"latitude" : "37.98951881",
"longitude" : "23.65925368"
},
{
"id" : "1-7UDM-4126",
"type" : "germanos",
"area" : "ΑΓΙΟΙ ΑΝΑΡΓΥΡΟΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "135 62",
"telephone" : "2102310070",
"address_name" : "ΛΕΩΦΟΡΟΣ ΔΗΜΟΚΡΑΤΙΑΣ 266",
"workingHoursFriday" : "",
"latitude" : "38.04401983",
"longitude" : "23.72779768"
},
{
"id" : "1-7UDM-7312",
"type" : "germanos",
"area" : "ΑΜΠΕΛΟΚΗΠΟΙ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "561 21",
"telephone" : "2310730926",
"address_name" : "ΕΛ.ΒΕΝΙΖΕΛΟΥ 75",
"workingHoursFriday" : "",
"latitude" : "40.6529549",
"longitude" : "22.92177088"
},
{
"id" : "1-J49DV",
"type" : "germanos",
"area" : "ΑΓΙΟΣ ΜΕΛΕΤΙΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "104 43",
"telephone" : "2105122212",
"address_name" : "ΒΟΡΕΙΟΥ ΗΠΕΙΡΟΥ 155 & ΑΓΧΙΑΛΟΥ -",
"workingHoursFriday" : "",
"latitude" : "38.00127056",
"longitude" : "23.71887952"
},
{
"id" : "1-7UDM-4124",
"type" : "germanos",
"area" : "ΚΟΡΥΔΑΛΛΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "181 20",
"telephone" : "2104945285",
"address_name" : "ΤΑΞΙΑΡΧΩΝ 44",
"workingHoursFriday" : "",
"latitude" : "37.97827688",
"longitude" : "23.65171774"
},
{
"id" : "1-7UDM-937",
"type" : "germanos",
"area" : "ΕΔΕΣΣΑ",
"county" : "ΠΕΛΛΗΣ",
"postalCode" : "582 00",
"telephone" : "2381026399",
"address_name" : "ΠΛΑΤΕΙΑ ΩΡΟΛΟΓΙΟΥ 1",
"workingHoursFriday" : "",
"latitude" : "40.80239796",
"longitude" : "22.05068718"
},
{
"id" : "1-7UDM-7071",
"type" : "germanos",
"area" : "ΣΚΙΑΘΟΣ",
"county" : "ΜΑΓΝΗΣΙΑΣ",
"postalCode" : "370 02",
"telephone" : "2427029000",
"address_name" : "ΠΑΠΑΔΙΑΜΑΝΤΗ (ΑΛΩΝΙΑ) -",
"workingHoursFriday" : "",
"latitude" : "39.16258032",
"longitude" : "23.48532951"
},
{
"id" : "1-7UDM-7581",
"type" : "germanos",
"area" : "ΣΤΑΥΡΟΥΠΟΛΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "564 30",
"telephone" : "2310643703",
"address_name" : "Μ.ΑΛΕΞΑΝΔΡΟΥ Α ΠΑΡΟΔΟΣ 41",
"workingHoursFriday" : "",
"latitude" : "40.66214086",
"longitude" : "22.93027855"
},
{
"id" : "1-7UDM-7449",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "567 28",
"telephone" : "2310610253",
"address_name" : "ΒΕΝΙΖΕΛΟΥ ΕΛΕΥΘΕΡΙΟΥ 86",
"workingHoursFriday" : "",
"latitude" : "40.65158687",
"longitude" : "22.94011773"
},
{
"id" : "1-7UDM-7711",
"type" : "germanos",
"area" : "ΝΙΚΑΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "184 51",
"telephone" : "2104250091",
"address_name" : "ΠΛ.ΔΗΜΟΚΡΑΤΙΑΣ 9",
"workingHoursFriday" : "",
"latitude" : "37.97552302",
"longitude" : "23.6407318"
},
{
"id" : "1-7UDM-7585",
"type" : "germanos",
"area" : "ΛΑΡΙΣΑ",
"county" : "ΛΑΡΙΣΗΣ",
"postalCode" : "412 22",
"telephone" : "2410252742",
"address_name" : "ΟΛΥΜΠΟΥ 1",
"workingHoursFriday" : "",
"latitude" : "39.640645",
"longitude" : "22.418654"
},
{
"id" : "1-7UDM-7446",
"type" : "germanos",
"area" : "ΠΑΛΛΗΝΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "153 51",
"telephone" : "2106032500",
"address_name" : "Λ.ΜΑΡΑΘΩΝΟΣ 86",
"workingHoursFriday" : "",
"latitude" : "38.0037336",
"longitude" : "23.88136036"
},
{
"id" : "1-7UDM-7587",
"type" : "germanos",
"area" : "ΧΑΝΙΑ",
"county" : "ΧΑΝΙΩΝ",
"postalCode" : "731 34",
"telephone" : "2821020281",
"address_name" : "Ν. ΠΛΑΣΤΗΡΑ 29",
"workingHoursFriday" : "",
"latitude" : "35.51282308",
"longitude" : "24.02028221"
},
{
"id" : "1-1NM76H",
"type" : "germanos",
"area" : "ΒΑΡΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "166 72",
"telephone" : "2108979024",
"address_name" : "23οΧΛΜ Λ.ΠΑΪΖΗ -",
"workingHoursFriday" : "",
"latitude" : "37.8338887",
"longitude" : "23.79927516"
},
{
"id" : "1-7UDM-7448",
"type" : "germanos",
"area" : "ΠΤΟΛΕΜΑΙΔΑ",
"county" : "ΚΟΖΑΝΗΣ",
"postalCode" : "502 00",
"telephone" : "2463055777",
"address_name" : "ΝΟΣΟΚΟΜΕΙΟΥ 7",
"workingHoursFriday" : "",
"latitude" : "40.51220405",
"longitude" : "21.68015224"
},
{
"id" : "1-7UDM-7586",
"type" : "germanos",
"area" : "ΚΑΛΑΜΑΡΙΑ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "551 32",
"telephone" : "2310454584",
"address_name" : "ΠΑΣΣΑΛΙΔΗ 64",
"workingHoursFriday" : "",
"latitude" : "40.58080039",
"longitude" : "22.95097699"
},
{
"id" : "1-4XJ6827",
"type" : "germanos",
"area" : "ΑΝΑΒΥΣΣΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "190 13",
"telephone" : "2102891000",
"address_name" : "Λ.ΚΑΡΑΜΑΝΛΗ 20",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-4XJ681V",
"type" : "germanos",
"area" : "ΚΑΛΥΜΝΟΣ",
"county" : "ΔΩΔΕΚΑΝΗΣΟΥ",
"postalCode" : "852 00",
"telephone" : "2102891000",
"address_name" : "ΠΛΑΤΕΙΑ ΣΤΡΑΤΑ 0",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-1710",
"type" : "germanos",
"area" : "ΜΥΤΙΛΗΝΗ",
"county" : "ΛΕΣΒΟΥ",
"postalCode" : "811 00",
"telephone" : "2251026660",
"address_name" : "ΛΟΧ. ΒΟΥΤΣΙΚΑ 3",
"workingHoursFriday" : "",
"latitude" : "39.10789321",
"longitude" : "26.55536859"
},
{
"id" : "1-7UDM-7588",
"type" : "germanos",
"area" : "ΠΑΤΡΑ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "262 25",
"telephone" : "2610273653",
"address_name" : "ΓΟΥΝΑΡΗ 62 & ΑΘ.ΔΙΑΚΟΥ 30",
"workingHoursFriday" : "",
"latitude" : "38.2424278",
"longitude" : "21.73507609"
},
{
"id" : "1-7UDM-7441",
"type" : "germanos",
"area" : "ΑΣΠΡΟΠΥΡΓΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "193 00",
"telephone" : "2105576876",
"address_name" : "ΛΕΩΦ. ΔΗΜΟΚΡΑΤΙΑΣ 67",
"workingHoursFriday" : "",
"latitude" : "38.04603627",
"longitude" : "23.58542958"
},
{
"id" : "1-7UDM-1447",
"type" : "germanos",
"area" : "ΚΑΡΔΙΤΣΑ",
"county" : "ΚΑΡΔΙΤΣΗΣ",
"postalCode" : "431 00",
"telephone" : "2441071099",
"address_name" : "ΜΠΛΑΤΣΟΥΚΑ 13",
"workingHoursFriday" : "",
"latitude" : "39.36562366",
"longitude" : "21.91986056"
},
{
"id" : "1-7UDM-1515",
"type" : "germanos",
"area" : "ΑΛΕΞΑΝΔΡΟΥΠΟΛΗ",
"county" : "ΕΒΡΟΥ",
"postalCode" : "681 00",
"telephone" : "2551056160",
"address_name" : "ΙΩΑΚΕΙΜ ΚΑΒΥΡΗ 5",
"workingHoursFriday" : "",
"latitude" : "40.84839193",
"longitude" : "25.87213036"
},
{
"id" : "1-7UDM-1717",
"type" : "germanos",
"area" : "ΜΟΣΧΑΤΟ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "183 45",
"telephone" : "2104814534",
"address_name" : "ΜΑΚΡΥΓΙΑΝΝΗ 117",
"workingHoursFriday" : "",
"latitude" : "37.95326104",
"longitude" : "23.67944188"
},
{
"id" : "1-7UDM-1714",
"type" : "germanos",
"area" : "ΑΙΓΑΛΕΩ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "122 41",
"telephone" : "2105312077",
"address_name" : "ΠΑΝΟΡΜΟΥ & ΙΕΡΑ ΟΔΟΣ 252",
"workingHoursFriday" : "",
"latitude" : "37.99213855",
"longitude" : "23.67926881"
},
{
"id" : "1-7UDM-1713",
"type" : "germanos",
"area" : "ΚΕΡΑΤΣΙΝΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "187 56",
"telephone" : "2104614837",
"address_name" : "ΠΑΠΑΝΙΚΟΛΗ 32",
"workingHoursFriday" : "",
"latitude" : "37.95806742",
"longitude" : "23.62626533"
},
{
"id" : "1-7UDM-1711",
"type" : "germanos",
"area" : "ΓΙΑΝΝΙΤΣΑ",
"county" : "ΠΕΛΛΗΣ",
"postalCode" : "581 00",
"telephone" : "2382082189",
"address_name" : "ΕΛ. ΒΕΝΙΖΕΛΟΥ 109",
"workingHoursFriday" : "",
"latitude" : "40.791484",
"longitude" : "22.411337"
},
{
"id" : "1-45145G1",
"type" : "germanos",
"area" : "ΛΑΜΙΑ",
"county" : "ΦΘΙΩΤΙΔΟΣ",
"postalCode" : "351 00",
"telephone" : "2231036222",
"address_name" : "ΡΗΓΑ ΦΕΡΑΙΟΥ 25",
"workingHoursFriday" : "",
"latitude" : "38.90002918",
"longitude" : "22.43315202"
},
{
"id" : "1-7UDM-7309",
"type" : "germanos",
"area" : "ΣΠΑΡΤΗ",
"county" : "ΛΑΚΩΝΙΑΣ",
"postalCode" : "231 00",
"telephone" : "2731089160",
"address_name" : "ΔΩΡΙΕΩΝ ΚΑΙ ΟΡΘΙΑΣ ΑΡΤΕΜΙΔΟΣ 0",
"workingHoursFriday" : "",
"latitude" : "37.07717021",
"longitude" : "22.43635638"
},
{
"id" : "1-7UDM-4116",
"type" : "germanos",
"area" : "ΚΟΜΟΤΗΝΗ",
"county" : "ΡΟΔΟΠΗΣ",
"postalCode" : "691 00",
"telephone" : "2531030013",
"address_name" : "ΟΡΦΕΩΣ -",
"workingHoursFriday" : "",
"latitude" : "41.11882666",
"longitude" : "25.40331349"
},
{
"id" : "1-7UDM-7851",
"type" : "germanos",
"area" : "ΘΗΒΑ",
"county" : "ΒΟΙΩΤΙΑΣ",
"postalCode" : "322 00",
"telephone" : "2262081262",
"address_name" : "ΕΠΑΜΕΙΝΩΝΔΑ 6",
"workingHoursFriday" : "",
"latitude" : "38.31602704",
"longitude" : "23.31814901"
},
{
"id" : "1-7UDM-4113",
"type" : "germanos",
"area" : "ΑΡΓΟΣ",
"county" : "ΑΡΓΟΛΙΔΟΣ",
"postalCode" : "212 00",
"telephone" : "2751069529",
"address_name" : "4ο ΧΛΜ ΑΡΓΟΥΣ ΝΑΥΠΛΙΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "37.62687529",
"longitude" : "22.74080608"
},
{
"id" : "1-7UDM-7300",
"type" : "germanos",
"area" : "ΑΜΥΝΤΑΙΟ",
"county" : "ΦΛΩΡΙΝΗΣ",
"postalCode" : "532 00",
"telephone" : "2386020175",
"address_name" : "ΜΕΓΑΛΟΥ ΑΛΕΞΑΝΔΡΟΥ 7",
"workingHoursFriday" : "",
"latitude" : "40.69007631",
"longitude" : "21.67887643"
},
{
"id" : "1-7UDM-7160",
"type" : "germanos",
"area" : "ΣΠΕΤΣΕΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "180 50",
"telephone" : "2298029408",
"address_name" : "ΠΕΡΙΟΧΗ ΑΓΟΡΑ -",
"workingHoursFriday" : "",
"latitude" : "37.26859448",
"longitude" : "23.1542391"
},
{
"id" : "1-7UDM-6577",
"type" : "germanos",
"area" : "ΠΕΙΡΑΙΑΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "185 34",
"telephone" : "2104222255",
"address_name" : "ΓΡ. ΛΑΜΠΡΑΚΗ 107",
"workingHoursFriday" : "",
"latitude" : "40218714",
"longitude" : "37.94064056"
},
{
"id" : "1-7UDM-6672",
"type" : "germanos",
"area" : "ΑΛΙΜΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "174 55",
"telephone" : "2109844799",
"address_name" : "ΘΟΥΚΥΔΙΔΟΥ 50",
"workingHoursFriday" : "",
"latitude" : "37.91231574",
"longitude" : "23.71280658"
},
{
"id" : "1-7UDM-157",
"type" : "germanos",
"area" : "ΠΑΛΛΗΝΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "153 51",
"telephone" : "2106669999",
"address_name" : "Λ.ΜΑΡΑΘΩΝΟΣ 49",
"workingHoursFriday" : "",
"latitude" : "38.00380192",
"longitude" : "23.87838286"
},
{
"id" : "1-7UDM-7827",
"type" : "germanos",
"area" : "ΑΜΠΕΛΟΚΗΠΟΙ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "561 23",
"telephone" : "2310541250",
"address_name" : "Γ. ΚΟΛΩΝΙΑΡΗ 120",
"workingHoursFriday" : "",
"latitude" : "40.64960426",
"longitude" : "22.9313394"
},
{
"id" : "1-7UDM-1760",
"type" : "germanos",
"area" : "ΝΕΟΣ ΚΟΣΜΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "117 45",
"telephone" : "2109212680",
"address_name" : "Α.ΦΡΑΤΖΗ 4 & ΚΑΛΛΙΡΟΗΣ -",
"workingHoursFriday" : "",
"latitude" : "37.97520959",
"longitude" : "23.72600699"
},
{
"id" : "1-7UDM-7828",
"type" : "germanos",
"area" : "ΔΡΑΜΑ",
"county" : "ΔΡΑΜΑΣ",
"postalCode" : "661 00",
"telephone" : "2521023240",
"address_name" : "ΕΙΡΗΝΗΣ 2",
"workingHoursFriday" : "",
"latitude" : "41.150769",
"longitude" : "24.146589"
},
{
"id" : "1-7UDM-6578",
"type" : "germanos",
"area" : "ΝΑΥΠΛΙΟ",
"county" : "ΑΡΓΟΛΙΔΟΣ",
"postalCode" : "211 00",
"telephone" : "2752022733",
"address_name" : "ΑΡΓΟΥΣ 26",
"workingHoursFriday" : "",
"latitude" : "37.5687081",
"longitude" : "22.80679958"
},
{
"id" : "1-7UDM-159",
"type" : "germanos",
"area" : "ΚΟΡΩΠΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "194 00",
"telephone" : "2106621514",
"address_name" : "ΛΕΩΦΟΡΟΣ ΒΑΣΙΛΕΩΣ ΚΩΝΣΤΑΝΤΙΝΟΥ 168-170",
"workingHoursFriday" : "",
"latitude" : "37.91046489",
"longitude" : "23.86249022"
},
{
"id" : "1-7UDM-6673",
"type" : "germanos",
"area" : "ΑΡΓΥΡΟΥΠΟΛΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "164 52",
"telephone" : "2109931299",
"address_name" : "ΓΕΡΟΥΛΑΝΟΥ ΜΑΡΙΝΟΥ 64",
"workingHoursFriday" : "",
"latitude" : "37.90642672",
"longitude" : "23.74996254"
},
{
"id" : "1-7UDM-7533",
"type" : "germanos",
"area" : "ΛΙΤΟΧΩΡΟ",
"county" : "ΠΙΕΡΙΑΣ",
"postalCode" : "602 00",
"telephone" : "2352082941",
"address_name" : "28ΗΣ ΟΚΤΩΒΡΙΟΥ 1",
"workingHoursFriday" : "",
"latitude" : "79815665",
"longitude" : "40.49832"
},
{
"id" : "1-7UDM-6670",
"type" : "germanos",
"area" : "ΧΙΟΣ",
"county" : "ΧΙΟΥ",
"postalCode" : "821 00",
"telephone" : "2271041080",
"address_name" : "ΛΕΩΦ.ΕΝΩΣΕΩΣ 48",
"workingHoursFriday" : "",
"latitude" : "38.35249895",
"longitude" : "26.14345967"
},
{
"id" : "1-7UDM-7430",
"type" : "germanos",
"area" : "ΒΑΣΙΛΙΚΟ",
"county" : "ΕΥΒΟΙΑΣ",
"postalCode" : "340 02",
"telephone" : "2221050550",
"address_name" : "ΙΩΑΝΝΟΥ ΡΩΣΟΥ -",
"workingHoursFriday" : "",
"latitude" : "38.4256417",
"longitude" : "23.67215668"
},
{
"id" : "1-7UDM-7534",
"type" : "germanos",
"area" : "ΔΡΑΠΕΤΣΩΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "186 48",
"telephone" : "2104613303",
"address_name" : "ΜΙΣΑΗΛΙΔΗ 2-4",
"workingHoursFriday" : "",
"latitude" : "37.94826126",
"longitude" : "23.62820971"
},
{
"id" : "1-7UDM-7726",
"type" : "germanos",
"area" : "ΚΗΦΙΣΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "145 62",
"telephone" : "2108081166",
"address_name" : "ΚΑΣΣΑΒΕΤΗ 7",
"workingHoursFriday" : "",
"latitude" : "38.07218645",
"longitude" : "23.81283445"
},
{
"id" : "1-7UDM-7727",
"type" : "germanos",
"area" : "ΜΑΡΟΥΣΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "151 22",
"telephone" : "2106300280",
"address_name" : "ΑΝΔΡΕΑ ΠΑΠΑΝΔΡΕΟΥ 35",
"workingHoursFriday" : "",
"latitude" : "38.04490114",
"longitude" : "23.7926252"
},
{
"id" : "1-730QOB",
"type" : "germanos",
"area" : "ΑΙΓΙΟ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "251 00",
"telephone" : "2691020180",
"address_name" : "ΚΟΡΙΝΘΟΥ & ΦΤΕΡΗΣ -",
"workingHoursFriday" : "",
"latitude" : "38.25082141",
"longitude" : "22.07727517"
},
{
"id" : "1-4SYPWGR",
"type" : "germanos",
"area" : "ΠΕΡΙΣΤΕΡΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "121 34",
"telephone" : "2105777333",
"address_name" : "ΕΘΝΙΚΗΣ ΑΝΤΙΣΤΑΣΕΩΣ 8",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-7434",
"type" : "germanos",
"area" : "ΗΡΑΚΛΕΙΟ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "715 00",
"telephone" : "2810542800",
"address_name" : "ΠΑΝΕΠΙΣΤΗΜΙΟΥ 11",
"workingHoursFriday" : "",
"latitude" : "40.75682331",
"longitude" : "23.03686569"
},
{
"id" : "1-4I3GR6S",
"type" : "germanos",
"area" : "ΑΓΡΙΝΙΟ",
"county" : "ΑΙΤΩΛΟΑΚΑΡΝΑΝΙΑΣ",
"postalCode" : "301 00",
"telephone" : "2641102359",
"address_name" : "ΧΑΡ.ΤΡΙΚΟΥΠΗ 45",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-7725",
"type" : "germanos",
"area" : "ΑΡΓΟΣ ΟΡΕΣΤΙΚΟ",
"county" : "ΚΑΣΤΟΡΙΑΣ",
"postalCode" : "522 00",
"telephone" : "2467043540",
"address_name" : "ΔΙΟΙΚΗΤΗΡΙΟΥ 19",
"workingHoursFriday" : "",
"latitude" : "40.450099",
"longitude" : "21.259811"
},
{
"id" : "1-7UDM-6570",
"type" : "germanos",
"area" : "ΒΡΙΛΗΣΣΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "152 35",
"telephone" : "2108101141",
"address_name" : "Λ.ΠΕΝΤΕΛΗΣ 45",
"workingHoursFriday" : "",
"latitude" : "38.04060157",
"longitude" : "23.83129472"
},
{
"id" : "1-7UDM-7722",
"type" : "germanos",
"area" : "ΓΑΛΑΤΣΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "111 46",
"telephone" : "2102138722",
"address_name" : "ΤΡΑΛΛΕΩΝ 150",
"workingHoursFriday" : "",
"latitude" : "38.01922811",
"longitude" : "23.75506669"
},
{
"id" : "1-7UDM-1994",
"type" : "germanos",
"area" : "ΠΤΟΛΕΜΑΙΔΑ",
"county" : "ΚΟΖΑΝΗΣ",
"postalCode" : "502 00",
"telephone" : "2463081670",
"address_name" : "ΠΑΥΛΙΔΗ -ΑΔΑΜΟΠΟΥΛΟΥ 8 & ΠΑΡΟΔΟΣ Π ΑΔΑΜΟΠΟΥΛΟΥ 1",
"workingHoursFriday" : "",
"latitude" : "40.51561689",
"longitude" : "21.68309428"
},
{
"id" : "1-7UDM-6572",
"type" : "germanos",
"area" : "ΕΡΕΤΡΙΑ",
"county" : "ΕΥΒΟΙΑΣ",
"postalCode" : "340 08",
"telephone" : "2229061664",
"address_name" : "ΦΙΛΟΣΟΦΟΥ ΜΕΝΕΔΗΜΟΥ -",
"workingHoursFriday" : "",
"latitude" : "38.39240906",
"longitude" : "23.79168327"
},
{
"id" : "1-2W2X8YZ",
"type" : "germanos",
"area" : "ΜΟΛΑΟΙ",
"county" : "ΛΑΚΩΝΙΑΣ",
"postalCode" : "230 52",
"telephone" : "2732029129",
"address_name" : "ΚΕΝΤΡΙΚΗ ΠΛΑΤΕΙΑ ΜΟΛΑΩΝ 0",
"workingHoursFriday" : "",
"latitude" : "36.80450627",
"longitude" : "22.85341164"
},
{
"id" : "1-7UDM-6380",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 29",
"telephone" : "2102891000",
"address_name" : "ΠΕΡΙΦ.ΟΔΟΣ ΘΕΣ/ΝΙΚΗΣ-ΚΟΜΒΟΣ ΕΥΚΑΡΠΙΑΣ 0",
"workingHoursFriday" : "",
"latitude" : "40.61716738",
"longitude" : "22.98377604"
},
{
"id" : "1-5HQP0S",
"type" : "germanos",
"area" : "ΜΑΚΡΑΚΩΜΗ",
"county" : "ΦΘΙΩΤΙΔΟΣ",
"postalCode" : "350 11",
"telephone" : "2236027112",
"address_name" : "ΠΑΥΛΟΥ ΜΠΑΚΟΓΙΑΝΝΗ 9",
"workingHoursFriday" : "",
"latitude" : "38.94157444",
"longitude" : "22.1157841"
},
{
"id" : "1-7UDM-155",
"type" : "germanos",
"area" : "ΛΑΥΡΙΟ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "195 00",
"telephone" : "2292060999",
"address_name" : "ΛΕΓΓΕΡΗ 1",
"workingHoursFriday" : "",
"latitude" : "37.71377",
"longitude" : "24.054249"
},
{
"id" : "1-7UDM-7332",
"type" : "germanos",
"area" : "ΧΑΛΚΙΔΙΚΗ",
"county" : "ΧΑΛΚΙΔΙΚΗΣ",
"postalCode" : "630 77",
"telephone" : "2374024102",
"address_name" : "ΚΑΣΣΑΝΔΡΕΙΑ -ΧΑΛΚΙΔΙΚΗΣ (ΕΜΠΟΡΙΚΟ ΚΕΝΤΡΟ) -",
"workingHoursFriday" : "",
"latitude" : "40.050885",
"longitude" : "23.413024"
},
{
"id" : "1-157GWF",
"type" : "germanos",
"area" : "ΠΟΛΙΧΝΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "565 33",
"telephone" : "2310588188",
"address_name" : "ΑΓΝ.ΣΤΡΑΤΙΩΤΟΥ 29 &ΧΡ. ΣΜΥΡΝΗΣ -",
"workingHoursFriday" : "",
"latitude" : "40.65960624",
"longitude" : "22.94450495"
},
{
"id" : "1-7UDM-7159",
"type" : "germanos",
"area" : "ΛΕΩΝΙΔΙΟ",
"county" : "ΑΡΚΑΔΙΑΣ",
"postalCode" : "223 00",
"telephone" : "2757029129",
"address_name" : "21ΗΣ ΙΑΝΟΥΑΡΊΟΥ 1949",
"workingHoursFriday" : "",
"latitude" : "37.16777571",
"longitude" : "22.86214497"
},
{
"id" : "1-E98PD",
"type" : "germanos",
"area" : "ΗΡΑΚΛΕΙΟ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "713 04",
"telephone" : "2810370670",
"address_name" : "ΧΡ.ΞΥΛΟΥΡΗ 27",
"workingHoursFriday" : "",
"latitude" : "35.32791237",
"longitude" : "25.11138802"
},
{
"id" : "1-2HI7ZW6",
"type" : "germanos",
"area" : "ΙΛΙΟΝ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "131 21",
"telephone" : "2102620759",
"address_name" : "ΙΔΟΜΕΝΕΩΣ 53",
"workingHoursFriday" : "",
"latitude" : "38.02958871",
"longitude" : "23.69923004"
},
{
"id" : "1-7UDM-7821",
"type" : "germanos",
"area" : "ΣΤΑΥΡΟΣ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "570 14",
"telephone" : "2397065569",
"address_name" : "ΣΤΑΥΡΟΣ 0",
"workingHoursFriday" : "",
"latitude" : "40.664901",
"longitude" : "23.698969"
},
{
"id" : "1-48QRK1",
"type" : "germanos",
"area" : "ΠΕΤΡΟΥΠΟΛΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "132 31",
"telephone" : "2105017020",
"address_name" : "ΛΕΩΦ. 25ΗΣ ΜΑΡΤΙΟΥ 135 & ΑΓ. ΛΑΥΡΑΣ -",
"workingHoursFriday" : "",
"latitude" : "38.03962711",
"longitude" : "23.6899837"
},
{
"id" : "1-7UDM-7820",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "112 51",
"telephone" : "2108250833",
"address_name" : "ΑΡΙΣΤΟΤΕΛΟΥΣ 133",
"workingHoursFriday" : "",
"latitude" : "95738631",
"longitude" : "37.99650447"
},
{
"id" : "1-JZNUG3",
"type" : "germanos",
"area" : "ΒΟΝΙΤΣΑ",
"county" : "ΑΙΤΩΛΟΑΚΑΡΝΑΝΙΑΣ",
"postalCode" : "300 02",
"telephone" : "2643029020",
"address_name" : "ΕΛΕΥΘΕΡΙΟΥ ΒΕΝΙΖΕΛΟΥ 53",
"workingHoursFriday" : "",
"latitude" : "38.914211",
"longitude" : "20.890085"
},
{
"id" : "1-7UDM-7825",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 44",
"telephone" : "2310945695",
"address_name" : "ΑΛ.ΠΑΠΑΝΑΣΤΑΣΙΟΥ 88",
"workingHoursFriday" : "",
"latitude" : "40.60847216",
"longitude" : "22.96599733"
},
{
"id" : "1-7UDM-7824",
"type" : "germanos",
"area" : "ΤΡΙΚΑΛΑ",
"county" : "ΤΡΙΚΑΛΩΝ",
"postalCode" : "421 00",
"telephone" : "2431077511",
"address_name" : "ΑΣΚΛΗΠΙΟΥ 15",
"workingHoursFriday" : "",
"latitude" : "39.5517658",
"longitude" : "21.76613272"
},
{
"id" : "1-7UDM-7335",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "115 23",
"telephone" : "2106426831",
"address_name" : "Λ.ΑΛΕΞΑΝΔΡΑΣ 215",
"workingHoursFriday" : "",
"latitude" : "37.98688326",
"longitude" : "23.75968211"
},
{
"id" : "1-7UDM-7838",
"type" : "germanos",
"area" : "ΙΩΑΝΝΙΝΑ",
"county" : "ΙΩΑΝΝΙΝΩΝ",
"postalCode" : "452 21",
"telephone" : "2651075120",
"address_name" : "ΜΠΙΖΑΝΙΟΥ 38",
"workingHoursFriday" : "",
"latitude" : "40707398",
"longitude" : "39.66165698"
},
{
"id" : "1-7UDM-147",
"type" : "germanos",
"area" : "ΧΑΛΑΝΔΡΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "152 33",
"telephone" : "2106856999",
"address_name" : "Λ.ΠΕΝΤΕΛΗΣ 7-9",
"workingHoursFriday" : "",
"latitude" : "38.02286017",
"longitude" : "23.80193613"
},
{
"id" : "1-23FXAX",
"type" : "germanos",
"area" : "ΚΥΘΗΡΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "801 00",
"telephone" : "2736031429",
"address_name" : "ΑΝΩ ΛΙΒΑΔΙ -",
"workingHoursFriday" : "",
"latitude" : "36.14965472",
"longitude" : "22.98789229"
},
{
"id" : "1-2ZWE6OY",
"type" : "germanos",
"area" : "ΑΣΠΡΟΒΑΛΤΑ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "570 21",
"telephone" : "2397027332",
"address_name" : "ΕΓΝΑΤΙΑΣ 4",
"workingHoursFriday" : "",
"latitude" : "40.7215525",
"longitude" : "23.70738686"
},
{
"id" : "1-7UDM-7633",
"type" : "germanos",
"area" : "ΦΛΩΡΙΝΑ",
"county" : "ΦΛΩΡΙΝΗΣ",
"postalCode" : "531 00",
"telephone" : "2385023887",
"address_name" : "4ο ΧΙΛ.Ε.Ο ΦΛΩΡΙΝΑΣ-ΘΕΣ/ΝΙΚΗΣ 0",
"workingHoursFriday" : "",
"latitude" : "40.78229867",
"longitude" : "21.40982807"
},
{
"id" : "1-7UDM-7635",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "116 31",
"telephone" : "2105233443",
"address_name" : "ΚΑΦΑΝΤΑΡΗ 8",
"workingHoursFriday" : "",
"latitude" : "37.95677328",
"longitude" : "23.73599391"
},
{
"id" : "1-7UDM-6587",
"type" : "germanos",
"area" : "ΠΤΟΛΕΜΑΙΔΑ",
"county" : "ΚΟΖΑΝΗΣ",
"postalCode" : "502 00",
"telephone" : "2463055555",
"address_name" : "25ης ΜΑΡΤΙΟΥ 36",
"workingHoursFriday" : "",
"latitude" : "40.52433914",
"longitude" : "21.68329375"
},
{
"id" : "1-7UDM-7637",
"type" : "germanos",
"area" : "ΝΕΑ ΜΑΚΡΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "190 05",
"telephone" : "2294094212",
"address_name" : "Λ. ΜΑΡΑΘΩΝΟΣ 50",
"workingHoursFriday" : "",
"latitude" : "38.08208223",
"longitude" : "23.97926861"
},
{
"id" : "1-TY1XGX",
"type" : "germanos",
"area" : "ΚΑΛΥΒΕΣ ΑΠΟΚΟΡΩΝΟΥ",
"county" : "ΧΑΝΙΩΝ",
"postalCode" : "730 03",
"telephone" : "2825031292",
"address_name" : "Ο.Τ. 158 ΘΕΣΗ ΑΓΙΟΣ ΑΝΤΩΝΙΟΣ -",
"workingHoursFriday" : "",
"latitude" : "35.45176073",
"longitude" : "24.17436194"
},
{
"id" : "1-7UDM-149",
"type" : "germanos",
"area" : "ΑΓΙΑ ΠΑΡΑΣΚΕΥΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "153 42",
"telephone" : "2106000024",
"address_name" : "ΑΓΙΟΥ ΙΩΑΝΝΟΥ 7",
"workingHoursFriday" : "",
"latitude" : "38.01301047",
"longitude" : "23.82182064"
},
{
"id" : "1-D6ZW9",
"type" : "germanos",
"area" : "ΒΕΡΟΙΑ",
"county" : "ΗΜΑΘΙΑΣ",
"postalCode" : "591 00",
"telephone" : "2331022838",
"address_name" : "ΤΕΡΜΑ ΠΙΕΡΙΩΝ -",
"workingHoursFriday" : "",
"latitude" : "40.5140253",
"longitude" : "22.20970594"
},
{
"id" : "1-7UDM-7639",
"type" : "germanos",
"area" : "ΑΛΕΞΑΝΔΡΟΥΠΟΛΗ",
"county" : "ΕΒΡΟΥ",
"postalCode" : "681 00",
"telephone" : "2551080580",
"address_name" : "Λ.ΔΗΜΟΚΡΑΤΙΑΣ 337",
"workingHoursFriday" : "",
"latitude" : "40.844731",
"longitude" : "25.873618"
},
{
"id" : "1-7UDM-6582",
"type" : "germanos",
"area" : "ΑΡΤΕΜΙΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "190 16",
"telephone" : "2294084490",
"address_name" : "ΛΕΩΦ.ΑΡΤΕΜΙΔΟΣ 70",
"workingHoursFriday" : "",
"latitude" : "37.97565587",
"longitude" : "24.00839613"
},
{
"id" : "1-7UDM-919",
"type" : "germanos",
"area" : "ΑΡΓΟΣ",
"county" : "ΑΡΓΟΛΙΔΟΣ",
"postalCode" : "212 00",
"telephone" : "2751023699",
"address_name" : "ΝΙΚΗΤΑΡΑ 10",
"workingHoursFriday" : "",
"latitude" : "37.63410685",
"longitude" : "22.72979955"
},
{
"id" : "1-7UDM-7736",
"type" : "germanos",
"area" : "ΔΡΑΜΑ",
"county" : "ΔΡΑΜΑΣ",
"postalCode" : "661 00",
"telephone" : "2521055300",
"address_name" : "ΛΑΜΠΡΙΑΝΙΔΟΥ 12",
"workingHoursFriday" : "",
"latitude" : "41.14463996",
"longitude" : "24.12549181"
},
{
"id" : "1-7UDM-6581",
"type" : "germanos",
"area" : "ΚΑΡΠΕΝΗΣΙ",
"county" : "ΕΥΡΥΤΑΝΙΑΣ",
"postalCode" : "361 00",
"telephone" : "2237022121",
"address_name" : "ΖΗΝΟΠΟΥΛΟΥ 32",
"workingHoursFriday" : "",
"latitude" : "38.91230247",
"longitude" : "21.79597236"
},
{
"id" : "1-7UDM-916",
"type" : "germanos",
"area" : "ΚΡΑΝΙΔΙ",
"county" : "ΑΡΓΟΛΙΔΟΣ",
"postalCode" : "213 00",
"telephone" : "2754021299",
"address_name" : "ΜΕΤΑΜΟΡΦΩΣΕΩΣ 3-5",
"workingHoursFriday" : "",
"latitude" : "37.378777",
"longitude" : "23.159695"
},
{
"id" : "1-7UDM-7737",
"type" : "germanos",
"area" : "ΣΕΡΡΕΣ",
"county" : "ΣΕΡΡΩΝ",
"postalCode" : "621 00",
"telephone" : "2321062498",
"address_name" : "ΜΕΡΑΡΧΙΑΣ 25",
"workingHoursFriday" : "",
"latitude" : "41.08894335",
"longitude" : "23.54894261"
},
{
"id" : "1-7UDM-6580",
"type" : "germanos",
"area" : "ΠΑΤΡΑ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "262 21",
"telephone" : "2610270353",
"address_name" : "ΜΑΙΖΩΝΟΣ 106",
"workingHoursFriday" : "",
"latitude" : "38.24554627",
"longitude" : "21.73356318"
},
{
"id" : "1-38WBE4Z",
"type" : "germanos",
"area" : "ΜΕΛΙΚΗ",
"county" : "ΗΜΑΘΙΑΣ",
"postalCode" : "590 31",
"telephone" : "2331081532",
"address_name" : "ΚΕΝΤΡΙΚΗΣ 22",
"workingHoursFriday" : "",
"latitude" : "40.5202316",
"longitude" : "22.39585574"
},
{
"id" : "1-7UDM-1872",
"type" : "germanos",
"area" : "ΑΜΑΛΙΑΔΑ",
"county" : "ΗΛΕΙΑΣ",
"postalCode" : "272 00",
"telephone" : "2622027599",
"address_name" : "ΟΘΩΝΟΣ ΑΜΑΛΙΑΣ 2",
"workingHoursFriday" : "",
"latitude" : "37.7953868",
"longitude" : "21.34491316"
},
{
"id" : "1-7UDM-7738",
"type" : "germanos",
"area" : "ΣΕΡΡΕΣ",
"county" : "ΣΕΡΡΩΝ",
"postalCode" : "621 00",
"telephone" : "2321058414",
"address_name" : "ΒΑΣ. ΒΑΣΙΛΕΙΟΥ & ΒΑΣ. ΑΛΕΞΑΝΔΡΟΥ -",
"workingHoursFriday" : "",
"latitude" : "41.0914043",
"longitude" : "23.54860287"
},
{
"id" : "1-7UDM-7731",
"type" : "germanos",
"area" : "ΤΡΙΠΟΛΗ",
"county" : "ΑΡΚΑΔΙΑΣ",
"postalCode" : "221 00",
"telephone" : "2710242100",
"address_name" : "ΒΑΣ. ΓΕΩΡΓΙΟΥ -",
"workingHoursFriday" : "",
"latitude" : "37.50963499",
"longitude" : "22.37352159"
},
{
"id" : "1-7UDM-143",
"type" : "germanos",
"area" : "ΚΗΦΙΣΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "145 62",
"telephone" : "2106232899",
"address_name" : "ΠΑΠΑΔΙΑΜΑΝΤΗ 8",
"workingHoursFriday" : "",
"latitude" : "38.07373664",
"longitude" : "23.81326785"
},
{
"id" : "1-7UDM-1870",
"type" : "germanos",
"area" : "ΠΥΡΓΟΣ",
"county" : "ΗΛΕΙΑΣ",
"postalCode" : "271 00",
"telephone" : "2621033499",
"address_name" : "ΘΕΜΙΣΤΟΚΛΕΟΥΣ 2",
"workingHoursFriday" : "",
"latitude" : "37.67465767",
"longitude" : "21.43700782"
},
{
"id" : "1-7UDM-7732",
"type" : "germanos",
"area" : "ΚΟΡΥΔΑΛΛΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "181 21",
"telephone" : "2104940031",
"address_name" : "ΑΘΗΝΑΣ 61",
"workingHoursFriday" : "",
"latitude" : "37.97622399",
"longitude" : "23.65168983"
},
{
"id" : "1-7UDM-144",
"type" : "germanos",
"area" : "ΝΕΑ ΙΩΝΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "142 31",
"telephone" : "2102718199",
"address_name" : "ΛΕΩΦΟΡΟΣ ΗΡΑΚΛΕΙΟΥ 245",
"workingHoursFriday" : "",
"latitude" : "38.04293124",
"longitude" : "23.75369537"
},
{
"id" : "1-D6ZW2",
"type" : "germanos",
"area" : "ΠΤΟΛΕΜΑΙΔΑ",
"county" : "ΚΟΖΑΝΗΣ",
"postalCode" : "502 00",
"telephone" : "2461095555",
"address_name" : "25ΗΣ ΜΑΡΤΙΟΥ 125",
"workingHoursFriday" : "",
"latitude" : "40.52433914",
"longitude" : "21.68329375"
},
{
"id" : "1-7UDM-7733",
"type" : "germanos",
"area" : "ΚΟΡΥΔΑΛΛΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "181 21",
"telephone" : "2104956600",
"address_name" : "ΤΑΞΙΑΡΧΩΝ 49",
"workingHoursFriday" : "",
"latitude" : "37.98308856",
"longitude" : "23.65598704"
},
{
"id" : "1-2U524VH",
"type" : "germanos",
"area" : "ΑΝΩ ΠΑΤΗΣΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "111 41",
"telephone" : "2102113400",
"address_name" : "ΠΑΤΗΣΙΩΝ 368Β",
"workingHoursFriday" : "",
"latitude" : "38.02157487",
"longitude" : "23.73581445"
},
{
"id" : "1-7UDM-6584",
"type" : "germanos",
"area" : "ΒΟΛΟΣ",
"county" : "ΜΑΓΝΗΣΙΑΣ",
"postalCode" : "382 21",
"telephone" : "24210-30000",
"address_name" : "Κ.ΚΑΡΤΑΛΗ 121",
"workingHoursFriday" : "",
"latitude" : "39.36250923",
"longitude" : "22.94856882"
},
{
"id" : "1-7UDM-913",
"type" : "germanos",
"area" : "ΝΑΥΠΛΙΟ",
"county" : "ΑΡΓΟΛΙΔΟΣ",
"postalCode" : "211 00",
"telephone" : "2752028399",
"address_name" : "ΠΟΛΥΖΩΙΔΗ 2",
"workingHoursFriday" : "",
"latitude" : "37.56634641",
"longitude" : "22.8014319"
},
{
"id" : "1-7UDM-142",
"type" : "germanos",
"area" : "ΜΑΡΟΥΣΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "151 24",
"telephone" : "2108022199",
"address_name" : "ΑΓΙΟΥ ΚΩΝ/ΝΟΥ 2-4 & ΝΕΡΑΤΖΙΩΤΙΣΣΗΣ -",
"workingHoursFriday" : "",
"latitude" : "38.05306995",
"longitude" : "23.80045052"
},
{
"id" : "1-7UDM-7228",
"type" : "germanos",
"area" : "ΣΑΝΤΟΡΙΝΗ",
"county" : "ΚΥΚΛΑΔΩΝ",
"postalCode" : "847 00",
"telephone" : "2286032353",
"address_name" : "ΜΕΣΑΡΙΑ ΣΑΝΤΟΡΙΝΗΣ -",
"workingHoursFriday" : "",
"latitude" : "38.00917477",
"longitude" : "23.73003126"
},
{
"id" : "1-4YCLMRO",
"type" : "germanos",
"area" : "ΠΕΙΡΑΙΑΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "185 38",
"telephone" : "2104287100",
"address_name" : "ΗΡ.ΠΟΛΥΤΕΧΝΕΙΟΥ 108 & ΣΑΧΤΟΥΡΗ 0",
"workingHoursFriday" : "",
"latitude" : "998486563",
"longitude" : "0"
},
{
"id" : "1-7UDM-7145",
"type" : "germanos",
"area" : "ΡΕΘΥΜΝΟ",
"county" : "ΡΕΘΥΜΝΗΣ",
"postalCode" : "740 52",
"telephone" : "2834023030",
"address_name" : "ΠΕΡΑΜΑ -ΓΕΡΟΠΟΤΑΜΟΥ -",
"workingHoursFriday" : "",
"latitude" : "37.94623581",
"longitude" : "23.5129595"
},
{
"id" : "1-7UDM-7830",
"type" : "germanos",
"area" : "ΚΑΤΕΡΙΝΗ",
"county" : "ΠΙΕΡΙΑΣ",
"postalCode" : "601 00",
"telephone" : "2351077220",
"address_name" : "ΑΝΔΡΟΥΤΣΟΥ 12",
"workingHoursFriday" : "",
"latitude" : "40.27100288",
"longitude" : "22.50421878"
},
{
"id" : "1-7UDM-5872",
"type" : "germanos",
"area" : "ΚΑΤΩ ΑΧΑΙΑ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "252 00",
"telephone" : "2693025225",
"address_name" : "ΠΑΤΡΩΝ - ΠΥΡΓΟΥ 41",
"workingHoursFriday" : "",
"latitude" : "38.14131004",
"longitude" : "21.55158401"
},
{
"id" : "1-4Q3I5H3",
"type" : "germanos",
"area" : "ΚΙΛΚΙΣ",
"county" : "ΚΙΛΚΙΣ",
"postalCode" : "611 00",
"telephone" : "2341075080",
"address_name" : "21ΗΣ ΙΟΥΝΙΟΥ 66",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-7835",
"type" : "germanos",
"area" : "ΗΡΑΚΛΕΙΟ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "713 06",
"telephone" : "2810301100",
"address_name" : "Λ. ΚΝΩΣΣΟΥ 17",
"workingHoursFriday" : "",
"latitude" : "35.33140268",
"longitude" : "25.13555871"
},
{
"id" : "1-7UDM-6482",
"type" : "germanos",
"area" : "ΚΑΡΛΟΒΑΣΙ",
"county" : "ΣΑΜΟΥ",
"postalCode" : "832 00",
"telephone" : "2273035900",
"address_name" : "ΠΛ. ΒΑΛΑΣΚΑΝΤΖΗ 0",
"workingHoursFriday" : "",
"latitude" : "37.79188458",
"longitude" : "26.70432168"
},
{
"id" : "1-7UDM-7142",
"type" : "germanos",
"area" : "ΛΕΧΑΙΝΑ",
"county" : "ΗΛΕΙΑΣ",
"postalCode" : "270 53",
"telephone" : "2623023819",
"address_name" : "ΧΡ.ΠΡΑΝΤΟΥΝΑ 13",
"workingHoursFriday" : "",
"latitude" : "37.93793121",
"longitude" : "21.26081439"
},
{
"id" : "1-7UDM-1741",
"type" : "germanos",
"area" : "ΠΕΥΚΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "151 21",
"telephone" : "2106143516",
"address_name" : "ΣΟΦΟΥΛΗ 3",
"workingHoursFriday" : "",
"latitude" : "37.77346916",
"longitude" : "21.65805668"
},
{
"id" : "1-7UDM-7410",
"type" : "germanos",
"area" : "ΚΟΥΦΑΛΙΑ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "571 00",
"telephone" : "2391053309",
"address_name" : "ΕΘΝ. ΑΝΤΙΣΤΑΣΕΩΣ 35",
"workingHoursFriday" : "",
"latitude" : "40.777462",
"longitude" : "22.577205"
},
{
"id" : "1-7UDM-6559",
"type" : "germanos",
"area" : "ΑΧΑΡΝΕΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "136 71",
"telephone" : "2102464878",
"address_name" : "ΦΙΛΑΔΕΛΦΕΙΑΣ 17",
"workingHoursFriday" : "",
"latitude" : "38.0721021",
"longitude" : "23.73880678"
},
{
"id" : "1-7UDM-138",
"type" : "germanos",
"area" : "ΠΕΙΡΑΙΑΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "185 31",
"telephone" : "2104221999",
"address_name" : "ΚΑΡΑΟΛΗ ΔΗΜΗΤΡΙΟΥ 19",
"workingHoursFriday" : "",
"latitude" : "37.94574814",
"longitude" : "23.64656578"
},
{
"id" : "1-7UDM-7603",
"type" : "germanos",
"area" : "ΠΕΡΙΣΤΕΡΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "121 34",
"telephone" : "2105740400",
"address_name" : "ΘΗΒΩΝ 179",
"workingHoursFriday" : "",
"latitude" : "38.01463649",
"longitude" : "23.69033268"
},
{
"id" : "1-7UDM-271",
"type" : "germanos",
"area" : "ΚΙΛΚΙΣ",
"county" : "ΚΙΛΚΙΣ",
"postalCode" : "611 00",
"telephone" : "2341036199",
"address_name" : "ΕΘΝΙΚΗΣ ΑΝΤΙΣΤΑΣΗΣ 8",
"workingHoursFriday" : "",
"latitude" : "40.99337",
"longitude" : "22.875826"
},
{
"id" : "1-7UDM-7604",
"type" : "germanos",
"area" : "ΧΑΛΑΝΔΡΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "152 32",
"telephone" : "2106842435",
"address_name" : "Α.ΠΑΠΑΝΔΡΕΟΥ 91",
"workingHoursFriday" : "",
"latitude" : "38.01855863",
"longitude" : "23.7964607"
},
{
"id" : "1-7UDM-5599",
"type" : "germanos",
"area" : "ΑΛΙΚΑΡΝΑΣΣΟΣ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "716 01",
"telephone" : "2810228042",
"address_name" : "ΛΕΩΦ. ΙΚΑΡΟΥ 56",
"workingHoursFriday" : "",
"latitude" : "35.33849883",
"longitude" : "25.15878953"
},
{
"id" : "1-7UDM-134",
"type" : "germanos",
"area" : "ΚΕΡΑΤΣΙΝΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "187 57",
"telephone" : "2104006999",
"address_name" : "Π. ΤΣΑΛΔΑΡΗ 25",
"workingHoursFriday" : "",
"latitude" : "37.96599791",
"longitude" : "23.62293682"
},
{
"id" : "1-7UDM-4469",
"type" : "germanos",
"area" : "ΚΑΛΛΙΘΕΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "176 72",
"telephone" : "2109538000",
"address_name" : "ΔΑΒΑΚΗ 31",
"workingHoursFriday" : "",
"latitude" : "37.95325281",
"longitude" : "23.70500271"
},
{
"id" : "1-2JUV6I",
"type" : "germanos",
"area" : "ΣΠΑΡΤΗ",
"county" : "ΛΑΚΩΝΙΑΣ",
"postalCode" : "231 00",
"telephone" : "2731021500",
"address_name" : "ΠΑΛΑΙΟΛΟΓΟΥ 30",
"workingHoursFriday" : "",
"latitude" : "37.0694406",
"longitude" : "22.43201824"
},
{
"id" : "1-7UDM-137",
"type" : "germanos",
"area" : "ΝΙΚΑΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "184 54",
"telephone" : "2104253999",
"address_name" : "ΠΛΑΤΕΙΑ ΔΑΒΑΚΗ 12",
"workingHoursFriday" : "",
"latitude" : "37.97084831",
"longitude" : "23.65322459"
},
{
"id" : "1-7Q25G5",
"type" : "germanos",
"area" : "ΠΥΛΟΣ",
"county" : "ΜΕΣΣΗΝΙΑΣ",
"postalCode" : "240 01",
"telephone" : "2723023200",
"address_name" : "ΓΡΗΓΟΡΙΟΥ ΕΠΙΣΚΟΠΟΥ 29",
"workingHoursFriday" : "",
"latitude" : "36.91365227",
"longitude" : "21.69641701"
},
{
"id" : "1-7UDM-6698",
"type" : "germanos",
"area" : "ΕΔΕΣΣΑ",
"county" : "ΠΕΛΛΗΣ",
"postalCode" : "582 00",
"telephone" : "2381029961",
"address_name" : "ΤΗΜΕΝΙΔΩΝ 1",
"workingHoursFriday" : "",
"latitude" : "40.80239796",
"longitude" : "22.05068718"
},
{
"id" : "1-7UDM-6697",
"type" : "germanos",
"area" : "ΠΑΤΡΑ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "263 32",
"telephone" : "2610361730",
"address_name" : "ΑΝΘΕΙΑΣ 228",
"workingHoursFriday" : "",
"latitude" : "38.22091868",
"longitude" : "21.73648209"
},
{
"id" : "1-7UDM-131",
"type" : "germanos",
"area" : "ΓΛΥΦΑΔΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "166 75",
"telephone" : "2108983399",
"address_name" : "ΑΓΙΟΥ ΚΩΝΣΤΑΝΤΙΝΟΥ 14Α",
"workingHoursFriday" : "",
"latitude" : "37.86621915",
"longitude" : "23.74683535"
},
{
"id" : "1-7UDM-7417",
"type" : "germanos",
"area" : "ΜΕΣΟΛΟΓΓΙ",
"county" : "ΑΙΤΩΛΟΑΚΑΡΝΑΝΙΑΣ",
"postalCode" : "302 00",
"telephone" : "2631055338",
"address_name" : "ΠΛΑΤΕΙΑ ΜΠΟΤΣΑΡΗ 0",
"workingHoursFriday" : "",
"latitude" : "38.36897137",
"longitude" : "21.43072867"
},
{
"id" : "1-7UDM-5880",
"type" : "germanos",
"area" : "ΙΩΑΝΝΙΝΑ",
"county" : "ΙΩΑΝΝΙΝΩΝ",
"postalCode" : "453 32",
"telephone" : "2651072001",
"address_name" : "ΧΑΡ.ΤΡΙΚΟΥΠΗ 6",
"workingHoursFriday" : "",
"latitude" : "39.667301",
"longitude" : "20.852265"
},
{
"id" : "1-4R8PP6L",
"type" : "germanos",
"area" : "ΠΑΛΑΙΟ ΦΑΛΗΡΟ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "175 64",
"telephone" : "2109844053",
"address_name" : "ΑΜΦΙΘΕΑΣ 78 & ΑΝΔΡΟΜΑΧΗΣ 8",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-NKQ8Z",
"type" : "germanos",
"area" : "ΑΓΙΟΣ ΔΗΜΗΤΡΙΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "173 41",
"telephone" : "2109700051",
"address_name" : "ΑΓΙΟΥ ΔΗΜΗΤΡΙΟΥ 103",
"workingHoursFriday" : "",
"latitude" : "37.94125866",
"longitude" : "23.73141914"
},
{
"id" : "1-48IP59W",
"type" : "germanos",
"area" : "ΡΟΔΟΣ",
"county" : "ΔΩΔΕΚΑΝΗΣΟΥ",
"postalCode" : "851 00",
"telephone" : "2241098165",
"address_name" : "ΗΡΑΚΛΕΙΔΩΝ 174",
"workingHoursFriday" : "",
"latitude" : "36.44323471",
"longitude" : "28.22700191"
},
{
"id" : "1-7UDM-7215",
"type" : "germanos",
"area" : "ΓΑΛΑΤΣΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "111 46",
"telephone" : "2102220399",
"address_name" : "ΛΕΩΦΟΡΟΣ ΒΕΪΚΟΥ 47",
"workingHoursFriday" : "",
"latitude" : "38.01524395",
"longitude" : "23.75425829"
},
{
"id" : "1-2WREUV",
"type" : "germanos",
"area" : "ΑΛΙΒΕΡΙ",
"county" : "ΕΥΒΟΙΑΣ",
"postalCode" : "345 00",
"telephone" : "2223029850",
"address_name" : "ΚΩΝΣΤΑΝΤΙΝΟΥ ΤΑΤΛΑ 26",
"workingHoursFriday" : "",
"latitude" : "38.25616512",
"longitude" : "21.74304625"
},
{
"id" : "1-EGT1U1",
"type" : "germanos",
"area" : "ΣΟΦΑΔΕΣ",
"county" : "ΚΑΡΔΙΤΣΗΣ",
"postalCode" : "433 00",
"telephone" : "2443022101",
"address_name" : "ΚΙΕΡΙΟΥ 40",
"workingHoursFriday" : "",
"latitude" : "39.3341618",
"longitude" : "22.09868989"
},
{
"id" : "1-7UDM-7130",
"type" : "germanos",
"area" : "ΚΑΛΑΜΑΤΑ",
"county" : "ΜΕΣΣΗΝΙΑΣ",
"postalCode" : "242 00",
"telephone" : "2722024499",
"address_name" : "ΠΟΛΥΤΕΧΝΕΙΟΥ 37",
"workingHoursFriday" : "",
"latitude" : "99518686",
"longitude" : "37.05114321"
},
{
"id" : "1-JUODB",
"type" : "germanos",
"area" : "ΜΑΡΟΥΣΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "151 23",
"telephone" : "2106839226",
"address_name" : "Λ. ΚΗΦΙΣΙΑΣ 37Α & ΣΠΥΡΟΥ ΛΟΥΗ 0",
"workingHoursFriday" : "",
"latitude" : "38.0338561",
"longitude" : "23.79553886"
},
{
"id" : "1-7UDM-1746",
"type" : "germanos",
"area" : "ΠΑΙΑΝΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "190 02",
"telephone" : "2106647328",
"address_name" : "ΛΕΩΦ. ΛΑΥΡΙΟΥ 106",
"workingHoursFriday" : "",
"latitude" : "37.95597656",
"longitude" : "23.85859443"
},
{
"id" : "1-7UDM-5886",
"type" : "germanos",
"area" : "ΚΑΛΑΜΑΡΙΑ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "551 32",
"telephone" : "2310455955",
"address_name" : "ΚΟΜΝΗΝΩΝ 47",
"workingHoursFriday" : "",
"latitude" : "40.5829372",
"longitude" : "22.94970962"
},
{
"id" : "1-7UDM-7544",
"type" : "germanos",
"area" : "ΠΑΡΟΣ",
"county" : "ΚΥΚΛΑΔΩΝ",
"postalCode" : "844 00",
"telephone" : "2284028070",
"address_name" : "ΠΛΑΤΕΙΑ ΜΑΝΤΩ ΜΑΥΡΟΓΕΝΟΥΣ - ΠΑΡΟΙΚΙΑ -",
"workingHoursFriday" : "",
"latitude" : "37.44726184",
"longitude" : "25.32817234"
},
{
"id" : "1-7UDM-129",
"type" : "germanos",
"area" : "ΠΑΛΑΙΟ ΦΑΛΗΡΟ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "175 62",
"telephone" : "2109886899",
"address_name" : "ΛΕΩΦ. ΑΜΦΙΘΕΑΣ 102 & ΚΑΛΥΨΟΥΣ 34",
"workingHoursFriday" : "",
"latitude" : "37.93058349",
"longitude" : "23.70236648"
},
{
"id" : "1-7UDM-7546",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "115 26",
"telephone" : "2102891000",
"address_name" : "ΛΕΩΦ. ΚΗΦΙΣΙΑΣ 124",
"workingHoursFriday" : "",
"latitude" : "37.99538685",
"longitude" : "23.76803017"
},
{
"id" : "1-7UDM-5586",
"type" : "germanos",
"area" : "ΡΕΘΥΜΝΟ",
"county" : "ΡΕΘΥΜΝΗΣ",
"postalCode" : "741 00",
"telephone" : "2831058700",
"address_name" : "Μ. ΠΟΡΤΑΛΙΟΥ 8",
"workingHoursFriday" : "",
"latitude" : "35.36455042",
"longitude" : "24.48813247"
},
{
"id" : "1-7UDM-7617",
"type" : "germanos",
"area" : "ΛΕΥΚΑΔΑ",
"county" : "ΛΕΥΚΑΔΟΣ",
"postalCode" : "311 00",
"telephone" : "2645029090",
"address_name" : "8ης ΜΕΡΑΡΧΙΑΣ -",
"workingHoursFriday" : "",
"latitude" : "38.830607",
"longitude" : "20.704352"
},
{
"id" : "1-7UDM-128",
"type" : "germanos",
"area" : "ΝΕΑ ΣΜΥΡΝΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "171 23",
"telephone" : "2109311299",
"address_name" : "ΕΛ. ΒΕΝΙΖΕΛΟΥ 29-31",
"workingHoursFriday" : "",
"latitude" : "37.94699008",
"longitude" : "23.7152833"
},
{
"id" : "1-3SK1FQN",
"type" : "germanos",
"area" : "ΦΑΡΚΑΔΩΝΑ",
"county" : "ΤΡΙΚΑΛΩΝ",
"postalCode" : "420 31",
"telephone" : "2433023115",
"address_name" : "ΚΑΡΑΙΣΚΑΚΗ 8",
"workingHoursFriday" : "",
"latitude" : "39.597",
"longitude" : "22.065227"
},
{
"id" : "1-7UDM-6568",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "116 33",
"telephone" : "2107669190",
"address_name" : "ΧΡΕΜΩΝΙΔΟΥ 52",
"workingHoursFriday" : "",
"latitude" : "37.96575427",
"longitude" : "23.75009678"
},
{
"id" : "1-7UDM-126",
"type" : "germanos",
"area" : "ΚΑΛΛΙΘΕΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "176 73",
"telephone" : "2109598299",
"address_name" : "ΔΗΜΟΣΘΕΝΟΥΣ 135Α",
"workingHoursFriday" : "",
"latitude" : "37.94885364",
"longitude" : "23.69974106"
},
{
"id" : "1-J1ZQF",
"type" : "germanos",
"area" : "ΜΥΡΙΝΑ",
"county" : "ΛΕΣΒΟΥ",
"postalCode" : "814 00",
"telephone" : "2254029370",
"address_name" : "Π. ΚΙΔΑ ΠΛΑΤΕΙΑ ΚΤΕΛ 0",
"workingHoursFriday" : "",
"latitude" : "39.88016264",
"longitude" : "25.06352022"
},
{
"id" : "1-7UDM-6566",
"type" : "germanos",
"area" : "ΛΑΜΙΑ",
"county" : "ΦΘΙΩΤΙΔΟΣ",
"postalCode" : "351 00",
"telephone" : "2102891000",
"address_name" : "ΠΑΠΑΠΟΣΤΟΛΟΥ 4",
"workingHoursFriday" : "",
"latitude" : "38.90037922",
"longitude" : "22.44117684"
},
{
"id" : "1-7UDM-123",
"type" : "germanos",
"area" : "ΗΛΙΟΥΠΟΛΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "163 43",
"telephone" : "2109951099",
"address_name" : "ΣΟΦ.ΒΕΝΙΖΕΛΟΥ 109",
"workingHoursFriday" : "",
"latitude" : "37.93278571",
"longitude" : "23.75831357"
},
{
"id" : "1-7UDM-7819",
"type" : "germanos",
"area" : "ΜΕΓΑΡΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "191 00",
"telephone" : "2296772281",
"address_name" : "28ης ΟΚΤΩΒΡΙΟΥ 82",
"workingHoursFriday" : "",
"latitude" : "37.99466101",
"longitude" : "23.34249062"
},
{
"id" : "1-7UDM-122",
"type" : "germanos",
"area" : "ΔΑΦΝΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "172 35",
"telephone" : "2109761999",
"address_name" : "ΚΑΡΑΟΛΗ 6",
"workingHoursFriday" : "",
"latitude" : "37.94960967",
"longitude" : "23.73687881"
},
{
"id" : "1-4XBXC69",
"type" : "germanos",
"area" : "ΑΛΙΜΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "174 55",
"telephone" : "2102891000",
"address_name" : "ΠΑΛΑΙΣΤΙΝΗΣ & ΛΑΜΙΑΣ 1",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-7755",
"type" : "germanos",
"area" : "ΣΧΗΜΑΤΑΡΙ",
"county" : "ΒΟΙΩΤΙΑΣ",
"postalCode" : "320 09",
"telephone" : "2262058100",
"address_name" : "ΚΟΥΚΟΥΛΕΖΑ 20",
"workingHoursFriday" : "",
"latitude" : "38.34648672",
"longitude" : "23.57985873"
},
{
"id" : "1-7UDM-7407",
"type" : "germanos",
"area" : "ΖΑΧΑΡΩ",
"county" : "ΗΛΕΙΑΣ",
"postalCode" : "270 54",
"telephone" : "2625036313",
"address_name" : "ΕΘΝΙΚΗ ΟΔΟΣ ΠΥΡΓΟΥ-ΚΥΠΑΡΙΣΣΙΑΣ -",
"workingHoursFriday" : "",
"latitude" : "37.48644092",
"longitude" : "21.6496186"
},
{
"id" : "1-4W50EUB",
"type" : "germanos",
"area" : "ΚΑΙΣΑΡΙΑΝΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "161 21",
"telephone" : "2107216991",
"address_name" : "ΕΘΝΙΚΗΣ ΑΝΤΙΣΤΑΣΕΩΣ 90",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-266",
"type" : "germanos",
"area" : "ΚΑΤΕΡΙΝΗ",
"county" : "ΠΙΕΡΙΑΣ",
"postalCode" : "601 00",
"telephone" : "2351056175",
"address_name" : "ΙΩΑΝΝΙΝΩΝ 4",
"workingHoursFriday" : "",
"latitude" : "40.27096818",
"longitude" : "22.51069519"
},
{
"id" : "1-7UDM-5585",
"type" : "germanos",
"area" : "ΑΓΙΟΣ ΙΩΑΝΝΗΣ ΡΕΝΤΗΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "182 33",
"telephone" : "2104834555",
"address_name" : "ΠΕΙΡΑΙΩΣ 151",
"workingHoursFriday" : "",
"latitude" : "37.95337976",
"longitude" : "23.66946154"
},
{
"id" : "1-AV7C1",
"type" : "germanos",
"area" : "ΦΕΡΡΕΣ",
"county" : "ΕΒΡΟΥ",
"postalCode" : "685 00",
"telephone" : "2555022998",
"address_name" : "Β.ΚΩΝΣΤΑΝΤΙΝΟΥ 5",
"workingHoursFriday" : "",
"latitude" : "40.89543121",
"longitude" : "26.17135411"
},
{
"id" : "1-7UDM-5584",
"type" : "germanos",
"area" : "ΟΡΧΟΜΕΝΟΣ",
"county" : "ΒΟΙΩΤΙΑΣ",
"postalCode" : "323 00",
"telephone" : "2261039020",
"address_name" : "28ης ΟΚΤΩΒΡΙΟΥ ΠΛ. ΗΡΩΩΝ -",
"workingHoursFriday" : "",
"latitude" : "38.49920177",
"longitude" : "22.9902195"
},
{
"id" : "1-7UDM-7541",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "566 26",
"telephone" : "2310635698",
"address_name" : "ΠΑΠΑΝΔΡΕΟΥ ΑΝΔΡΕΑ 190",
"workingHoursFriday" : "",
"latitude" : "40.65418702",
"longitude" : "22.95117596"
},
{
"id" : "1-4ZI3X80",
"type" : "germanos",
"area" : "ΠΕΙΡΑΙΑΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "185 31",
"telephone" : "2104224890",
"address_name" : "ΗΡΩΩΝ ΠΟΛΥΤΕΧΝΕΙΟΥ 24",
"workingHoursFriday" : "",
"latitude" : "77415742",
"longitude" : "0"
},
{
"id" : "1-7UDM-5583",
"type" : "germanos",
"area" : "ΜΑΡΑΘΩΝΑΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "190 07",
"telephone" : "2294067414",
"address_name" : "Λ. ΜΑΡΑΘΩΝΟΣ 136",
"workingHoursFriday" : "",
"latitude" : "38.16019321",
"longitude" : "23.95452717"
},
{
"id" : "1-7UDM-1616",
"type" : "germanos",
"area" : "ΜΟΙΡΕΣ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "704 00",
"telephone" : "2892022399",
"address_name" : "28ης ΟΚΤΩΒΡΙΟΥ 123",
"workingHoursFriday" : "",
"latitude" : "35.04988932",
"longitude" : "24.87511466"
},
{
"id" : "1-7UDM-7543",
"type" : "germanos",
"area" : "ΑΧΑΡΝΕΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "136 74",
"telephone" : "2102445845",
"address_name" : "ΠΑΡΝΗΘΟΣ 36",
"workingHoursFriday" : "",
"latitude" : "38.08365818",
"longitude" : "23.73734142"
},
{
"id" : "1-72MO8X",
"type" : "germanos",
"area" : "ΜΕΤΑΜΟΡΦΩΣΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "144 52",
"telephone" : "2102850506",
"address_name" : "ΠΛ. ΗΡΩΩΝ ΠΟΛΥΤΕΧΝΕΙΟΥ 3",
"workingHoursFriday" : "",
"latitude" : "36.80627253",
"longitude" : "22.91497741"
},
{
"id" : "1-43JVE68",
"type" : "germanos",
"area" : "ΚΡΗΝΙΔΕΣ",
"county" : "ΚΑΒΑΛΑΣ",
"postalCode" : "640 03",
"telephone" : "2510516516",
"address_name" : "ΑΓ. ΧΡΙΣΤΟΦΟΡΟΥ 18",
"workingHoursFriday" : "",
"latitude" : "152614300",
"longitude" : "41.01531025"
},
{
"id" : "1-D6ZUH",
"type" : "germanos",
"area" : "ΠΡΕΒΕΖΑ",
"county" : "ΠΡΕΒΕΖΗΣ",
"postalCode" : "481 00",
"telephone" : "2102891000",
"address_name" : "ΚΩΣΤΗ ΠΑΛΑΜΑ 4",
"workingHoursFriday" : "",
"latitude" : "38.95677273",
"longitude" : "20.74882582"
},
{
"id" : "1-7UDM-532",
"type" : "germanos",
"area" : "ΘΗΒΑ",
"county" : "ΒΟΙΩΤΙΑΣ",
"postalCode" : "322 00",
"telephone" : "2262081226",
"address_name" : "ΒΟΥΡΔΟΥΜΠΑ 20",
"workingHoursFriday" : "",
"latitude" : "38.32128064",
"longitude" : "23.31756022"
},
{
"id" : "1-7UDM-670",
"type" : "germanos",
"area" : "ΚΟΡΙΝΘΟΣ",
"county" : "ΚΟΡΙΝΘΙΑΣ",
"postalCode" : "201 00",
"telephone" : "2741022999",
"address_name" : "ΚΟΛΟΚΟΤΡΩΝΗ 32",
"workingHoursFriday" : "",
"latitude" : "37.93862919",
"longitude" : "22.93104098"
},
{
"id" : "1-4ZGDLTX",
"type" : "germanos",
"area" : "ΦΛΩΡΙΝΑ",
"county" : "ΦΛΩΡΙΝΗΣ",
"postalCode" : "531 00",
"telephone" : "2385026661",
"address_name" : "ΠΛΑΤΕΙΑ ΟΜΟΝΟΙΑΣ 14",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-530",
"type" : "germanos",
"area" : "ΛΕΒΑΔΕΙΑ",
"county" : "ΒΟΙΩΤΙΑΣ",
"postalCode" : "321 00",
"telephone" : "2261025050",
"address_name" : "ΥΨΗΛΑΝΤΟΥ 5",
"workingHoursFriday" : "",
"latitude" : "38.4385686",
"longitude" : "22.88042893"
},
{
"id" : "1-7UDM-7347",
"type" : "germanos",
"area" : "ΚΥΜΗ",
"county" : "ΕΥΒΟΙΑΣ",
"postalCode" : "340 03",
"telephone" : "2222029121",
"address_name" : "ΚΩΣΤΑΡΟΥ ΒΑΜΒΑ 2",
"workingHoursFriday" : "",
"latitude" : "38.63258524",
"longitude" : "24.10365102"
},
{
"id" : "1-7UDM-7814",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "115 26",
"telephone" : "2107705150",
"address_name" : "Λ.ΜΕΣΟΓΕΙΩΝ 53",
"workingHoursFriday" : "",
"latitude" : "37.98746064",
"longitude" : "23.76602376"
},
{
"id" : "1-7UDM-673",
"type" : "germanos",
"area" : "ΛΟΥΤΡΑΚΙ",
"county" : "ΚΟΡΙΝΘΙΑΣ",
"postalCode" : "203 00",
"telephone" : "2744061999",
"address_name" : "ΕΛΕΥΘΕΡΙΟΥ ΒΕΝΙΖΕΛΟΥ 10",
"workingHoursFriday" : "",
"latitude" : "37.9768522",
"longitude" : "22.97733846"
},
{
"id" : "1-7UDM-5991",
"type" : "germanos",
"area" : "ΡΑΦΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "190 09",
"telephone" : "2294022066",
"address_name" : "Λ.ΦΛΕΜΙΝΓΚ 3",
"workingHoursFriday" : "",
"latitude" : "38.01977321",
"longitude" : "24.00582776"
},
{
"id" : "1-7UDM-1757",
"type" : "germanos",
"area" : "ΡΟΔΟΣ",
"county" : "ΔΩΔΕΚΑΝΗΣΟΥ",
"postalCode" : "851 00",
"telephone" : "2241026898",
"address_name" : "ΓΡ.ΛΑΜΠΡΑΚΗ -",
"workingHoursFriday" : "",
"latitude" : "36.44883549",
"longitude" : "28.22238845"
},
{
"id" : "1-7UDM-7810",
"type" : "germanos",
"area" : "ΣΟΦΑΔΕΣ",
"county" : "ΚΑΡΔΙΤΣΗΣ",
"postalCode" : "433 00",
"telephone" : "2443022580",
"address_name" : "ΚΙΕΡΟΥ 40",
"workingHoursFriday" : "",
"latitude" : "39.3341618",
"longitude" : "22.09868989"
},
{
"id" : "1-7UDM-1756",
"type" : "germanos",
"area" : "ΑΡΓΟΣ",
"county" : "ΑΡΓΟΛΙΔΟΣ",
"postalCode" : "212 00",
"telephone" : "2751021150",
"address_name" : "ΔΑΝΑΟΥ & ΚΑΠΟΔΙΣΤΡΙΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "37.6333778",
"longitude" : "22.72810295"
},
{
"id" : "1-7UDM-5776",
"type" : "germanos",
"area" : "ΜΑΝΔΡΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "196 00",
"telephone" : "2105556085",
"address_name" : "Ν.ΡΟΚΑ 61",
"workingHoursFriday" : "",
"latitude" : "38.07458684",
"longitude" : "23.49797571"
},
{
"id" : "1-7UDM-5775",
"type" : "germanos",
"area" : "ΚΑΛΑΜΑΚΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "174 55",
"telephone" : "2109844953",
"address_name" : "ΘΟΥΚΙΔΙΔΟΥ 50",
"workingHoursFriday" : "",
"latitude" : "37.91231574",
"longitude" : "23.71280658"
},
{
"id" : "1-RTOWXR",
"type" : "germanos",
"area" : "ΠΑΛΑΜΑΣ",
"county" : "ΚΑΡΔΙΤΣΗΣ",
"postalCode" : "432 00",
"telephone" : "2444024455",
"address_name" : "Δ. ΦΑΛΑΓΓΑ 3",
"workingHoursFriday" : "",
"latitude" : "39.02935348",
"longitude" : "22.40002551"
},
{
"id" : "1-7UDM-481",
"type" : "germanos",
"area" : "ΛΑΜΙΑ",
"county" : "ΦΘΙΩΤΙΔΟΣ",
"postalCode" : "351 00",
"telephone" : "2231050531",
"address_name" : "ΠΛΑΤΕΙΑ ΕΛΕΥΘΕΡΙΑΣ 3",
"workingHoursFriday" : "",
"latitude" : "38.90136784",
"longitude" : "22.4318987"
},
{
"id" : "1-1VMXORI",
"type" : "germanos",
"area" : "ΛΕΡΟΣ",
"county" : "ΔΩΔΕΚΑΝΗΣΟΥ",
"postalCode" : "854 00",
"telephone" : "2247024609",
"address_name" : "ΛΑΚΚΙ -",
"workingHoursFriday" : "",
"latitude" : "37.95941593",
"longitude" : "23.92499745"
},
{
"id" : "1-7UDM-4575",
"type" : "germanos",
"area" : "ΛΙΒΑΔΕΙΑ",
"county" : "ΒΟΙΩΤΙΑΣ",
"postalCode" : "321 00",
"telephone" : "2261029092",
"address_name" : "ΓΕΩΡΓΑΝΤΑ 18-20",
"workingHoursFriday" : "",
"latitude" : "38.43780566",
"longitude" : "22.87546"
},
{
"id" : "1-7UDM-7761",
"type" : "germanos",
"area" : "ΛΑΡΙΣΑ",
"county" : "ΛΑΡΙΣΗΣ",
"postalCode" : "413 35",
"telephone" : "2411806725",
"address_name" : "4ο ΧΛΜ ΠΑΛΑΙΑΣ ΕΘΝ.ΟΔΟΥ ΛΑΡΙΣΑΣ ΑΘΗΝΩΝ 0",
"workingHoursFriday" : "",
"latitude" : "39.64142877",
"longitude" : "22.43581386"
},
{
"id" : "1-7L7LF",
"type" : "germanos",
"area" : "ΠΑΤΡΑ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "265 04",
"telephone" : "2610991071",
"address_name" : "ΑΘΗΝΩΝ - ΑΓΙΟΣ ΓΕΩΡΓΙΟΣ 5Α",
"workingHoursFriday" : "",
"latitude" : "38.26055209",
"longitude" : "21.74093305"
},
{
"id" : "1-7UDM-6532",
"type" : "germanos",
"area" : "ΑΣΤΑΚΟΣ",
"county" : "ΑΙΤΩΛΟΑΚΑΡΝΑΝΙΑΣ",
"postalCode" : "300 06",
"telephone" : "2646038068",
"address_name" : "ΕΘΝΙΚΗΣ ΑΝΤΙΣΤΑΣΕΩΣ 12",
"workingHoursFriday" : "",
"latitude" : "38.5358755",
"longitude" : "21.08176129"
},
{
"id" : "1-7UDM-4579",
"type" : "germanos",
"area" : "ΕΥΟΣΜΟΣ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "564 30",
"telephone" : "2310601501",
"address_name" : "Μ. ΑΛΕΞΑΝΔΡΟΥ 98",
"workingHoursFriday" : "",
"latitude" : "40.66022064",
"longitude" : "22.93272879"
},
{
"id" : "1-22E8X45",
"type" : "germanos",
"area" : "ΓΡΕΒΕΝΑ",
"county" : "ΓΡΕΒΕΝΩΝ",
"postalCode" : "511 00",
"telephone" : "2462022236",
"address_name" : "Κ. ΤΑΛΙΑΔΟΥΡΗ 21 & Π. ΜΕΛΑ 40",
"workingHoursFriday" : "",
"latitude" : "40.08474251",
"longitude" : "21.43313199"
},
{
"id" : "1-7UDM-5575",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 24",
"telephone" : "2310271250",
"address_name" : "ΤΣΙΜΙΣΚΗ 10",
"workingHoursFriday" : "",
"latitude" : "999382213",
"longitude" : "40.63480402"
},
{
"id" : "1-7UDM-5576",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 24",
"telephone" : "2310269550",
"address_name" : "ΜΗΤΡΟΠΟΛΕΩΣ 28 ΚΑΙ ΠΛ. ΑΡΙΣΤΟΤΕΛΟΥΣ -",
"workingHoursFriday" : "",
"latitude" : "999382225",
"longitude" : "40.633118"
},
{
"id" : "1-7UDM-6130",
"type" : "germanos",
"area" : "ΜΑΡΟΥΣΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "151 23",
"telephone" : "2111809825",
"address_name" : "Λ.ΚΗΦΙΣΙΑΣ 49",
"workingHoursFriday" : "",
"latitude" : "38.03652534",
"longitude" : "23.79800972"
},
{
"id" : "1-7UDM-6135",
"type" : "germanos",
"area" : "ΕΛΛΗΝΙΚΟ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "167 77",
"telephone" : "2109600999",
"address_name" : "ΛΕΩΦ. ΙΑΣΩΝΙΔΟΥ 57",
"workingHoursFriday" : "",
"latitude" : "37.89237923",
"longitude" : "23.75664849"
},
{
"id" : "1-7UDM-6134",
"type" : "germanos",
"area" : "ΜΑΡΟΥΣΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "151 22",
"telephone" : "2106104000",
"address_name" : "ΑΝΔΡΕΑ ΠΑΠΑΝΔΡΕΟΥ 35",
"workingHoursFriday" : "",
"latitude" : "38.04490114",
"longitude" : "23.7926252"
},
{
"id" : "1-7UDM-6137",
"type" : "germanos",
"area" : "ΜΑΡΟΥΣΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "151 22",
"telephone" : "2102891000",
"address_name" : "ΑΝΔΡΕΑ ΠΑΠΑΝΔΡΕΟΥ 35",
"workingHoursFriday" : "",
"latitude" : "38.04490114",
"longitude" : "23.7926252"
},
{
"id" : "1-7UDM-6139",
"type" : "germanos",
"area" : "ΜΕΓΑΛΟΠΟΛΗ",
"county" : "ΑΡΚΑΔΙΑΣ",
"postalCode" : "222 00",
"telephone" : "2791021150",
"address_name" : "ΠΑΠΑΝΑΣΤΑΣΙΟΥ 9",
"workingHoursFriday" : "",
"latitude" : "37.40315796",
"longitude" : "22.1405032"
},
{
"id" : "1-7UDM-5421",
"type" : "germanos",
"area" : "ΑΓΡΙΝΙΟ",
"county" : "ΑΙΤΩΛΟΑΚΑΡΝΑΝΙΑΣ",
"postalCode" : "301 00",
"telephone" : "2641031510",
"address_name" : "ΠΛΑΤΕΙΑ ΕΙΡΗΝΗΣ 11",
"workingHoursFriday" : "",
"latitude" : "38.625902",
"longitude" : "21.409548"
},
{
"id" : "1-7UDM-5563",
"type" : "germanos",
"area" : "ΜΑΡΟΥΣΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "151 24",
"telephone" : "2106146636",
"address_name" : "Λ. ΚΗΦΙΣΙΑΣ 187",
"workingHoursFriday" : "",
"latitude" : "38.05424137",
"longitude" : "23.81138934"
},
{
"id" : "1-7UDM-490",
"type" : "germanos",
"area" : "ΧΑΛΚΙΔΑ",
"county" : "ΕΥΒΟΙΑΣ",
"postalCode" : "341 00",
"telephone" : "2221076999",
"address_name" : "ΒΕΝΙΖΕΛΟΥ 36",
"workingHoursFriday" : "",
"latitude" : "38.46249849",
"longitude" : "23.59430224"
},
{
"id" : "1-7UDM-4582",
"type" : "germanos",
"area" : "ΚΑΛΑΜΙΩΤΙΣΣΑ - ΚΑΛΥΜΝΟΣ",
"county" : "ΔΩΔΕΚΑΝΗΣΟΥ",
"postalCode" : "852 00",
"telephone" : "2243059080",
"address_name" : "ΕΛ.ΒΕΝΙΖΕΛΟΥ - ΚΑΛΑΜΙΩΤΙΣΣΑ -",
"workingHoursFriday" : "",
"latitude" : "36.94991808",
"longitude" : "26.9841153"
},
{
"id" : "1-7UDM-6801",
"type" : "germanos",
"area" : "ΚΑΛΟΓΡΕΖΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "142 34",
"telephone" : "2102779789",
"address_name" : "ΒΥΖΑΝΤΙΟΥ 66",
"workingHoursFriday" : "",
"latitude" : "38.03744116",
"longitude" : "23.76625228"
},
{
"id" : "1-7UDM-7772",
"type" : "germanos",
"area" : "ΝΙΓΡΙΤΑ",
"county" : "ΣΕΡΡΩΝ",
"postalCode" : "622 00",
"telephone" : "2322025715",
"address_name" : "ΑΘ. ΑΡΓΥΡΟΥ 7",
"workingHoursFriday" : "",
"latitude" : "40.908664",
"longitude" : "23.50085"
},
{
"id" : "1-7UDM-7771",
"type" : "germanos",
"area" : "ΑΣΤΡΟΣ",
"county" : "ΑΡΚΑΔΙΑΣ",
"postalCode" : "220 01",
"telephone" : "2755022044",
"address_name" : "ΕΝΤΟΣ ΟΙΚΙΣΜΟΥ ΤΟΥ ΑΣΤΡΟΥΣ ΚΥΝΟΥΡΙΑΣ ΤΟΥ Ν.ΑΡΚΑΔΙΑΣ( ΑΠΕΝΑΝΤΙ ΑΠΟ ΕΘΝΙΚΗ ΤΡΑΠΕΖΑ) -",
"workingHoursFriday" : "",
"latitude" : "37.40560167",
"longitude" : "22.71970392"
},
{
"id" : "1-7UDM-7770",
"type" : "germanos",
"area" : "ΠΥΛΑΙΑ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "570 01",
"telephone" : "2310472061",
"address_name" : "11 ΧΙΛ ΘΕΣ/ΝΙΚΗΣ -ΜΟΥΔΑΝΙΩΝ (ΠΥΛΑΙΑ) -",
"workingHoursFriday" : "",
"latitude" : "40.54696386",
"longitude" : "23.01966447"
},
{
"id" : "1-U8Y1LH",
"type" : "germanos",
"area" : "ΧΑΝΙΑ",
"county" : "ΧΑΝΙΩΝ",
"postalCode" : "731 00",
"telephone" : "2821069717",
"address_name" : "ΚΟΥΝΟΥΠΙΔΙΑΝΑ -",
"workingHoursFriday" : "",
"latitude" : "35.51623545",
"longitude" : "24.01880205"
},
{
"id" : "1-2XH2P6D",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 24",
"telephone" : "2310253500",
"address_name" : "ΒΕΝΙΖΕΛΟΥ 9 & ΑΓ.ΜΗΝΑ 0",
"workingHoursFriday" : "",
"latitude" : "40.63498784",
"longitude" : "22.93985119"
},
{
"id" : "1-19RK8L",
"type" : "germanos",
"area" : "ΚΑΝΑΛΑΚΙ ΠΡΕΒΕΖΗΣ",
"county" : "ΠΡΕΒΕΖΗΣ",
"postalCode" : "480 62",
"telephone" : "2684029224",
"address_name" : "ΑΧΕΡΩΝΤΟΣ 84",
"workingHoursFriday" : "",
"latitude" : "39.237588",
"longitude" : "20.596297"
},
{
"id" : "1-7UDM-5659",
"type" : "germanos",
"area" : "ΝΕΟ ΨΥΧΙΚΟ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "154 51",
"telephone" : "2106727930",
"address_name" : "Λ. ΚΗΦΙΣΙΑΣ 240",
"workingHoursFriday" : "",
"latitude" : "38.0048167",
"longitude" : "23.77571173"
},
{
"id" : "1-7UDM-3307",
"type" : "germanos",
"area" : "ΑΜΑΛΙΑΔΑ",
"county" : "ΗΛΕΙΑΣ",
"postalCode" : "272 00",
"telephone" : "2622038052",
"address_name" : "ΕΡΜΟΥ 15",
"workingHoursFriday" : "",
"latitude" : "37.79542184",
"longitude" : "21.35046003"
},
{
"id" : "1-7UDM-5658",
"type" : "germanos",
"area" : "ΛΟΥΤΡΑ ΑΙΔΗΨΟΥ",
"county" : "ΕΥΒΟΙΑΣ",
"postalCode" : "343 00",
"telephone" : "2226022532",
"address_name" : "ΕΡΜΟΥ 37",
"workingHoursFriday" : "",
"latitude" : "38.85899519",
"longitude" : "23.04190953"
},
{
"id" : "1-7UDM-5657",
"type" : "germanos",
"area" : "ΠΑΛΛΗΝΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "153 51",
"telephone" : "2106665595",
"address_name" : "Λ. ΜΑΡΑΘΩΝΟΣ 114",
"workingHoursFriday" : "",
"latitude" : "38.00359308",
"longitude" : "23.88512534"
},
{
"id" : "1-7UDM-4897",
"type" : "germanos",
"area" : "ΗΛΙΟΥΠΟΛΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "163 45",
"telephone" : "2109757712",
"address_name" : "ΠΛ. ΚΑΝΑΡΙΑ 3",
"workingHoursFriday" : "",
"latitude" : "37.94003524",
"longitude" : "23.75064563"
},
{
"id" : "1-7UDM-4898",
"type" : "germanos",
"area" : "ΗΛΙΟΥΠΟΛΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "163 42",
"telephone" : "2109958599",
"address_name" : "ΣΟΦ. ΒΕΝΙΖΕΛΟΥ 99 & ΠΛ.ΕΘΝ.ΑΝΤΙΣΤΑΣΗΣ 1",
"workingHoursFriday" : "",
"latitude" : "37.93165819",
"longitude" : "23.75536811"
},
{
"id" : "1-7UDM-4899",
"type" : "germanos",
"area" : "ΧΑΙΔΑΡΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "124 62",
"telephone" : "2105323550",
"address_name" : "ΛΕΩΦ.ΑΘΗΝΩΝ 304",
"workingHoursFriday" : "",
"latitude" : "38.01222121",
"longitude" : "23.65468634"
},
{
"id" : "1-7UDM-3502",
"type" : "germanos",
"area" : "ΝΑΞΟΣ",
"county" : "ΚΥΚΛΑΔΩΝ",
"postalCode" : "843 00",
"telephone" : "2285022640",
"address_name" : "ΠΑΠΑΒΑΣΙΛΕΙΟΥ - (ΘΕΣΗ ΓΥΜΝΑΣΙΟ) -",
"workingHoursFriday" : "",
"latitude" : "37.103262",
"longitude" : "25.377176"
},
{
"id" : "1-KO5GE",
"type" : "germanos",
"area" : "ΘΗΒΑ",
"county" : "ΒΟΙΩΤΙΑΣ",
"postalCode" : "322 00",
"telephone" : "2102891000",
"address_name" : "ΑΥΛΙΔΟΣ 79",
"workingHoursFriday" : "",
"latitude" : "38.32719121",
"longitude" : "23.32782194"
},
{
"id" : "1-2P4EBRX",
"type" : "germanos",
"area" : "ΚΑΛΑΜΠΑΚΑ",
"county" : "ΤΡΙΚΑΛΩΝ",
"postalCode" : "422 00",
"telephone" : "2432022529",
"address_name" : "ΕΥΘ. ΒΛΑΧΑΒΑ 12",
"workingHoursFriday" : "",
"latitude" : "39.70825038",
"longitude" : "21.62655045"
},
{
"id" : "1-2JHRUY",
"type" : "germanos",
"area" : "ΗΡΑΚΛΕΙΟ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "713 04",
"telephone" : "2810360370",
"address_name" : "Λ. 62 ΜΑΡΤΥΡΩΝ 53",
"workingHoursFriday" : "",
"latitude" : "35.33586011",
"longitude" : "25.11990855"
},
{
"id" : "1-7UDM-360",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 26",
"telephone" : "2310522399",
"address_name" : "26ης ΟΚΤΩΒΡΙΟΥ 3",
"workingHoursFriday" : "",
"latitude" : "40.63958133",
"longitude" : "22.92861195"
},
{
"id" : "1-4XBXCB2",
"type" : "germanos",
"area" : "ΓΕΡΑΚΑΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "153 44",
"telephone" : "2102891000",
"address_name" : "Λ.ΜΑΡΑΘΩΝΟΣ 131",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-5HQORH",
"type" : "germanos",
"area" : "ΝΕΑ ΦΙΛΑΔΕΛΦΕΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "143 41",
"telephone" : "2102530050",
"address_name" : "ΔΕΚΕΛΕΙΑΣ -",
"workingHoursFriday" : "",
"latitude" : "38.03592864",
"longitude" : "23.73867674"
},
{
"id" : "1-3CG1X5",
"type" : "germanos",
"area" : "ΝΕΑ ΠΕΡΑΜΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "190 06",
"telephone" : "2296033033",
"address_name" : "28ΗΣ ΟΚΤΩΒΡΙΟΥ 275",
"workingHoursFriday" : "",
"latitude" : "38.04462085",
"longitude" : "23.53626965"
},
{
"id" : "1-2QNQQUD",
"type" : "germanos",
"area" : "ΙΩΑΝΝΙΝΑ",
"county" : "ΙΩΑΝΝΙΝΩΝ",
"postalCode" : "453 32",
"telephone" : "2651083333",
"address_name" : "Ν.ΖΕΡΒΑ 2",
"workingHoursFriday" : "",
"latitude" : "39.66340616",
"longitude" : "20.85168646"
},
{
"id" : "1-3SR7T9",
"type" : "germanos",
"area" : "ΣΕΡΒΙΑ",
"county" : "ΚΟΖΑΝΗΣ",
"postalCode" : "505 00",
"telephone" : "2464023656",
"address_name" : "117 ΕΘΝΟΜΑΡΤΥΡΩΝ 4",
"workingHoursFriday" : "",
"latitude" : "40.18492125",
"longitude" : "21.99953802"
},
{
"id" : "1-7UDM-7651",
"type" : "germanos",
"area" : "ΨΑΧΝΑ",
"county" : "ΕΥΒΟΙΑΣ",
"postalCode" : "344 00",
"telephone" : "2228022443",
"address_name" : "ΑΒΑΝΤΩΝ 22",
"workingHoursFriday" : "",
"latitude" : "38.57793962",
"longitude" : "23.64278305"
},
{
"id" : "1-16NDT4F",
"type" : "germanos",
"area" : "ΠΥΡΓΟΣ ΗΛΕΙΑΣ",
"county" : "ΗΛΕΙΑΣ",
"postalCode" : "271 00",
"telephone" : "2102851351",
"address_name" : "1ο ΧΛΜ Ε.Ο. ΠΥΡΓΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "37.68208383",
"longitude" : "21.44507369"
},
{
"id" : "1-7UDM-4493",
"type" : "germanos",
"area" : "ΚΑΡΥΣΤΟΣ",
"county" : "ΕΥΒΟΙΑΣ",
"postalCode" : "340 01",
"telephone" : "2224026000",
"address_name" : "ΚΑΡΥΣΤΟΥ 126 & ΘΕΟΧΑΡΟΥΣ ΚΟΤΣΙΚΑ -",
"workingHoursFriday" : "",
"latitude" : "38.01456218",
"longitude" : "24.42103447"
},
{
"id" : "1-7UDM-7503",
"type" : "germanos",
"area" : "ΛΑΜΙΑ",
"county" : "ΦΘΙΩΤΙΔΟΣ",
"postalCode" : "351 00",
"telephone" : "2231067800",
"address_name" : "ΚΑΠΟΔΙΣΤΡΙΟΥ 16",
"workingHoursFriday" : "",
"latitude" : "38.89997679",
"longitude" : "22.43597903"
},
{
"id" : "1-7UDM-6527",
"type" : "germanos",
"area" : "ΓΑΛΑΤΣΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "111 47",
"telephone" : "2102132552",
"address_name" : "ΛΕΩΦ. ΒΕΪΚΟΥ 18 & ΑΠΕΙΡΑΝΘΟΥ -",
"workingHoursFriday" : "",
"latitude" : "38.01506352",
"longitude" : "23.75417647"
},
{
"id" : "1-7UDM-7501",
"type" : "germanos",
"area" : "ΧΑΛΚΙΔΑ",
"county" : "ΕΥΒΟΙΑΣ",
"postalCode" : "341 00",
"telephone" : "2221085085",
"address_name" : "ΚΩΤΣΟΥ 1",
"workingHoursFriday" : "",
"latitude" : "38.46206018",
"longitude" : "23.59064583"
},
{
"id" : "1-7UDM-5545",
"type" : "germanos",
"area" : "ΝΕΑ ΕΡΥΘΡΑΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "146 71",
"telephone" : "2102891000",
"address_name" : "19ο ΧΛΜ. ΑΘΗΝΩΝ ΛΑΜΙΑΣ 0",
"workingHoursFriday" : "",
"latitude" : "38.10962502",
"longitude" : "23.82152191"
},
{
"id" : "1-7UDM-7500",
"type" : "germanos",
"area" : "ΛΙΒΑΔΕΙΑ",
"county" : "ΒΟΙΩΤΙΑΣ",
"postalCode" : "321 00",
"telephone" : "2261081801",
"address_name" : "ΜΠΟΥΦΙΔΟΥ 8",
"workingHoursFriday" : "",
"latitude" : "38.43731423",
"longitude" : "22.87637447"
},
{
"id" : "1-7UDM-7506",
"type" : "germanos",
"area" : "ΑΓΡΙΝΙΟ",
"county" : "ΑΙΤΩΛΟΑΚΑΡΝΑΝΙΑΣ",
"postalCode" : "301 00",
"telephone" : "2641039180",
"address_name" : "ΜΠΑΙΜΠΑ 13 & ΚΥΠΡΟΥ 25",
"workingHoursFriday" : "",
"latitude" : "38.62477601",
"longitude" : "21.41068412"
},
{
"id" : "1-7UDM-4147",
"type" : "germanos",
"area" : "ΝΕΟ ΨΥΧΙΚΟ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "154 51",
"telephone" : "2106744277",
"address_name" : "Λ. ΚΗΦΙΣΙΑΣ 250-254",
"workingHoursFriday" : "",
"latitude" : "38.00511185",
"longitude" : "23.77596334"
},
{
"id" : "1-7UDM-6109",
"type" : "germanos",
"area" : "ΑΝΔΡΟΣ",
"county" : "ΚΥΚΛΑΔΩΝ",
"postalCode" : "845 00",
"telephone" : "2282029009",
"address_name" : "ΧΩΡΑ ΑΝΔΡΟΥ -",
"workingHoursFriday" : "",
"latitude" : "37.83715035",
"longitude" : "24.93689224"
},
{
"id" : "1-7UDM-1660",
"type" : "germanos",
"area" : "ΗΡΑΚΛΕΙΟ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "713 04",
"telephone" : "2810395685",
"address_name" : "ΛΕΩΦΟΡΟΣ 62 ΜΑΡΤΥΡΩΝ 31",
"workingHoursFriday" : "",
"latitude" : "35.33609816",
"longitude" : "25.12159403"
},
{
"id" : "1-7UDM-4140",
"type" : "germanos",
"area" : "ΑΓΡΙΝΙΟ",
"county" : "ΑΙΤΩΛΟΑΚΑΡΝΑΝΙΑΣ",
"postalCode" : "301 00",
"telephone" : "2641053809",
"address_name" : "ΑΓΙΩΝ ΑΝΑΡΓΥΡΩΝ & ΧΑΡΙΛΑΟΥ ΤΡΙΚΟΥΠΗ -",
"workingHoursFriday" : "",
"latitude" : "38.61913123",
"longitude" : "21.41032001"
},
{
"id" : "1-7UDM-6207",
"type" : "germanos",
"area" : "ΖΩΓΡΑΦΟΥ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "157 71",
"telephone" : "2102891000",
"address_name" : "ΛΕΩΦΟΡΟΣ ΠΑΠΑΓΟΥ 30",
"workingHoursFriday" : "",
"latitude" : "37.97904929",
"longitude" : "23.76553436"
},
{
"id" : "1-7UDM-4142",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "115 26",
"telephone" : "2107784848",
"address_name" : "ΦΕΙΛΙΠΠΙΔΟΥ 4",
"workingHoursFriday" : "",
"latitude" : "37.99412406",
"longitude" : "23.72960616"
},
{
"id" : "1-7UDM-4141",
"type" : "germanos",
"area" : "ΚΑΒΑΛΑ",
"county" : "ΚΑΒΑΛΑΣ",
"postalCode" : "654 03",
"telephone" : "2510229219",
"address_name" : "ΜΕΓΑΛΟΥ ΑΛΕΞΑΝΔΡΟΥ 30 & ΑΒΕΡΩΦ -",
"workingHoursFriday" : "",
"latitude" : "40.93777855",
"longitude" : "24.40899554"
},
{
"id" : "1-7UDM-4144",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "104 34",
"telephone" : "2108230554",
"address_name" : "ΠΑΤΗΣΙΩΝ & ΚΟΔΡΙΓΚΤΩΝΟΣ -",
"workingHoursFriday" : "",
"latitude" : "37.99585116",
"longitude" : "23.73068343"
},
{
"id" : "1-7UDM-4143",
"type" : "germanos",
"area" : "ΠΑΛΑΙΟΚΑΣΤΡΙΤΣΑΣ",
"county" : "ΚΕΡΚΥΡΑΣ",
"postalCode" : "491 00",
"telephone" : "2661032032",
"address_name" : "Ε.Ο. ΚΕΡΚΥΡΑΣ -",
"workingHoursFriday" : "",
"latitude" : "39.62614464",
"longitude" : "19.9232164"
},
{
"id" : "1-3M7JNFR",
"type" : "germanos",
"area" : "ΑΡΧΑΓΓΕΛΟΣ ΡΟΔΟΥ",
"county" : "ΔΩΔΕΚΑΝΗΣΟΥ",
"postalCode" : "851 02",
"telephone" : "2244023330",
"address_name" : "ΠΛΑΤΕΙΑ ΑΓΙΟΥ ΑΝΤΩΝΙΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "41.08255313",
"longitude" : "22.28009419"
},
{
"id" : "1-6DNIV",
"type" : "germanos",
"area" : "ΚΑΛΛΙΘΕΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "176 76",
"telephone" : "2109513819",
"address_name" : "ΘΗΣΕΩΣ 100",
"workingHoursFriday" : "",
"latitude" : "37.95866486",
"longitude" : "23.7058611"
},
{
"id" : "1-4X62UZ2",
"type" : "germanos",
"area" : "ΘΕΡΜΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "570 01",
"telephone" : "2310457000",
"address_name" : "11 ΧΛΜ ΘΕΣΣΑΛΟΝΙΚΗΣ ΜΟΥΔΑΝΙΩΝ 0",
"workingHoursFriday" : "",
"latitude" : "95727131",
"longitude" : "0"
},
{
"id" : "1-7UDM-6006",
"type" : "germanos",
"area" : "ΜΥΚΟΝΟΣ",
"county" : "ΚΥΚΛΑΔΩΝ",
"postalCode" : "846 00",
"telephone" : "2289025780",
"address_name" : "ΝΕΑΣ ΠΕΡΙΦΕΡΕΙΑΚΗΣ ΟΔΟΥ ΜΥΚΟΝΟΥ (ΠΕΡΙΟΧΗ ΔΡΑΦΑΚΙ) -",
"workingHoursFriday" : "",
"latitude" : "37.4421313",
"longitude" : "25.32840245"
},
{
"id" : "1-2JXOBK",
"type" : "germanos",
"area" : "ΤΡΙΚΑΛΑ",
"county" : "ΤΡΙΚΑΛΩΝ",
"postalCode" : "421 00",
"telephone" : "2431030477",
"address_name" : "ΠΕΡΣΕΦΟΝΗΣ 19",
"workingHoursFriday" : "",
"latitude" : "39.55817811",
"longitude" : "21.77093641"
},
{
"id" : "1-2HRYF9O",
"type" : "germanos",
"area" : "ΧΑΛΑΝΔΡΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "152 33",
"telephone" : "2106819253",
"address_name" : "ΒΑΣΙΛΕΩΣ ΓΕΩΡΓΙΟΥ 8",
"workingHoursFriday" : "",
"latitude" : "38.02233597",
"longitude" : "23.79613509"
},
{
"id" : "1-326E84",
"type" : "germanos",
"area" : "ΠΑΤΡΑ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "263 32",
"telephone" : "2610330054",
"address_name" : "ΑΚΡΩΤΗΡΙΟΥ 96",
"workingHoursFriday" : "",
"latitude" : "38.21033139",
"longitude" : "21.73890405"
},
{
"id" : "1-7UDM-4095",
"type" : "germanos",
"area" : "ΚΟΡΙΝΘΟΣ",
"county" : "ΚΟΡΙΝΘΙΑΣ",
"postalCode" : "201 00",
"telephone" : "2741071351",
"address_name" : "ΠΕΡΙΑΝΔΡΟΥ 34",
"workingHoursFriday" : "",
"latitude" : "37.93999943",
"longitude" : "22.93080072"
},
{
"id" : "1-7UDM-4137",
"type" : "germanos",
"area" : "ΧΑΛΚΙΔΑ",
"county" : "ΕΥΒΟΙΑΣ",
"postalCode" : "341 00",
"telephone" : "2221076893",
"address_name" : "ΑΡΕΘΟΥΣΗΣ & Ι.ΚΙΑΠΕΚΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "38.45746193",
"longitude" : "23.60884127"
},
{
"id" : "1-7UDM-4096",
"type" : "germanos",
"area" : "ΞΑΝΘΗ",
"county" : "ΞΑΝΘΗΣ",
"postalCode" : "671 00",
"telephone" : "2541070760",
"address_name" : "ΠΛΑΤΕΙΑ ΒΑΣΙΛΕΩΣ ΓΕΩΡΓΙΟΥ & Γ.ΣΤΑΥΡΟΥ -",
"workingHoursFriday" : "",
"latitude" : "41.1402289",
"longitude" : "24.88790487"
},
{
"id" : "1-GWDPP",
"type" : "germanos",
"area" : "ΑΓΙΟΣ ΙΩΑΝΝΗΣ ΡΕΝΤΗΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "182 33",
"telephone" : "2104818330",
"address_name" : "ΜΠΑΛΤΑΤΖΗ Γ. 7",
"workingHoursFriday" : "",
"latitude" : "39.65480713",
"longitude" : "20.85311399"
},
{
"id" : "1-7UDM-4136",
"type" : "germanos",
"area" : "ΒΟΛΟΣ",
"county" : "ΜΑΓΝΗΣΙΑΣ",
"postalCode" : "382 21",
"telephone" : "2421021401",
"address_name" : "ΙΑΣΩΝΟΣ 58 & ΙΩΛΚΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "39.36055053",
"longitude" : "22.94525014"
},
{
"id" : "1-7UDM-4093",
"type" : "germanos",
"area" : "ΚΑΤΕΡΙΝΗ",
"county" : "ΠΙΕΡΙΑΣ",
"postalCode" : "601 00",
"telephone" : "2351031274",
"address_name" : "ΜΕΓΑΛΟΥ ΑΛΕΞΑΝΔΡΟΥ & ΑΓΙΟΥ ΚΟΣΜΑ 17",
"workingHoursFriday" : "",
"latitude" : "40.27148117",
"longitude" : "22.50865597"
},
{
"id" : "1-7UDM-4135",
"type" : "germanos",
"area" : "ΚΑΛΑΜΑΤΑ",
"county" : "ΜΕΣΣΗΝΙΑΣ",
"postalCode" : "241 00",
"telephone" : "2721089122",
"address_name" : "ΑΡΙΣΤΟΜΕΝΟΥΣ 4",
"workingHoursFriday" : "",
"latitude" : "37.04238481",
"longitude" : "22.11210503"
},
{
"id" : "1-7UDM-4134",
"type" : "germanos",
"area" : "ΙΩΑΝΝΙΝΑ",
"county" : "ΙΩΑΝΝΙΝΩΝ",
"postalCode" : "454 44",
"telephone" : "2651064701",
"address_name" : "ΑΔΑΜΑΝΤΙΟΥ ΚΟΡΑΗ 7",
"workingHoursFriday" : "",
"latitude" : "39.66885528",
"longitude" : "20.85055547"
},
{
"id" : "1-7UDM-3534",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "105 62",
"telephone" : "2103258000",
"address_name" : "ΒΟΥΛΗΣ 3",
"workingHoursFriday" : "",
"latitude" : "37.97707198",
"longitude" : "23.73281542"
},
{
"id" : "1-7UDM-4097",
"type" : "germanos",
"area" : "ΠΑΤΡΑ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "263 32",
"telephone" : "2610623488",
"address_name" : "ΓΛΑΥΚΟΥ 9",
"workingHoursFriday" : "",
"latitude" : "38.21023725",
"longitude" : "21.73846523"
},
{
"id" : "1-7UDM-4139",
"type" : "germanos",
"area" : "ΧΑΝΙΑ",
"county" : "ΧΑΝΙΩΝ",
"postalCode" : "731 31",
"telephone" : "2821079021",
"address_name" : "ΣΚΑΛΙΔΗ 24",
"workingHoursFriday" : "",
"latitude" : "35.51353155",
"longitude" : "24.01658544"
},
{
"id" : "1-7UDM-4138",
"type" : "germanos",
"area" : "ΗΡΑΚΛΕΙΟ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "714 09",
"telephone" : "2810231871",
"address_name" : "Λ ΚΝΩΣΟΥ 123",
"workingHoursFriday" : "",
"latitude" : "35.32013695",
"longitude" : "25.14398195"
},
{
"id" : "1-4QKMGPJ",
"type" : "germanos",
"area" : "ΗΡΑΚΛΕΙΟ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "712 01",
"telephone" : "2810224014",
"address_name" : "ΑΒΕΡΩΦ ΚΑΙ ΣΜΥΡΝΗΣ 0",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-4133",
"type" : "germanos",
"area" : "ΣΕΡΡΕΣ",
"county" : "ΣΕΡΡΩΝ",
"postalCode" : "621 22",
"telephone" : "2321028134",
"address_name" : "ΤΣΑΛΟΠΟΥΛΟΥ 9",
"workingHoursFriday" : "",
"latitude" : "41.08939133",
"longitude" : "23.55010033"
},
{
"id" : "1-7UDM-6305",
"type" : "germanos",
"area" : "ΜΕΓΑΡΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "191 00",
"telephone" : "2296080104",
"address_name" : "28ης ΟΚΤΩΒΡΙΟΥ 9",
"workingHoursFriday" : "",
"latitude" : "37.99609449",
"longitude" : "23.34947639"
},
{
"id" : "1-7UDM-4132",
"type" : "germanos",
"area" : "ΚΑΛΛΙΘΕΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "176 75",
"telephone" : "2109425283",
"address_name" : "ΕΛΕΥΘΕΡΙΟΥ ΒΕΝΙΖΕΛΟΥ 256",
"workingHoursFriday" : "",
"latitude" : "37.94939161",
"longitude" : "23.69107186"
},
{
"id" : "1-7UDM-6306",
"type" : "germanos",
"area" : "ΠΑΤΡΑ",
"county" : "ΑΧΑΪΑΣ",
"postalCode" : "264 41",
"telephone" : "2610427701",
"address_name" : "ΕΛΛΗΝΟΣ ΣΤΡΑΤΙΩΤΟΥ 39",
"workingHoursFriday" : "",
"latitude" : "38.25775734",
"longitude" : "21.74171691"
},
{
"id" : "1-3CG1UT",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 30",
"telephone" : "2310532333",
"address_name" : "ΑΝΤΙΓΟΝΙΔΩΝ 23",
"workingHoursFriday" : "",
"latitude" : "40.64023807",
"longitude" : "22.94008814"
},
{
"id" : "1-LKV0JM",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 40",
"telephone" : "2310850464",
"address_name" : "ΔΕΛΦΩΝ 1",
"workingHoursFriday" : "",
"latitude" : "40.61732099",
"longitude" : "22.9587704"
},
{
"id" : "1-7UDM-4130",
"type" : "germanos",
"area" : "ΤΟΥΜΠΑ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "543 52",
"telephone" : "2310949002",
"address_name" : "ΓΡΗΓΟΡΙΟΥ ΛΑΜΠΡΑΚΗ 189",
"workingHoursFriday" : "",
"latitude" : "40.61256318",
"longitude" : "22.98267031"
},
{
"id" : "1-7UDM-6308",
"type" : "germanos",
"area" : "ΧΡΥΣΟΥΠΟΛΗ",
"county" : "ΚΑΒΑΛΑΣ",
"postalCode" : "642 00",
"telephone" : "2591025510",
"address_name" : "ΣΚΡΑ 4",
"workingHoursFriday" : "",
"latitude" : "40.984126",
"longitude" : "24.703472"
},
{
"id" : "1-7UDM-4541",
"type" : "germanos",
"area" : "ΚΕΡΑΤΣΙΝΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "187 55",
"telephone" : "2102891000",
"address_name" : "ΛΕΩΦΟΡΟΣ ΔΗΜΟΚΡΑΤΙΑΣ 137 & ΚΟΜΝΗΝΩΝ -",
"workingHoursFriday" : "",
"latitude" : "37.95886282",
"longitude" : "23.6175504"
},
{
"id" : "1-7UDM-4548",
"type" : "germanos",
"area" : "ΧΑΛΑΝΔΡΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "152 34",
"telephone" : "2102891000",
"address_name" : "ΠΛΑΤΕΙΑ ΔΟΥΡΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "38.02266717",
"longitude" : "23.80012684"
},
{
"id" : "1-15YG224",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "112 53",
"telephone" : "2108645545",
"address_name" : "ΠΑΤΗΣΙΩΝ 219 & ΜΙΧΑΗΛ ΝΟΜΙΚΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "38.0079346",
"longitude" : "23.73508007"
},
{
"id" : "1-LKW46U",
"type" : "germanos",
"area" : "ΒΥΡΩΝΑΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "162 32",
"telephone" : "2107653421",
"address_name" : "ΚΥΠΡΟΥ 102-104",
"workingHoursFriday" : "",
"latitude" : "37.96140529",
"longitude" : "23.75191534"
},
{
"id" : "1-7UDM-4540",
"type" : "germanos",
"area" : "ΣΕΠΟΛΙΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "104 43",
"telephone" : "2105155822",
"address_name" : "ΔΥΡΡΑΧΙΟΥ 56",
"workingHoursFriday" : "",
"latitude" : "38.00543489",
"longitude" : "23.7175506"
},
{
"id" : "1-IJBO5T",
"type" : "germanos",
"area" : "ΑΙΤΩΛΙΚΟ",
"county" : "ΑΙΤΩΛΟΑΚΑΡΝΑΝΙΑΣ",
"postalCode" : "304 00",
"telephone" : "2632055121",
"address_name" : "ΚΩΝ. ΛΑΣΚΑΡΗ 83",
"workingHoursFriday" : "",
"latitude" : "38.437552",
"longitude" : "21.353425"
},
{
"id" : "1-52GKCV5",
"type" : "germanos",
"area" : "ΜΟΙΡΕΣ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "704 00",
"telephone" : "2892029033",
"address_name" : "1ο ΧΛΜ ΜΟΙΡΩΝ - ΠΟΜΠΙΑΣ 0",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-7092",
"type" : "germanos",
"area" : "ΠΕΡΙΣΤΕΡΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "121 36",
"telephone" : "2111805743",
"address_name" : "ΛΕΩΦ. ΑΘΗΝΩΝ 64 & ΘΗΒΩΝ 25",
"workingHoursFriday" : "",
"latitude" : "37.9979838",
"longitude" : "23.69219594"
},
{
"id" : "1-7UDM-1684",
"type" : "germanos",
"area" : "ΔΑΦΝΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "172 37",
"telephone" : "2109761207",
"address_name" : "ΒΟΥΛΙΑΓΜΕΝΗΣ 217",
"workingHoursFriday" : "",
"latitude" : "37.95161816",
"longitude" : "23.73754678"
},
{
"id" : "1-7UDM-7884",
"type" : "germanos",
"area" : "ΠΕΙΡΑΙΑΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "185 36",
"telephone" : "2104528181",
"address_name" : "ΑΚΤΗ ΜΙΑΟΥΛΗ -",
"workingHoursFriday" : "",
"latitude" : "37.94009414",
"longitude" : "23.64083351"
},
{
"id" : "1-GWDQT",
"type" : "germanos",
"area" : "ΝΕΑ ΣΜΥΡΝΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "171 22",
"telephone" : "2102891000",
"address_name" : "ΛΕΩΦΟΡΟΣ ΣΥΓΓΡΟΥ -",
"workingHoursFriday" : "",
"latitude" : "37.9444708",
"longitude" : "23.70128732"
},
{
"id" : "1-7UDM-5794",
"type" : "germanos",
"area" : "ΣΠΑΤΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "190 04",
"telephone" : "2102891000",
"address_name" : "ΔΙΕΘΝΗΣ ΑΕΡΟΛΙΜΕΝΑΣ ΑΘΗΝΩΝ 0",
"workingHoursFriday" : "",
"latitude" : "37.96230268",
"longitude" : "23.91529042"
},
{
"id" : "1-731U5E",
"type" : "germanos",
"area" : "ΜΕΓΑΡΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "191 00",
"telephone" : "2102891000",
"address_name" : "28ΗΣ ΟΚΤΩΒΡΙΟΥ 9",
"workingHoursFriday" : "",
"latitude" : "37.99609449",
"longitude" : "23.34947639"
},
{
"id" : "1-1CXEFYT",
"type" : "germanos",
"area" : "ΑΓΙΟΣ ΔΗΜΗΤΡΙΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "173 43",
"telephone" : "2109719130",
"address_name" : "Λ. ΒΟΥΛΙΑΓΜΕΝΗΣ 276",
"workingHoursFriday" : "",
"latitude" : "37.94098824",
"longitude" : "23.74031607"
},
{
"id" : "1-7UDM-5419",
"type" : "germanos",
"area" : "ΑΝΑΒΥΣΣΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "190 13",
"telephone" : "2291078080",
"address_name" : "ΒΑΣ. ΠΑΥΛΟΥ (ΠΛ.ΗΡΩΩΝ ) 8",
"workingHoursFriday" : "",
"latitude" : "37.73690102",
"longitude" : "23.95087022"
},
{
"id" : "1-3S8JJH8",
"type" : "germanos",
"area" : "ΤΥΧΕΡΟ",
"county" : "ΕΒΡΟΥ",
"postalCode" : "680 03",
"telephone" : "2554041341",
"address_name" : "ΝΙΚΗΣ 39",
"workingHoursFriday" : "",
"latitude" : "41.02848649",
"longitude" : "26.2928824"
},
{
"id" : "1-7UDM-5795",
"type" : "germanos",
"area" : "ΔΙΔΥΜΟΤΕΙΧΟ",
"county" : "ΕΒΡΟΥ",
"postalCode" : "683 00",
"telephone" : "2553020316",
"address_name" : "ΜΠΕΓΕΤΗ & ΓΕΡΜΑΝΟΥ -",
"workingHoursFriday" : "",
"latitude" : "41.34935",
"longitude" : "26.495934"
},
{
"id" : "1-SNUT8X",
"type" : "germanos",
"area" : "ΚΟΝΙΤΣΑ",
"county" : "ΙΩΑΝΝΙΝΩΝ",
"postalCode" : "441 00",
"telephone" : "2655022884",
"address_name" : "ΚΩΝ. ΔΟΒΑ -",
"workingHoursFriday" : "",
"latitude" : "40.045267",
"longitude" : "20.749269"
},
{
"id" : "1-7UDM-5691",
"type" : "germanos",
"area" : "ΑΓΙΟΣ ΝΙΚΟΛΑΟΣ",
"county" : "ΛΑΣΙΘΙΟΥ",
"postalCode" : "721 00",
"telephone" : "2841023717",
"address_name" : "ΠΛ. ΕΛΕΥΘΕΡΙΟΥ ΒΕΝΙΖΕΛΟΥ 8 & ΣΟΦΟΚΛΗ ΒΕΝΙΖΕΛΟΥ 2",
"workingHoursFriday" : "",
"latitude" : "35.18932685",
"longitude" : "25.71715624"
},
{
"id" : "1-7UDM-3641",
"type" : "germanos",
"area" : "ΣΠΑΡΤΗ",
"county" : "ΛΑΚΩΝΙΑΣ",
"postalCode" : "231 00",
"telephone" : "2731089189",
"address_name" : "Κ. ΠΑΛΑΙΟΛΟΓΟΥ 101",
"workingHoursFriday" : "",
"latitude" : "37.0694406",
"longitude" : "22.43201824"
},
{
"id" : "1-7UDM-466",
"type" : "germanos",
"area" : "ΛΑΡΙΣΑ",
"county" : "ΛΑΡΙΣΗΣ",
"postalCode" : "412 22",
"telephone" : "2410531799",
"address_name" : "ΦΙΛΕΛΛΗΝΩΝ 11",
"workingHoursFriday" : "",
"latitude" : "39.63922637",
"longitude" : "22.41616987"
},
{
"id" : "1-7UDM-4558",
"type" : "germanos",
"area" : "ΛΑΡΙΣΑ",
"county" : "ΛΑΡΙΣΗΣ",
"postalCode" : "415 00",
"telephone" : "2410593741",
"address_name" : "3ο ΧΛΜ Ε.Ο.ΛΑΡΙΣΑΣ-ΤΥΡΝΑΒΟΥ (ΘΕΣΗ ΓΙΑΝΝΟΥΛΗ) 0",
"workingHoursFriday" : "",
"latitude" : "39.63936183",
"longitude" : "22.41916529"
},
{
"id" : "1-4ZY5HO7",
"type" : "germanos",
"area" : "ΚΡΑΝΙΔΙ",
"county" : "ΑΡΓΟΛΙΔΟΣ",
"postalCode" : "213 00",
"telephone" : "2754029500",
"address_name" : "ΠΛΑΤΕΙΑ ΚΥΠΡΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-4559",
"type" : "germanos",
"area" : "ΤΡΙΚΑΛΑ",
"county" : "ΤΡΙΚΑΛΩΝ",
"postalCode" : "421 00",
"telephone" : "2431077930",
"address_name" : "ΕΛ. ΒΕΝΙΖΕΛΟΥ & ΖΑΠΠΑ -",
"workingHoursFriday" : "",
"latitude" : "39.55408675",
"longitude" : "21.77152538"
},
{
"id" : "1-4TOMHEE",
"type" : "germanos",
"area" : "ΚΕΡΑΤΣΙΝΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "187 58",
"telephone" : "2104010002",
"address_name" : "ΓΡΗΓΟΡΙΟΥ ΛΑΜΠΡΑΚΗ 484-486",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-5515",
"type" : "germanos",
"area" : "ΟΡΕΣΤΙΑΔΑ",
"county" : "ΕΒΡΟΥ",
"postalCode" : "682 00",
"telephone" : "2552028400",
"address_name" : "ΚΩΝΣΤΑΝΤΙΝΟΥΠΟΛΕΩΣ 187",
"workingHoursFriday" : "",
"latitude" : "41.501579",
"longitude" : "26.532379"
},
{
"id" : "1-7UDM-5514",
"type" : "germanos",
"area" : "ΑΓΙΟΣ ΔΗΜΗΤΡΙΟΣ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "173 41",
"telephone" : "2109767329",
"address_name" : "ΑΓ.ΔΗΜΗΤΡΙΟΥ 77",
"workingHoursFriday" : "",
"latitude" : "37.94283992",
"longitude" : "23.73293122"
},
{
"id" : "1-7UDM-5513",
"type" : "germanos",
"area" : "ΘΑΣΟΣ",
"county" : "ΚΑΒΑΛΑΣ",
"postalCode" : "640 04",
"telephone" : "2593058363",
"address_name" : "ΘΕΑΓΕΝΟΥΣ -ΘΑΣΟΣ -",
"workingHoursFriday" : "",
"latitude" : "40.779562",
"longitude" : "24.710741"
},
{
"id" : "1-7UDM-6611",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 27",
"telephone" : "2102891000",
"address_name" : "26ΗΣ ΟΚΤΩΒΡΙΟΥ 44 & ΚΕΦΑΛΛΗΝΙΑΣ 0",
"workingHoursFriday" : "",
"latitude" : "40.64035874",
"longitude" : "22.92113341"
},
{
"id" : "1-7UDM-6020",
"type" : "germanos",
"area" : "ΣΚΥΔΡΑ",
"county" : "ΠΕΛΛΗΣ",
"postalCode" : "585 00",
"telephone" : "2381083000",
"address_name" : "M.AΛΕΞΑΝΔΡΟΥ 51",
"workingHoursFriday" : "",
"latitude" : "40.766965",
"longitude" : "22.157053"
},
{
"id" : "1-7UDM-4551",
"type" : "germanos",
"area" : "ΙΛΙΟΝ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "131 23",
"telephone" : "2102891000",
"address_name" : "ΙΔΟΜΕΝΕΩΣ 116",
"workingHoursFriday" : "",
"latitude" : "38.03020415",
"longitude" : "23.70125541"
},
{
"id" : "1-C7790",
"type" : "germanos",
"area" : "ΓΑΣΤΟΥΝΗ ΗΛΕΙΑΣ",
"county" : "ΗΛΕΙΑΣ",
"postalCode" : "273 00",
"telephone" : "2623033620",
"address_name" : "ΣΤΡΑΤΗΓΟΥ ΣΙΣΙΝΗ -",
"workingHoursFriday" : "",
"latitude" : "37.85255813",
"longitude" : "21.25383494"
},
{
"id" : "1-7UDM-6025",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "114 74",
"telephone" : "2106457140",
"address_name" : "ΓΚΥΖΗ 41-45 & ΚΑΛΒΟΥ 70",
"workingHoursFriday" : "",
"latitude" : "37.99175066",
"longitude" : "23.74850322"
},
{
"id" : "1-7UDM-6615",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "111 41",
"telephone" : "2102286999",
"address_name" : "ΠΑΤΗΣΙΩΝ 345Β",
"workingHoursFriday" : "",
"latitude" : "38.02238092",
"longitude" : "23.73596571"
},
{
"id" : "1-L5CZ9L",
"type" : "germanos",
"area" : "ΘΗΒΑ",
"county" : "ΒΟΙΩΤΙΑΣ",
"postalCode" : "322 00",
"telephone" : "2262025803",
"address_name" : "ΑΓ ΝΙΚΟΛΑΟΥ 7",
"workingHoursFriday" : "",
"latitude" : "38.31431234",
"longitude" : "23.31974903"
},
{
"id" : "1-7UDM-4657",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "570 19",
"telephone" : "2310473288",
"address_name" : "10ο ΧΛΜ. ΘΕΣ/ΝΙΚΗΣ-ΠΕΡΑΙΑΣ -",
"workingHoursFriday" : "",
"latitude" : "40.49775047",
"longitude" : "22.9108528"
},
{
"id" : "1-4YQBTSK",
"type" : "germanos",
"area" : "ΠΑΞΟΙ",
"county" : "ΚΕΡΚΥΡΑΣ",
"postalCode" : "490 82",
"telephone" : "2662032204",
"address_name" : "ΓΑΪΟΣ ΠΑΞΩΝ 0",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-7895",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "542 48",
"telephone" : "2310812090",
"address_name" : "ΔΕΛΦΩΝ 162-164",
"workingHoursFriday" : "",
"latitude" : "40.60022102",
"longitude" : "22.95954184"
},
{
"id" : "1-4JSLM25",
"type" : "germanos",
"area" : "ΛΕΥΚΙΜΜΗ",
"county" : "ΚΕΡΚΥΡΑΣ",
"postalCode" : "490 80",
"telephone" : "2662029069",
"address_name" : "ΚΩΜΟΠΟΛΗ ΛΕΥΚΙΜΜΗΣ-ΠΑΡΑΚΑΜΨΗ-ΣΥΓΚΡΟΤΗΜΑ ΚΟΜΒΟΣ 0",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-1693",
"type" : "germanos",
"area" : "ΧΑΛΚΙΔΑ",
"county" : "ΕΥΒΟΙΑΣ",
"postalCode" : "341 00",
"telephone" : "2221027750",
"address_name" : "ΑΒΑΝΤΩΝ 33",
"workingHoursFriday" : "",
"latitude" : "38.46605866",
"longitude" : "23.5959561"
},
{
"id" : "1-22FL5GP",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "105 64",
"telephone" : "2103253387",
"address_name" : "ΕΜ. ΜΠΕΝΑΚΗ 6",
"workingHoursFriday" : "",
"latitude" : "37.98293594",
"longitude" : "23.72993844"
},
{
"id" : "1-7UDM-7893",
"type" : "germanos",
"area" : "ΝΑΥΠΑΚΤΟΣ",
"county" : "ΑΙΤΩΛΟΑΚΑΡΝΑΝΙΑΣ",
"postalCode" : "303 00",
"telephone" : "2634032555",
"address_name" : "ΒΑΘΥ ΡΕΜΑ ΠΛΑΤΑΝΙΤΗ -",
"workingHoursFriday" : "",
"latitude" : "38.39479261",
"longitude" : "21.83402734"
},
{
"id" : "1-1A3PU7",
"type" : "germanos",
"area" : "ΝΕΑ ΜΑΚΡΗ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "190 05",
"telephone" : "2294050135",
"address_name" : "Λ. ΜΑΡΑΘΩΝΟΣ 129",
"workingHoursFriday" : "",
"latitude" : "38.08425231",
"longitude" : "23.97799842"
},
{
"id" : "1-7UDM-7891",
"type" : "germanos",
"area" : "ΣΑΛΑΜΙΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "189 00",
"telephone" : "2102891000",
"address_name" : "ΛΕΩΦΟΡΟΣ ΣΑΛΑΜΙΝΟΣ 185",
"workingHoursFriday" : "",
"latitude" : "37.96509545",
"longitude" : "23.50044298"
},
{
"id" : "1-7UDM-1697",
"type" : "germanos",
"area" : "ΗΡΑΚΛΕΙΟ",
"county" : "ΗΡΑΚΛΕΙΟΥ",
"postalCode" : "712 02",
"telephone" : "2810342359",
"address_name" : "ΚΑΛΟΚΑΙΡΙΝΟΥ 50",
"workingHoursFriday" : "",
"latitude" : "35.33871651",
"longitude" : "25.13091933"
},
{
"id" : "1-7UDM-7890",
"type" : "germanos",
"area" : "ΠΑΣΑΛΙΜΑΝΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "185 35",
"telephone" : "2104137105",
"address_name" : "ΒΑΣ.ΓΕΩΡΓΙΟΥ -",
"workingHoursFriday" : "",
"latitude" : "998486563",
"longitude" : "37.94296809"
},
{
"id" : "1-7UDM-7899",
"type" : "germanos",
"area" : "ΣΤΑΥΡΟΥΠΟΛΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "564 30",
"telephone" : "2310642457",
"address_name" : "ΜΕΣΟΛΟΓΓΙΟΥ 19",
"workingHoursFriday" : "",
"latitude" : "40.6644544",
"longitude" : "22.93570501"
},
{
"id" : "1-7UDM-5789",
"type" : "germanos",
"area" : "ΠΑΛΑΙΟ ΦΑΛΗΡΟ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "175 61",
"telephone" : "2109825373",
"address_name" : "ΑΓ. ΑΛΕΞΑΝΔΡΟΥ -",
"workingHoursFriday" : "",
"latitude" : "37.92891264",
"longitude" : "23.69413191"
},
{
"id" : "1-7UFW-1",
"type" : "germanos",
"area" : "ΜΑΡΟΥΣΙ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "151 25",
"telephone" : "8011197000",
"address_name" : "ΚΗΦΙΣΙΑΣ 44",
"workingHoursFriday" : "09:00-20:00",
"latitude" : "38.04032317",
"longitude" : "23.80231468"
},
{
"id" : "1-7UFW-2",
"type" : "germanos",
"area" : "ΘΕΣΣΑΛΟΝΙΚΗ",
"county" : "ΘΕΣΣΑΛΟΝΙΚΗΣ",
"postalCode" : "546 24",
"telephone" : "8011197000",
"address_name" : "ΕΛ.ΒΕΝΙΖΕΛΟΥ 15",
"workingHoursFriday" : "09:00-14:30 & 17:30-21:00",
"latitude" : "40.63551462",
"longitude" : "22.94039932"
},
{
"id" : "1-4QYDE2T",
"type" : "germanos",
"area" : "ΚYΠΑΡΙΣΣΙΑ",
"county" : "ΜΕΣΣΗΝΙΑΣ",
"postalCode" : "245 00",
"telephone" : "2761062211",
"address_name" : "ΕΛ. ΒΕΝΙΖΕΛΟΥ & ΝΟΣΟΚΟΜΕΙΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "0",
"longitude" : "0"
},
{
"id" : "1-7UDM-4562",
"type" : "germanos",
"area" : "ΑΘΗΝΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "105 59",
"telephone" : "2103237418",
"address_name" : "ΣΤΑΔΙΟΥ & ΔΡΑΓΑΤΣΑΝΙΟΥ 0",
"workingHoursFriday" : "",
"latitude" : "37.97971307",
"longitude" : "23.73097419"
},
{
"id" : "1-7UDM-6622",
"type" : "germanos",
"area" : "ΚΕΡΑΤΕΑ",
"county" : "ΑΤΤΙΚΗΣ",
"postalCode" : "190 01",
"telephone" : "2299049590",
"address_name" : "ΛΕΩΦΟΡΟΣ ΑΘΗΝΩΝ - ΣΟΥΝΙΟΥ 54",
"workingHoursFriday" : "",
"latitude" : "37.80889244",
"longitude" : "23.97692221"
},
{
"id" : "1-7UDM-4560",
"type" : "germanos",
"area" : "ΚΟΖΑΝΗ",
"county" : "ΚΟΖΑΝΗΣ",
"postalCode" : "501 00",
"telephone" : "2461037800",
"address_name" : "Κ. ΓΚΕΡΤΣΟΥ Π. ΦΩΤΙΟΥ & ΚΑΜΒΟΥΝΙΩΝ -",
"workingHoursFriday" : "",
"latitude" : "40.29861343",
"longitude" : "21.79290964"
},
{
"id" : "1-7UDM-6624",
"type" : "germanos",
"area" : "ΛΑΡΙΣΑ",
"county" : "ΛΑΡΙΣΗΣ",
"postalCode" : "412 21",
"telephone" : "2410539700",
"address_name" : "ΕΡΥΘΡΟΥ ΣΤΑΥΡΟΥ -",
"workingHoursFriday" : "",
"latitude" : "39.64224413",
"longitude" : "22.42048987"
},
{
"id" : "1-7UDM-472",
"type" : "germanos",
"area" : "ΒΟΛΟΣ",
"county" : "ΜΑΓΝΗΣΙΑΣ",
"postalCode" : "382 21",
"telephone" : "2421039999",
"address_name" : "ΕΛΕΥΘΕΡΙΟΥ ΒΕΝΙΖΕΛΟΥ 22 & ΣΩΚΡΑΤΟΥΣ -",
"workingHoursFriday" : "",
"latitude" : "39.3620019",
"longitude" : "22.94648583"
} ];
// Run full version of store locator app in storelocator
// page
if ($('.store-locator-wrapper').length > 0) {
germanos.storeLocator = new StoreLocator(
{
// This method is required.
localhost : true,
markerIcons : {
store : '../../assets/resources/cosmote/images/locator-marker-green.png',
myStore : '../../assets/resources/cosmote/images/map-marker-my.png',
germanos : '../../assets/resources/cosmote/images/map-marker-cosmote.png',
markerA : '../../assets/resources/cosmote/images/marker_a.png',
onHover : '../../assets/resources/cosmote/images/map-marker-my.png',
markerB : '../../assets/resources/cosmote/images/marker_b.png',
},
markerClusterIcon : '../../assets/resources/cosmote/images/map-cluster-grey.png',
/**
* Store list custom template
*
*/
// storeListItemTemplate :
// function(store,myLocation,distance) {
// // Store item attributes (example)
// // store.id
// // store.title
// // store.latitude
// // store.longitude
// // store.telephone
// // store.address_name
// // store.area
// // store.county
// // store.fax
// // Location data
// // myLocation.lat()
// // myLocation.lng()
// // distance (String)
// return '...your
// html code here..
';
// },
// storeListContainer :
// '.my-store-list-container',
getAreas : function(callback) {
// Group by county name and sort
// alphabetically
var areas = _.chain(stores).sortBy(
'county').groupBy('county')
.value();
_
.each(
areas,
function(group,
groupName) {
areas[groupName] = _
.chain(
group)
.map(
function(
s) {
return {
value : s.area,
text : s.area,
selected : s.selected || false
}
})
.sortBy(
'value')
.uniq(
'value')
.value();
});
callback(areas);
},
getStores : function(callback) {
// $.post('/blocks/germanos/storeLocator/json/getStoresJson.jsp',
// {
// county: "",
// city: ""
// }, function(data) {
// //console.log(data);
// var stores = [];
// $.each(data, function(index) {
// stores.push({
// id: data[index].id,
// title: data[index].area,
// latitude: data[index].latitude,
// longitude: data[index].longitude,
// telephone: data[index].phone,
// fax: data[index].fax,
// address_name: data[index].address
// });
// });
// callback(stores);
// }, "json");
callback(stores);
}
});
}
$.ajaxSetup({
cache : false
});
if ($("#pac-input") && $("#pac-input")[0])
$("#pac-input")[0].value = "";
$('.ddslick.county')
.on(
'change',
function(ev, data, affected) {
if ($("#pac-input")
&& $("#pac-input")[0])
$("#pac-input")[0].value = "";
if (data.value == '') {
if (affected) {
affected.disable();
}
} else {
var county = data.value;
if (affected) {
var cities = [];
$
.ajax({
async : false,
cache : false,
dataType : 'json',
data : {
county : county
},
url : '/blocks/germanos/fragments/json/getCities.jsp',
success : function(
data) {
$
.each(
data.cities,
function(
cityIndex,
city) {
cities
.push({
text : city,
value : city,
selected : false,
})
});
affected
.update(cities);
}
});
}
}
});
$('#pac-input').on('focus', function() {
$('.ddslick .dd-container').ddslick('select', {
index : '0'
});
});
/*----- End of Store locator ------*/
});
/*----- ReCaptcha -----*/
var callBackForm;
var registerPageCosmoteForm;
var registerPageNonCosmoteForm;
var OneForgotPassWordForm;
var OneForgotUsernameForm;
var OneRegisterLeftTabForm;
var OneRegisterRightTabForm;
var OneContactForm;
var OneBusinessContactForm;
var myCallBack = function() {
// Render the callBackForm on the element with ID "callBackForm"
try {
callBackForm = grecaptcha.render('callBackForm', {
'sitekey' : RECAPTCHA_SITE_KEY,
'theme' : 'light'
});
} catch (err) {
// console.log('callBackForm not found');
}
try {
// Render the registerPageCosmoteForm on the element with ID
// "registerPageCosmoteForm"
registerPageCosmoteForm = grecaptcha.render('registerPageCosmoteForm',
{
'sitekey' : RECAPTCHA_SITE_KEY,
'theme' : 'light'
});
} catch (err) {
// console.log('registerPageCosmoteForm not found');
}
try {
// Render the registerPageNonCosmoteForm on the element with ID
// "registerPageNonCosmoteForm"
registerPageNonCosmoteForm = grecaptcha.render(
'registerPageNonCosmoteForm', {
'sitekey' : RECAPTCHA_SITE_KEY,
'theme' : 'light'
});
} catch (err) {
// console.log('registerPageNonCosmoteForm not found');
}
try {
// Render the OneForgotPassWordForm on the element with ID
// "OneForgotPassWordForm"
OneForgotPassWordForm = grecaptcha.render('OneForgotPassWordForm', {
'sitekey' : RECAPTCHA_SITE_KEY,
'theme' : 'light'
});
} catch (err) {
// console.log('OneForgotPassWordForm not found');
}
try {
// Render the OneForgotPassWordForm on the element with ID
// "OneForgotPassWordForm"
OneForgotUsernameForm = grecaptcha.render('OneForgotUsernameForm', {
'sitekey' : RECAPTCHA_SITE_KEY,
'theme' : 'light'
});
} catch (err) {
// console.log('OneForgotUsernameForm not found');
}
try {
// Render the OneRegisterLeftTabForm on the element with ID
// "OneRegisterLeftTabForm"
OneRegisterLeftTabForm = grecaptcha.render('OneRegisterLeftTabForm', {
'sitekey' : RECAPTCHA_SITE_KEY,
'theme' : 'light'
});
} catch (err) {
// console.log('OneRegisterLeftTabForm not found');
}
try {
// Render the OneRegisterRightTabForm on the element with ID
// "OneRegisterRightTabForm"
OneRegisterRightTabForm = grecaptcha.render('OneRegisterRightTabForm',
{
'sitekey' : RECAPTCHA_SITE_KEY,
'theme' : 'light'
});
} catch (err) {
// console.log('OneRegisterRightTabForm not found');
}
try {
OneContactForm = grecaptcha.render('OneContactForm', {
'sitekey' : RECAPTCHA_SITE_KEY,
'theme' : 'light'
});
} catch (err) {
// console.log('OneContactForm not found');
}
try {
OneBusinessContactForm = grecaptcha.render('OneBusinessContactForm', {
'sitekey' : RECAPTCHA_SITE_KEY,
'theme' : 'light'
});
} catch (err) {
// console.log('OneBusinessContactForm not found');
}
};
/*----- End of ReCaptcha -----*/
$('document').ready(function(){
$('.banner-slider-item').click(function(e) {
thisdata = $(this).attr('data-slide-link');
if (typeof thisdata != 'undefined') {
e.preventDefault();
window.location.href = thisdata;
}
});
})
/*-------------------------- Cosmote ONE Contact form Start -------------------------- */
$("#cosmote-business-one-contact form").ajaxForm({
dataType : "json",
beforeSubmit: function(){
},
success : function(data, status, xhr, form) {
var isBusiness=form.hasClass("Business");
var businessSuffix=isBusiness?".Business":"";
if (data.status == 'OK') {
setTimeout(function(){
alertBox(bundles.getTranslation('Hub.One'+businessSuffix+'.ContactForm.SuccessMessageBody'),{
title : bundles.getTranslation('Hub.One'+businessSuffix+'.ContactForm.SuccessMessageTitle'),
type : 'info'
});
$(".alert-info button[data-dismiss='alert']").click(function(){
window.location.replace(isBusiness?"/businessone/":"/one/");
});
}, globalTimers.popupTimer);
} else {
grecaptcha.reset();
setTimeout(function(){
alertBox(bundles.getTranslation('Hub.One'+businessSuffix+'.ContactForm.ErrorMessageBody'),{
title : bundles.getTranslation('Hub.One'+businessSuffix+'.ContactForm.ErrorMessageTitle'),
type : 'danger',
target: form,
});
}, globalTimers.popupTimer);
}
},
error : function(data, status, xhr, form) {
grecaptcha.reset();
var isBusiness=form.hasClass("Business")?"Business":"";
var businessSuffix=isBusiness?".Business":"";
setTimeout(function(){
alertBox(bundles.getTranslation('Hub.One'+businessSuffix+'.ContactForm.ErrorMessageBody'),{
title : bundles.getTranslation('Hub.One'+businessSuffix+'.ContactForm.ErrorMessageTitle'),
type : 'danger',
target: form,
});
}, globalTimers.popupTimer);
}
});
/*--------------------------- Cosmote ONE Contact form End --------------------------- */
/*--------------------------- Cosmote ONE Fixed Campaign Popup START ---------------- */
$("document").ready(function(){
fixedCampaign.init();
})
var fixedCampaign=(function(){
var fixedCampaignIframe;
var fixedCampaignPopup;
function init(){
fixedCampaignIframe=$(".fixedCampaignPopup");
fixedCampaignPopup="";
}
function showPopup (){
try{
if (fixedCampaignIframe!=undefined &&
fixedCampaignIframe.length>0 &&
fixedCampaignPopup==""){
fixedCampaignPopup=cModal.open({html:fixedCampaignIframe[0].outerHTML});
return fixedCampaignPopup;
}else{
console.log("Could not open Fixed Campaign Popup.");
return -1;
}
}
catch(err){
console.log("Could not open Fixed Campaign Popup. Error: ",err);
return -1;
}
}
function hidePopup (){
try{
if (fixedCampaignPopup!=""){
cModal.close(fixedCampaignPopup);
var returnIdx=fixedCampaignPopup;
fixedCampaignPopup="";
return returnIdx;
}else{
console.log("Could not find Fixed Campaign Popup to close.");
return -1;
}
}catch(err){
console.log("Could not close Fixed Campaign Popup. Error: ",err);
return -1;
}
}
return {
showPopup:showPopup,
hidePopup:hidePopup,
init:init
}
})();
function showFixedCampaignPopup(){
return fixedCampaign.showPopup();
}
function hideFixedCampaignPopup(){
return fixedCampaign.hidePopup();
}
/*--------------------------- Cosmote ONE Fixed Campaign Popup END ------------------ */