1. Import
@@ -0,0 +1,4 @@
|
||||
AuthType Basic
|
||||
AuthName "Authentication required"
|
||||
AuthUserFile /srv/www/.htusers
|
||||
require user v_admin mi2ju_admin
|
||||
@@ -0,0 +1,26 @@
|
||||
-- ANALYSE DER OrderRequest-Logfiles
|
||||
|
||||
|
||||
-- Debitoren mit aktiviertem Autoresponder identifizieren
|
||||
SELECT * FROM parameter WHERE par_key like '%AUTO_RESPONSE%' ORDER BY par_value ASC LIMIT 0, 1000
|
||||
|
||||
|
||||
-- t:m Debitoren
|
||||
SELECT hq.hq_id, hq.hq_mnemonic, cs.cs_eid, cmp.cmp_comp
|
||||
FROM headquarters AS hq, customer AS cs, company AS cmp
|
||||
WHERE cs.cs_id IN (823922,839904,823862,819783,832514,835016,833194,819825,823978,203463,835489) AND cs.cmp_id = cmp.cmp_id AND cs.hq_id = hq.hq_id
|
||||
ORDER BY cs.hq_id, cs.cs_eid
|
||||
|
||||
|
||||
Bsp."time:matters":
|
||||
1 HB STHB922142 time:matters GmbH
|
||||
2 HH STHH927621 Time:matters GmbH
|
||||
3 B STB975597 time:matters GmbH
|
||||
4 H STH910930 time:matters GmbH
|
||||
5 F STF909226 time:matters GmbH
|
||||
6 DD STDD908923 time:matters GmbH
|
||||
7 E STE900608 Time:matters GmbH
|
||||
7 E STE902147 Time:matters GmbH
|
||||
8 L STL908468 time:matters GmbH
|
||||
9 M STM900029 time:matters GmbH
|
||||
11 S STS910215 time:matters GmbH
|
||||
@@ -0,0 +1,48 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css" />
|
||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>
|
||||
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDnbitL06iLp3elmj-WtPudCykX9xvXcVE&libraries=places"></script>
|
||||
<script>
|
||||
//https://www.webdew.com/blog/google-places-autocomplete-implementation
|
||||
google.maps.event.addDomListener(window, 'load', initialize);
|
||||
function initialize() {
|
||||
var input = document.getElementById('autocomplete_search');
|
||||
var autocomplete = new google.maps.places.Autocomplete(input);
|
||||
autocomplete.addListener('place_changed', function () {
|
||||
var place = autocomplete.getPlace();
|
||||
// place variable will have all the information you are looking for.
|
||||
$('#lat').val(place.geometry['location'].lat());
|
||||
$('#long').val(place.geometry['location'].lng());
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<title>Google map Places Autocomplete – Tutsmake.com</title>
|
||||
<style>
|
||||
.container{
|
||||
padding: 10%;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12"><h2>Google Places Autocomplete InputBox Example Without Showing Map</h2></div>
|
||||
<div class="col-12">
|
||||
<div id="custom-search-input">
|
||||
<div class="input-group">
|
||||
<input id="autocomplete_search" name="autocomplete_search" type="text" class="form-control" placeholder="Search" />
|
||||
<input type="hidden" name="lat">
|
||||
<input type="hidden" name="long">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,48 @@
|
||||
ALTER TABLE `serviceplzcustomer` ADD `vht_id` INT( 10 ) DEFAULT '0' NOT NULL AFTER `cs_id` ;
|
||||
ALTER TABLE `serviceplzhistory` ADD `vht_id` INT( 10 ) DEFAULT '0' NOT NULL AFTER `cs_id` ;
|
||||
|
||||
ALTER TABLE `serviceplzareacustomer` ADD `vht_id` INT( 10 ) DEFAULT '0' NOT NULL AFTER `cs_id` ;
|
||||
ALTER TABLE `serviceplzareahistory` ADD `vht_id` INT( 10 ) DEFAULT '0' NOT NULL AFTER `cs_id` ;
|
||||
|
||||
|
||||
|
||||
INSERT INTO metatype (mt_id, mt_type, mt_sort, mt_value, mt_modify) VALUES (222, 'vehicletype', 11, 'LKW 12 To.', '2012-07-11 00:00:00');
|
||||
|
||||
|
||||
INSERT INTO servicetype (srvt_mode, hq_id, cs_id, srvt_name, srvt_group, srvt_modify) VALUES (0, 1, 0, 'LKW 12 To.', '', '2012-07-29 14:23:59');
|
||||
INSERT INTO servicetype (srvt_mode, hq_id, cs_id, srvt_name, srvt_group, srvt_modify) VALUES (0, 2, 0, 'LKW 12 To.', '', '2012-07-29 14:23:59');
|
||||
INSERT INTO servicetype (srvt_mode, hq_id, cs_id, srvt_name, srvt_group, srvt_modify) VALUES (0, 3, 0, 'LKW 12 To.', '', '2012-07-29 14:23:59');
|
||||
INSERT INTO servicetype (srvt_mode, hq_id, cs_id, srvt_name, srvt_group, srvt_modify) VALUES (0, 4, 0, 'LKW 12 To.', '', '2012-07-29 14:23:59');
|
||||
INSERT INTO servicetype (srvt_mode, hq_id, cs_id, srvt_name, srvt_group, srvt_modify) VALUES (0, 5, 0, 'LKW 12 To.', '', '2012-07-29 14:23:59');
|
||||
INSERT INTO servicetype (srvt_mode, hq_id, cs_id, srvt_name, srvt_group, srvt_modify) VALUES (0, 6, 0, 'LKW 12 To.', '', '2012-07-29 14:23:59');
|
||||
INSERT INTO servicetype (srvt_mode, hq_id, cs_id, srvt_name, srvt_group, srvt_modify) VALUES (0, 7, 0, 'LKW 12 To.', '', '2012-07-29 14:23:59');
|
||||
INSERT INTO servicetype (srvt_mode, hq_id, cs_id, srvt_name, srvt_group, srvt_modify) VALUES (0, 8, 0, 'LKW 12 To.', '', '2012-07-29 14:23:59');
|
||||
|
||||
|
||||
|
||||
IMPORT der Preisdateien:
|
||||
- Preisdateien nach ../temp/ spielen
|
||||
- Individuelle Importskripte nach ../sysadmin/ kopieren
|
||||
- POTENTIELLEN LAUF TESTEN!!!
|
||||
- In den individuellen Importskripten (MISC bzw. MC-Notebook) bei ERFOLG "$fire = true" setzen
|
||||
- Scharfe individuelle Importskripte erneut nach ../sysadmin/ kopieren
|
||||
- ECHTLAUF INITIIEREN!!!
|
||||
|
||||
|
||||
Parameter "SERVICE_VEHICLE_TYPE_ENABLED" und "SERVICE_VEHICLE_TYPE_MAPPING" sollten für alle NLn LIVE existieren:
|
||||
Parameter "SERVICE_VEHICLE_TYPE_ENABLED" für DD aktivieren
|
||||
Parameter "SERVICE_VEHICLE_TYPE_MAPPING" für DD kontrollieren
|
||||
|
||||
|
||||
LOKALES Umbenennen der folgenden Dateien:
|
||||
../admin/services_plz_VHT.php in ../admin/services_plz.php
|
||||
../admin/services_plz_area_VHT.php in ../admin/services_plz_area.php
|
||||
../include/services_func_VHT.inc.php in ../include/services_func.inc.php
|
||||
|
||||
|
||||
Einspielen der folgenden Dateien auf den LIVE-Servern:
|
||||
../admin/services_plz.php
|
||||
../admin/services_plz_area.php
|
||||
../include/services_func.inc.php
|
||||
../include/global.inc.php
|
||||
|
||||
@@ -0,0 +1,999 @@
|
||||
4132;53,076693;8,812633;484
|
||||
4142;53,072653;8,803767;565
|
||||
4152;53,080467;8,801516;518
|
||||
4162;53,087056;8,821289;614
|
||||
4172;53,082841;8,80758;534
|
||||
4182;53,092839;8,80563;736
|
||||
4192;53,0633;8,820413;987
|
||||
4202;53,051472;8,794385;1353
|
||||
4212;53,067859;8,802003;510
|
||||
4222;53,02972;8,860163;1873
|
||||
4232;53,01422;8,822534;1922
|
||||
4242;53,040993;8,818237;974
|
||||
4252;53,042826;8,78214;1062
|
||||
4262;53,051941;8,772523;832
|
||||
4312;53,118065;8,897714;1027
|
||||
4322;53,104301;8,894568;739
|
||||
4332;53,109467;8,880018;671
|
||||
4342;52,991331;8,81915;1777
|
||||
4352;52,966982;8,762377;3116
|
||||
4362;53,011527;8,777629;1630
|
||||
4402;53,067406;8,870793;682
|
||||
4412;53,055412;8,883733;1042
|
||||
4422;53,054384;8,862443;1170
|
||||
4432;53,092687;8,970935;4125
|
||||
4442;53,071495;8,901647;943
|
||||
4452;53,090815;8,905514;1376
|
||||
4462;53,086949;9,029254;3910
|
||||
4472;53,044859;8,945055;2745
|
||||
4482;53,101435;8,956549;2916
|
||||
4492;53,060592;8,923156;918
|
||||
4502;53,039172;8,928784;1685
|
||||
4512;53,043707;8,895736;1410
|
||||
4522;53,089785;8,842754;858
|
||||
4532;53,074688;8,843606;1069
|
||||
4542;53,085114;8,829017;573
|
||||
4552;53,075125;8,860143;780
|
||||
4562;53,064221;8,843491;1013
|
||||
4572;53,085006;8,844552;1107
|
||||
4582;53,077183;8,833317;722
|
||||
4592;53,071332;8,822254;657
|
||||
4602;53,081486;8,820729;588
|
||||
4852;53,092609;8,79839;704
|
||||
4862;53,081819;8,774348;1085
|
||||
4872;53,100188;8,775452;1242
|
||||
4942;53,124637;8,818081;2266
|
||||
4952;53,090551;8,74707;2688
|
||||
4962;53,142591;8,769479;3159
|
||||
4972;53,136411;8,754127;1836
|
||||
4982;53,111227;8,710459;2110
|
||||
4992;53,142253;8,715741;1536
|
||||
5452;53,171379;8,948427;3735
|
||||
5462;53,137053;8,910965;992
|
||||
5472;53,159898;8,874565;2367
|
||||
5632;53,06926;8,797302;665
|
||||
5642;53,063764;8,767281;1304
|
||||
5652;53,074407;8,777515;894
|
||||
14522;53,224617;9,006697;3812
|
||||
14532;53,179709;9,000684;3404
|
||||
14542;53,216012;8,94115;3266
|
||||
18962;53,049532;8,984108;859
|
||||
18972;53,041391;8,976771;702
|
||||
18982;53,047156;8,962778;726
|
||||
20372;53,236651;9,183952;4556
|
||||
20382;53,188887;9,084271;5142
|
||||
20392;53,278699;9,075684;6102
|
||||
24592;53,108504;8,872469;1145
|
||||
24602;53,099379;8,84689;854
|
||||
24612;53,146269;8,83846;3073
|
||||
25732;53,050441;8,934233;838
|
||||
25742;53,032621;8,944564;1309
|
||||
25752;53,036448;8,910395;1314
|
||||
26182;53,096067;8,993934;3174
|
||||
26192;53,08474;8,926763;743
|
||||
26202;53,110006;8,931877;1899
|
||||
26932;53,077339;8,810914;522
|
||||
26942;53,068853;8,818959;730
|
||||
26952;53,073082;8,804019;437
|
||||
27352;53,087173;8,758015;715
|
||||
27362;53,084762;8,721571;1669
|
||||
27372;53,101575;8,741921;1158
|
||||
27652;53,1256;8,758216;1045
|
||||
27662;53,11823;8,735236;979
|
||||
27672;53,13552;8,745525;1022
|
||||
27682;53,100964;8,902082;2246
|
||||
27692;53,079996;8,874403;637
|
||||
27702;53,087608;8,861354;779
|
||||
28912;53,177233;8,783918;5374
|
||||
28922;53,106245;8,670655;3043
|
||||
28932;53,139892;8,66225;2051
|
||||
29122;53,04972;8,866899;1093
|
||||
29132;53,034119;8,858591;1437
|
||||
29142;53,050164;8,840551;758
|
||||
30712;53,018877;9,004985;2552
|
||||
30722;53,006444;8,959633;2576
|
||||
30732;53,044848;8,98618;1981
|
||||
30982;53,077694;8,788017;721
|
||||
30992;53,027045;8,735511;5180
|
||||
31002;53,100093;8,746245;2505
|
||||
31882;53,060853;8,939551;1549
|
||||
31892;53,041021;8,896495;2066
|
||||
31902;53,066613;8,905101;753
|
||||
32092;52,982542;8,852982;965
|
||||
33022;53,083007;8,813406;141
|
||||
36082;53,08199;8,81269;773
|
||||
36092;53,06628;8,786121;1641
|
||||
36102;53,086382;8,79182;873
|
||||
38782;53,002143;8,909643;2157
|
||||
38792;52,967022;8,897618;2691
|
||||
38802;53,003214;8,860658;1787
|
||||
40192;53,132074;8,801433;2860
|
||||
40202;53,093324;8,778609;757
|
||||
40212;53,098088;8,735403;2262
|
||||
40402;53,047896;8,975227;1229
|
||||
40412;53,028373;8,976385;1456
|
||||
40422;53,031606;8,950914;1445
|
||||
41512;52,981977;8,929999;2697
|
||||
41522;52,966555;8,868528;1873
|
||||
41532;53,003375;8,858262;1983
|
||||
42622;53,132135;8,799037;2047
|
||||
42632;53,108837;8,742193;1822
|
||||
42642;53,144729;8,754203;2004
|
||||
42682;53,045031;8,8886;1007
|
||||
42692;53,01884;8,922611;2187
|
||||
42702;53,02323;8,868686;1796
|
||||
42712;53,035144;8,798953;974
|
||||
42722;53,016485;8,827257;1556
|
||||
42732;53,014833;8,777546;1879
|
||||
43852;53,182986;8,97388;3993
|
||||
43862;53,13571;8,962123;2603
|
||||
43872;53,171967;8,872027;3008
|
||||
45112;53,075903;8,78927;1275
|
||||
45122;53,06212;8,797205;686
|
||||
45132;53,052025;8,770309;1561
|
||||
46982;53,079866;8,7607;571
|
||||
46992;53,070987;8,753889;706
|
||||
47002;53,079497;8,73702;1147
|
||||
47132;53,098818;9,030123;3832
|
||||
47142;53,054882;9,059151;2815
|
||||
47152;53,043693;9,002713;1386
|
||||
47832;53,119179;8,824103;2379
|
||||
47842;53,091358;8,817447;579
|
||||
47852;53,101924;8,809184;977
|
||||
49092;53,078397;8,847902;776
|
||||
49102;53,062436;8,828445;1439
|
||||
49112;53,083785;8,83007;852
|
||||
49152;53,122423;8,994306;5229
|
||||
49162;53,048515;8,890169;3631
|
||||
49172;53,120792;8,849267;4383
|
||||
49752;53,102122;8,886196;992
|
||||
49762;53,093136;8,872584;501
|
||||
49772;53,102185;8,858141;1209
|
||||
50112;53,107164;8,816534;1158
|
||||
50122;53,100877;8,793295;633
|
||||
50132;53,135892;8,791328;2526
|
||||
51552;53,091534;8,874597;1942
|
||||
51562;53,069167;8,889277;839
|
||||
51572;53,068447;8,866643;929
|
||||
51612;53,054425;8,830063;938
|
||||
51622;53,039952;8,801221;1573
|
||||
51632;53,058503;8,811127;764
|
||||
52662;53,075734;8,955094;1695
|
||||
52672;53,067224;8,926892;727
|
||||
52682;53,079288;8,924151;748
|
||||
52872;53,164537;8,89484;3602
|
||||
52882;53,122921;8,936635;3068
|
||||
52892;53,126204;8,858795;1599
|
||||
4282;53,047562;8,74476;1113
|
||||
4292;53,02959;8,731964;1512
|
||||
4302;53,052552;8,705011;1640
|
||||
4612;53,058294;8,660777;2235
|
||||
4622;53,01393;8,607813;3542
|
||||
4632;53,076018;8,606319;2920
|
||||
4642;53,029612;8,677608;1230
|
||||
4652;53,001122;8,634167;3172
|
||||
4662;53,037687;8,649499;924
|
||||
4672;53,082283;8,645885;2343
|
||||
4682;53,092722;8,593131;2723
|
||||
4692;53,031081;8,585156;3947
|
||||
4702;53,052005;8,676616;1308
|
||||
4712;53,037113;8,645725;1348
|
||||
4722;53,064377;8,650113;1485
|
||||
4732;53,045581;8,600165;1033
|
||||
4742;53,029042;8,579263;2059
|
||||
4762;53,105818;8,53854;2310
|
||||
4792;53,110273;8,498798;1855
|
||||
4802;53,092032;8,468709;1414
|
||||
4812;53,130997;8,449084;2518
|
||||
4822;53,092869;8,427495;2703
|
||||
4832;53,060057;8,461283;2597
|
||||
4842;53,059318;8,395114;2864
|
||||
4882;53,023164;8,589658;1662
|
||||
4892;53,005996;8,543095;2691
|
||||
4902;53,045767;8,544267;2064
|
||||
7042;52,996261;8,708377;1083
|
||||
7052;52,96264;8,707137;2314
|
||||
7062;52,985399;8,666391;1912
|
||||
11102;52,914424;8,499355;3108
|
||||
11112;52,892744;8,448122;3787
|
||||
11122;52,944083;8,44698;2711
|
||||
11882;52,933498;8,787003;3018
|
||||
11892;52,876468;8,838949;3793
|
||||
11902;52,880111;8,745571;5678
|
||||
13232;52,895387;8,622705;2311
|
||||
13242;52,874477;8,583201;2924
|
||||
13252;52,911097;8,576079;2108
|
||||
14312;52,730649;8,502497;3295
|
||||
14322;52,686512;8,537024;2800
|
||||
14332;52,701988;8,477987;2381
|
||||
14372;52,82368;8,627426;3587
|
||||
14382;52,779627;8,677732;3550
|
||||
14392;52,783874;8,600778;3856
|
||||
20222;52,84799;8,771897;2976
|
||||
20232;52,821198;8,727866;3279
|
||||
20242;52,863377;8,681151;3414
|
||||
22472;52,950455;8,590087;3297
|
||||
22482;52,923975;8,531341;3474
|
||||
22492;52,973668;8,522817;3224
|
||||
25582;52,772729;8,792518;4118
|
||||
25592;52,71157;8,748663;4296
|
||||
25602;52,735613;8,691287;4500
|
||||
29092;53,065822;8,734025;1166
|
||||
29102;53,044629;8,74698;1414
|
||||
29112;53,058385;8,704625;1493
|
||||
31552;53,043098;8,735103;1016
|
||||
31562;53,027118;8,737519;1203
|
||||
31572;53,036244;8,704331;1245
|
||||
35452;52,982087;8,610966;1905
|
||||
35462;52,946429;8,653048;2365
|
||||
35472;52,95099;8,599973;1672
|
||||
36022;53,137222;8,450738;2722
|
||||
36032;53,099076;8,491642;2327
|
||||
36042;53,099598;8,43094;1694
|
||||
39142;52,905324;8,426036;2516
|
||||
39152;52,861167;8,502206;3760
|
||||
39162;52,873173;8,404595;1932
|
||||
39232;52,899774;8,436693;2495
|
||||
40642;52,978173;8,45863;3188
|
||||
40652;52,939901;8,399804;2808
|
||||
40662;52,994395;8,375584;3032
|
||||
41272;53,096797;8,57163;3661
|
||||
41282;53,043656;8,559801;2721
|
||||
41292;53,052831;8,496567;3987
|
||||
41422;52,939288;8,920361;4069
|
||||
41432;52,901476;8,822707;5562
|
||||
41442;52,956959;8,811924;3164
|
||||
44392;52,905185;8,778201;2581
|
||||
44402;52,850995;8,74729;5204
|
||||
44412;52,904857;8,673117;4125
|
||||
44632;53,055018;8,525755;1680
|
||||
44642;53,048327;8,461365;2509
|
||||
45172;52,913184;8,851175;1358
|
||||
45182;52,881301;8,832059;2998
|
||||
45192;52,925091;8,80024;1918
|
||||
45472;52,893902;8,905239;2565
|
||||
45482;52,858807;8,878449;2058
|
||||
45492;52,884969;8,851988;1624
|
||||
49452;53,01121;8,748155;1630
|
||||
49462;52,976802;8,773721;2406
|
||||
49472;52,968606;8,705046;3443
|
||||
49482;53,041301;8,550845;1362
|
||||
49492;53,01199;8,522671;2292
|
||||
49502;53,035474;8,492114;2620
|
||||
49512;53,023598;8,702493;1134
|
||||
49522;53,010996;8,721386;1159
|
||||
49532;52,997015;8,668669;2643
|
||||
51072;53,034123;8,654816;2091
|
||||
51082;52,991738;8,658751;3012
|
||||
51092;53,025187;8,606914;1649
|
||||
8791;53,530717;9,392789;1827
|
||||
8801;53,511464;9,424233;2127
|
||||
8811;53,50912;9,373941;1908
|
||||
12091;53,463566;9,550166;3095
|
||||
12101;53,401325;9,497649;4566
|
||||
12111;53,454357;9,462941;5038
|
||||
16331;53,618212;9,315988;3018
|
||||
16341;53,581099;9,23929;3616
|
||||
16351;53,628828;9,262877;3467
|
||||
23821;53,49484;9,369142;4255
|
||||
23831;53,451642;9,288668;4878
|
||||
23841;53,532264;9,258686;4261
|
||||
28801;53,464494;9,480711;3194
|
||||
28811;53,414016;9,405862;4557
|
||||
28821;53,477102;9,424582;2771
|
||||
8032;53,672105;8,197696;6673
|
||||
8042;53,573551;8,100693;966
|
||||
8052;53,572054;8,063551;1560
|
||||
8062;53,553565;8,123657;2482
|
||||
8072;53,536144;8,064683;1386
|
||||
8082;53,565487;8,045494;2713
|
||||
8092;53,530495;8,117331;1710
|
||||
8102;53,489103;8,074804;4250
|
||||
8112;53,544838;8,051301;2747
|
||||
8122;53,517057;8,245942;5740
|
||||
8132;53,469881;8,113304;5481
|
||||
8142;53,541594;8,138518;1159
|
||||
8152;53,561178;7,950934;1686
|
||||
8162;53,539842;7,976777;1650
|
||||
8172;53,524143;7,910879;2945
|
||||
8182;53,48908;8,052041;1352
|
||||
8192;53,46695;8,007386;2383
|
||||
8202;53,501899;8,012197;1911
|
||||
9582;53,426215;8,221461;5645
|
||||
9592;53,378819;8,16218;2740
|
||||
9602;53,41622;8,092635;2823
|
||||
10422;53,483752;7,832143;3548
|
||||
10432;53,441337;7,875865;3591
|
||||
10442;53,44532;7,799853;4106
|
||||
10452;53,581505;8,20986;9412
|
||||
10462;53,455547;8,204876;6206
|
||||
10472;53,50564;8,088296;2409
|
||||
10712;53,398733;8,031671;2219
|
||||
10722;53,348826;7,970437;3996
|
||||
10732;53,44475;7,952948;4542
|
||||
13742;53,586322;7,794629;2593
|
||||
13752;53,535054;7,779734;3642
|
||||
13762;53,5589;7,732623;2973
|
||||
14162;53,712881;7,962323;6509
|
||||
14172;53,651001;7,941851;3171
|
||||
14182;53,644672;7,871231;2913
|
||||
14192;53,673187;8,204866;8107
|
||||
14202;53,596449;8,069608;4732
|
||||
14212;53,702947;8,070103;9050
|
||||
17642;53,368594;8,155148;2966
|
||||
17652;53,332868;8,143601;3167
|
||||
17662;53,354235;8,073217;3131
|
||||
18602;53,613062;7,903277;4119
|
||||
18612;53,576131;7,946451;3313
|
||||
18622;53,549988;7,83061;5295
|
||||
23252;53,341247;8,258115;4315
|
||||
29752;53,548163;8,022804;2133
|
||||
29762;53,519948;8,045261;1134
|
||||
29782;53,608138;8,200866;6068
|
||||
29802;53,65351;8,09001;7208
|
||||
30022;53,43886;7,992074;2363
|
||||
30032;53,395432;7,989452;2758
|
||||
30042;53,424931;7,915181;3046
|
||||
30082;53,694791;8,091755;9379
|
||||
30382;53,602295;8,206289;7693
|
||||
30392;53,551869;8,096152;1921
|
||||
30402;53,572903;8,0419;3382
|
||||
30502;53,51721;8,245959;6125
|
||||
30512;53,461383;8,0866;3550
|
||||
30522;53,537477;8,121899;1024
|
||||
40612;53,417474;7,934576;3614
|
||||
40622;53,366359;7,977875;3123
|
||||
40632;53,383762;7,882898;3729
|
||||
41482;53,459078;8,10242;4003
|
||||
41492;53,521214;8,092744;1385
|
||||
41502;53,533524;8,114805;1193
|
||||
42802;53,413295;8,300618;4568
|
||||
42812;53,375239;8,24545;3644
|
||||
42952;53,377062;8,148956;3624
|
||||
42962;53,363371;8,055285;4015
|
||||
42972;53,423231;8,066567;2984
|
||||
49902;53,506469;8,152559;4437
|
||||
49912;53,464628;8,183454;6716
|
||||
49922;53,497801;8,004454;5447
|
||||
50052;53,509396;8,233649;5361
|
||||
50062;53,506026;8,114729;2052
|
||||
50202;53,589792;8,141524;7537
|
||||
50212;53,469676;8,244223;6367
|
||||
50222;53,478596;8,006352;6333
|
||||
50772;53,536529;7,97187;1871
|
||||
50782;53,504304;7,947963;2075
|
||||
50792;53,530822;7,917931;1807
|
||||
51852;53,510558;8,024068;1267
|
||||
51862;53,480333;8,002932;2383
|
||||
51872;53,502981;7,936311;4186
|
||||
7822;53,544194;8,600056;966
|
||||
7832;53,495617;8,521799;5746
|
||||
7842;53,588059;8,462652;6382
|
||||
7852;53,566767;8,646824;3985
|
||||
7862;53,519375;8,519549;4967
|
||||
7872;53,619957;8,433355;6945
|
||||
7912;53,615058;8,679324;4256
|
||||
7922;53,579726;8,621765;1274
|
||||
7932;53,643368;8,566389;6056
|
||||
7942;53,530179;8,648722;3152
|
||||
7952;53,478853;8,606553;3690
|
||||
7962;53,565087;8,46744;7927
|
||||
7972;53,516986;8,49718;2857
|
||||
7982;53,439265;8,451758;5554
|
||||
7992;53,500091;8,425205;3661
|
||||
9432;53,61384;8,616319;1990
|
||||
9442;53,59083;8,554743;2572
|
||||
9452;53,667178;8,498347;7855
|
||||
10392;53,741989;8,514916;8328
|
||||
10402;53,673443;8,595492;2274
|
||||
10412;53,734531;8,43927;8327
|
||||
11132;53,605814;8,644787;4339
|
||||
11142;53,57047;8,599684;1218
|
||||
11152;53,611002;8,435743;6565
|
||||
11612;53,507176;9,170687;2930
|
||||
11622;53,473858;9,1662;3383
|
||||
11632;53,477962;9,091269;2936
|
||||
11642;53,546536;8,401318;3068
|
||||
11652;53,514934;8,34736;3494
|
||||
11662;53,584237;8,33023;5223
|
||||
16472;53,628785;9,172156;4722
|
||||
16482;53,60051;9,092749;6689
|
||||
16492;53,66046;9,005892;5423
|
||||
22412;53,455484;8,671841;3626
|
||||
22422;53,415586;8,654722;4300
|
||||
22432;53,440866;8,567682;3780
|
||||
25462;53,655441;8,890494;5666
|
||||
25472;53,595373;8,819933;3886
|
||||
25482;53,668021;8,774228;4935
|
||||
29482;53,708158;8,65631;2848
|
||||
29492;53,686299;8,74477;4097
|
||||
29502;53,665172;8,659898;2099
|
||||
29722;53,511405;8,595173;726
|
||||
29732;53,491707;8,630941;2128
|
||||
29742;53,491045;8,572597;2041
|
||||
31042;53,630527;8,869961;4790
|
||||
34702;53,553423;9,055753;4878
|
||||
34712;53,507928;9,076083;3212
|
||||
34722;53,534855;8,980562;3713
|
||||
36382;53,443074;8,851245;3048
|
||||
36392;53,402941;8,803054;3069
|
||||
36402;53,435834;8,776016;2780
|
||||
38932;53,518685;8,900901;4137
|
||||
38942;53,521246;8,8154;4377
|
||||
38952;53,577028;8,858043;3585
|
||||
4972;53,136411;8,754127;1836
|
||||
4982;53,111227;8,710459;2110
|
||||
4992;53,142253;8,715741;1536
|
||||
5002;53,16498;8,643578;942
|
||||
5012;53,138452;8,606868;2653
|
||||
5022;53,176386;8,622547;1140
|
||||
5152;53,251563;8,490814;4747
|
||||
5162;53,185189;8,543086;2924
|
||||
5172;53,176115;8,443814;4758
|
||||
5182;53,220754;8,564831;2905
|
||||
5192;53,191246;8,589106;1088
|
||||
5202;53,170384;8,534492;3023
|
||||
5212;53,230515;8,63496;2914
|
||||
5222;53,213422;8,58589;1334
|
||||
5232;53,252216;8,564692;2875
|
||||
5242;53,192124;8,614528;1653
|
||||
5252;53,149513;8,600702;2578
|
||||
5262;53,178687;8,57876;1479
|
||||
5272;53,19046;8,649445;1254
|
||||
5282;53,154604;8,610544;3353
|
||||
5292;53,19667;8,61914;1278
|
||||
5302;53,209957;8,696007;3647
|
||||
5312;53,163106;8,693551;1374
|
||||
5322;53,176472;8,672517;808
|
||||
5332;53,183743;8,780647;3619
|
||||
5342;53,156284;8,713384;1735
|
||||
5352;53,187182;8,708849;1645
|
||||
5422;53,232871;8,850267;3426
|
||||
5432;53,209416;8,781297;2391
|
||||
5442;53,251806;8,759572;2506
|
||||
5542;53,322123;8,532453;3430
|
||||
5552;53,289093;8,44007;4049
|
||||
5562;53,355867;8,412563;4454
|
||||
8002;53,405522;8,509256;2962
|
||||
8012;53,378885;8,418926;3171
|
||||
8022;53,425802;8,417915;2857
|
||||
8572;53,244778;8,642772;1524
|
||||
8582;53,226178;8,652363;1999
|
||||
8592;53,230742;8,596108;2300
|
||||
10212;53,226094;9,343008;3333
|
||||
10222;53,206453;9,293817;3107
|
||||
10232;53,243498;9,251591;3383
|
||||
10272;53,326906;9,32975;3819
|
||||
10282;53,289802;9,250644;2723
|
||||
10292;53,334415;9,25273;3699
|
||||
10362;53,400061;9,211866;3982
|
||||
10372;53,369089;9,25379;3304
|
||||
10382;53,35045;9,145554;4061
|
||||
12122;53,273305;8,672029;2150
|
||||
12132;53,260272;8,626385;1934
|
||||
12142;53,281028;8,618074;2198
|
||||
15302;53,246546;8,448928;3713
|
||||
15312;53,19747;8,438781;2873
|
||||
15322;53,230033;8,391608;3868
|
||||
21662;53,348186;8,970328;6587
|
||||
21672;53,276303;8,88671;6251
|
||||
21682;53,352755;8,809127;6119
|
||||
22442;53,358032;8,589254;3452
|
||||
22452;53,305235;8,628467;3807
|
||||
22462;53,306278;8,561445;3595
|
||||
24172;53,434157;9,060983;4480
|
||||
24182;53,415086;8,960607;4369
|
||||
24192;53,47392;8,956477;3959
|
||||
25792;53,200964;8,757033;1866
|
||||
25802;53,168978;8,759298;1719
|
||||
25812;53,188267;8,731591;1005
|
||||
28912;53,177233;8,783918;5374
|
||||
28922;53,106245;8,670655;3043
|
||||
28932;53,139892;8,66225;2051
|
||||
29962;53,190443;8,65009;1549
|
||||
29972;53,165185;8,672029;1846
|
||||
29982;53,150305;8,60197;3467
|
||||
32062;53,189608;8,771167;4117
|
||||
32072;53,168628;8,687486;2013
|
||||
32082;53,214704;8,688887;2808
|
||||
32992;53,291568;9,372787;3778
|
||||
33002;53,25644;9,275013;2915
|
||||
33012;53,321319;9,284945;4938
|
||||
33832;53,219233;8,913753;2008
|
||||
33862;53,452212;9,216927;2800
|
||||
33872;53,410791;9,16298;3348
|
||||
33882;53,457904;9,130818;3349
|
||||
34042;53,179364;8,508298;1301
|
||||
34052;53,156254;8,475206;2193
|
||||
34062;53,188417;8,458691;1985
|
||||
36412;53,333151;8,737757;3155
|
||||
36422;53,288955;8,704987;3007
|
||||
36432;53,326825;8,679889;2660
|
||||
38842;53,363032;8,542791;1394
|
||||
38852;53,350123;8,509205;1310
|
||||
38862;53,372783;8,501398;1725
|
||||
42352;53,204956;8,544219;1243
|
||||
42362;53,188481;8,55026;664
|
||||
42372;53,183506;8,520174;1545
|
||||
42652;53,370968;8,71053;3776
|
||||
42662;53,318907;8,649443;3674
|
||||
42672;53,382613;8,604159;3293
|
||||
45322;53,193462;8,614153;1882
|
||||
45332;53,153113;8,634978;2082
|
||||
45342;53,148317;8,565296;2872
|
||||
49662;53,20638;8,690547;4142
|
||||
49672;53,145841;8,660563;2265
|
||||
49682;53,16855;8,645558;564
|
||||
50712;53,199567;8,569581;1923
|
||||
50722;53,16534;8,592045;1804
|
||||
50732;53,15663;8,531114;2799
|
||||
51702;53,210654;8,695204;2257
|
||||
51712;53,240292;8,603756;4803
|
||||
51822;53,360474;8,468713;2356
|
||||
51832;53,341676;8,514853;2317
|
||||
7702;52,866975;9,610964;2214
|
||||
7712;52,822409;9,581999;2756
|
||||
7722;52,872641;9,568153;2779
|
||||
7792;52,833047;9,582194;3305
|
||||
7802;52,815543;9,501334;4021
|
||||
7812;52,87198;9,530073;2862
|
||||
10892;52,888305;9,497136;3764
|
||||
10902;52,848365;9,417198;4329
|
||||
10912;52,905611;9,421226;4415
|
||||
12872;53,027591;9,614082;4046
|
||||
12882;52,970071;9,611103;3617
|
||||
12892;52,9834;9,525851;4710
|
||||
40852;52,898207;9,599288;2559
|
||||
40862;52,861188;9,637494;2012
|
||||
40872;52,865789;9,578606;1596
|
||||
48672;52,978672;9,572909;5119
|
||||
48682;52,99347;9,45827;3946
|
||||
48692;53,050079;9,489605;4245
|
||||
5392;53,030912;9,081196;2426
|
||||
5402;52,989707;9,031883;2820
|
||||
5412;53,028284;9,027712;1322
|
||||
5572;53,031101;9,137024;3013
|
||||
5582;52,982657;9,136134;3085
|
||||
5592;52,980912;9,080682;3122
|
||||
7642;52,98269;9,227357;1737
|
||||
7652;52,969757;9,185378;2300
|
||||
7662;53,013011;9,199852;2820
|
||||
8542;52,85;9,271711;3919
|
||||
8552;52,832784;9,196056;2891
|
||||
8562;52,871161;9,166662;3445
|
||||
9612;53,059633;9,096652;2013
|
||||
9622;53,040239;9,060626;1206
|
||||
9632;53,066707;9,052078;1752
|
||||
10182;53,010685;9,06432;1213
|
||||
10192;52,981116;9,04893;2067
|
||||
10202;52,998621;9,02169;1668
|
||||
10212;53,226094;9,343008;3333
|
||||
10222;53,206453;9,293817;3107
|
||||
10232;53,243498;9,251591;3383
|
||||
10302;53,131831;9,425885;2419
|
||||
10312;53,089757;9,477069;3783
|
||||
10322;53,123579;9,384227;2419
|
||||
10332;53,093037;9,44252;3383
|
||||
10342;53,077835;9,367015;2191
|
||||
10352;53,115211;9,366719;2159
|
||||
10832;52,923067;9,261451;1674
|
||||
10842;52,903132;9,197951;2567
|
||||
10852;52,934742;9,223045;1729
|
||||
10862;52,949607;9,326401;3348
|
||||
10872;52,918328;9,371143;3945
|
||||
10882;52,951016;9,264314;5899
|
||||
11732;53,309208;9,57192;3721
|
||||
11742;53,278184;9,515722;4157
|
||||
11752;53,341526;9,470216;4690
|
||||
12842;53,202601;9,277039;4054
|
||||
12852;53,169722;9,330653;3196
|
||||
12862;53,17434;9,24689;3078
|
||||
16532;52,804319;9,168534;3572
|
||||
16542;52,756601;9,150399;3070
|
||||
16552;52,775734;9,091309;3386
|
||||
17192;52,895081;9,358877;4126
|
||||
17202;52,86326;9,288657;3940
|
||||
17212;52,914903;9,289551;3118
|
||||
18992;52,949426;9,016069;3178
|
||||
19002;52,903448;9,067742;3908
|
||||
19012;52,908264;8,982976;3527
|
||||
20072;53,151822;9,200918;3662
|
||||
20082;53,105378;9,25536;3235
|
||||
20092;53,10902;9,166445;5205
|
||||
20252;52,871697;8,959443;4899
|
||||
20262;52,817345;9,014965;6405
|
||||
20272;52,800364;8,880147;4874
|
||||
22262;53,17948;9,510614;5324
|
||||
22272;53,121372;9,500691;4460
|
||||
22282;53,183527;9,427816;3863
|
||||
23752;52,700538;8,804121;3542
|
||||
23762;52,670364;8,856399;3466
|
||||
23772;52,661536;8,772829;3246
|
||||
23782;52,669722;9,00082;4432
|
||||
23792;52,637367;8,926416;4419
|
||||
23802;52,714024;8,911968;4667
|
||||
24922;53,249161;9,426308;3669
|
||||
25162;52,810901;9,38846;3945
|
||||
25172;52,762993;9,445873;4101
|
||||
25182;52,758806;9,348107;3715
|
||||
26362;53,05643;9,36113;3523
|
||||
26372;53,031393;9,312398;2869
|
||||
26382;53,06535;9,28702;3106
|
||||
29332;53,22093;9,563963;3255
|
||||
29342;53,163713;9,556049;3602
|
||||
29352;53,213759;9,492995;3167
|
||||
29602;53,086542;9,605508;4278
|
||||
31852;52,792318;9,290522;3461
|
||||
31862;52,758592;9,212975;3276
|
||||
31872;52,802677;9,222689;2438
|
||||
32542;52,73432;9,305805;4050
|
||||
32552;52,720237;9,201196;3022
|
||||
32562;52,761962;9,225563;3782
|
||||
33202;52,772339;9,041644;2295
|
||||
33212;52,744365;8,982496;2951
|
||||
33222;52,784785;8,982278;2007
|
||||
34462;52,68947;8,827152;4000
|
||||
34522;53,262935;9,515887;2178
|
||||
34532;53,281647;9,455339;2204
|
||||
34542;53,306617;9,482515;2515
|
||||
34642;52,687268;9,1869;6230
|
||||
34652;52,65064;9,049249;4656
|
||||
34662;52,729902;9,069233;4245
|
||||
38902;53,168045;9,714911;3717
|
||||
38912;53,150451;9,611177;3364
|
||||
38922;53,214918;9,642209;3320
|
||||
40372;53,114999;9,155579;1589
|
||||
40382;53,089565;9,124349;1872
|
||||
40392;53,123493;9,103032;2520
|
||||
40582;52,837126;9,128043;2909
|
||||
40592;52,797879;9,181989;2637
|
||||
40602;52,793259;9,094469;2928
|
||||
40702;52,832309;9,038489;2942
|
||||
40712;52,807711;8,978124;2021
|
||||
40722;52,850579;8,976601;2501
|
||||
41572;53,252056;9,656382;2521
|
||||
41582;53,21112;9,655578;3012
|
||||
41592;53,244083;9,586082;2527
|
||||
41782;53,14697;9,372564;2644
|
||||
41792;53,106047;9,307027;2846
|
||||
41802;53,14337;9,303989;2184
|
||||
42382;53,049467;9,308349;5906
|
||||
42392;52,970528;9,36403;5853
|
||||
42402;52,975828;9,173041;7655
|
||||
43732;53,091791;9,612711;5302
|
||||
43742;53,047718;9,497438;4149
|
||||
43752;53,111095;9,510384;2451
|
||||
44062;53,26595;9,368646;2816
|
||||
44072;53,232533;9,39444;2539
|
||||
44082;53,222312;9,341475;2026
|
||||
44332;52,95527;9,243029;2011
|
||||
44342;52,882658;9,248025;5964
|
||||
44352;52,934532;9,165468;3063
|
||||
45022;53,014324;9,028106;849
|
||||
45032;52,996123;8,988175;2203
|
||||
45042;53,025586;9,012258;1191
|
||||
45442;52,926336;9,262107;1353
|
||||
45452;52,884495;9,310142;4256
|
||||
45462;52,902884;9,197729;3498
|
||||
49182;53,199577;9,725432;4455
|
||||
49192;53,143874;9,682217;3911
|
||||
49202;53,19153;9,604674;3003
|
||||
49302;53,02827;9,090395;1780
|
||||
49312;52,979947;9,103712;3370
|
||||
49322;53,010668;9,062204;954
|
||||
50262;53,131428;9,180424;4809
|
||||
50272;53,072317;9,141573;2900
|
||||
52332;52,956145;9,190609;2805
|
||||
52342;52,964629;9,131833;3093
|
||||
52352;53,018625;9,178009;3184
|
||||
52452;53,117483;9,481197;3025
|
||||
52462;53,081731;9,554128;4614
|
||||
52472;53,075679;9,424132;3009
|
||||
4912;53,09522;8,292859;2068
|
||||
5032;53,181823;8,285148;3596
|
||||
5042;53,154422;8,19677;3052
|
||||
5052;53,199006;8,187115;2669
|
||||
5062;53,14769;8,246942;2251
|
||||
5072;53,109114;8,177659;4341
|
||||
5082;53,153059;8,19547;1304
|
||||
5092;53,152466;8,328845;4590
|
||||
5102;53,184474;8,257842;4474
|
||||
5112;53,086844;8,226393;6086
|
||||
5122;53,127795;8,293461;2517
|
||||
5132;53,106032;8,234632;2238
|
||||
5142;53,131987;8,240538;978
|
||||
5482;53,114186;8,209995;911
|
||||
5492;53,098578;8,231505;1508
|
||||
5502;53,087516;8,171496;2758
|
||||
5512;53,143005;8,18812;932
|
||||
5522;53,093575;8,137828;4089
|
||||
5532;53,159804;8,139149;2757
|
||||
5662;53,059708;8,222962;1457
|
||||
5672;53,031383;8,201174;2175
|
||||
5682;53,060439;8,156871;2705
|
||||
12662;53,042836;8,345889;1436
|
||||
12672;53,020531;8,376747;1900
|
||||
12682;53,01821;8,322865;2023
|
||||
14582;53,007136;8,170452;4345
|
||||
14592;52,953839;8,226457;3052
|
||||
14602;52,977749;8,135396;4411
|
||||
19952;53,280117;7,978067;4262
|
||||
19962;53,227239;7,895448;3767
|
||||
19972;53,308046;7,883862;5342
|
||||
20012;53,127371;8,019944;2575
|
||||
20022;53,100763;7,983814;3124
|
||||
20032;53,145767;7,943015;3219
|
||||
20432;53,302006;8,207338;4525
|
||||
20442;53,253917;8,227265;4352
|
||||
20452;53,276935;8,106626;5105
|
||||
20492;53,202928;8,088547;2696
|
||||
20502;53,179052;8,010171;5048
|
||||
20512;53,250811;8,025662;4351
|
||||
21242;53,302373;7,816017;5917
|
||||
21252;53,221791;7,789681;5909
|
||||
21262;53,280675;7,70516;4910
|
||||
23132;53,193211;8,160981;2569
|
||||
23142;53,166984;8,20471;1721
|
||||
23152;53,166125;8,129768;3203
|
||||
25912;53,133168;8,196512;812
|
||||
25922;53,109726;8,184971;1822
|
||||
25932;53,135821;8,138506;3058
|
||||
31012;53,256695;8,317173;6134
|
||||
31022;53,180931;8,303559;4748
|
||||
31032;53,257044;8,232327;6901
|
||||
31072;53,065322;8,261189;1415
|
||||
31082;53,040095;8,268984;1783
|
||||
31092;53,037223;8,2168;2616
|
||||
35152;53,074646;8,001015;4084
|
||||
35162;53,059424;7,925082;3181
|
||||
35172;53,117857;7,913632;3562
|
||||
35482;53,097759;8,288085;3916
|
||||
35492;53,067866;8,179182;3848
|
||||
35502;53,122811;8,173558;4192
|
||||
36802;53,263916;8,044691;3626
|
||||
36812;53,254605;7,963371;3898
|
||||
39172;53,192247;8,054533;2376
|
||||
39182;53,157591;8,031222;2432
|
||||
39192;53,202673;7,964306;2892
|
||||
40162;53,280009;8,118168;2441
|
||||
40172;53,238498;8,12788;1716
|
||||
40182;53,261206;8,070928;2733
|
||||
42742;53,13301;8,309068;3161
|
||||
42752;53,080857;8,28754;3656
|
||||
42762;53,118416;8,238451;1350
|
||||
43762;53,110346;8,370792;3909
|
||||
43772;53,045225;8,401781;3307
|
||||
43782;53,064142;8,3028;2923
|
||||
45142;53,274344;7,789986;6372
|
||||
45152;53,198184;7,825362;4228
|
||||
45162;53,200923;7,711248;3513
|
||||
47012;53,103689;8,112404;2221
|
||||
47022;53,082074;8,052935;3071
|
||||
48162;53,156845;8,141613;1936
|
||||
48172;53,120023;8,164629;1792
|
||||
48182;53,12369;8,107294;2882
|
||||
49032;53,009841;8,293406;2799
|
||||
49042;52,966347;8,306543;3189
|
||||
49052;52,995862;8,239407;2975
|
||||
49122;53,290127;8,270767;4916
|
||||
49132;53,243272;8,221323;1918
|
||||
49142;53,233271;8,153842;2637
|
||||
49212;53,23493;8,039109;5751
|
||||
49222;53,156395;8,045529;3029
|
||||
49232;53,180241;7,944308;3381
|
||||
50742;53,159954;8,223372;730
|
||||
50752;53,158017;8,210528;715
|
||||
51912;53,096532;7,890021;2881
|
||||
51922;53,080095;7,808454;2934
|
||||
51932;53,126874;7,845353;3560
|
||||
52302;53,129419;8,220492;730
|
||||
52312;53,121125;8,229157;703
|
||||
52322;53,12176;8,214066;799
|
||||
8602;52,902779;8,212937;1953
|
||||
8612;52,883697;8,187327;1586
|
||||
8622;52,92638;8,196592;3837
|
||||
9672;52,749356;8,321874;2815
|
||||
9682;52,71656;8,316804;2365
|
||||
9692;52,738561;8,251426;2453
|
||||
9852;52,838812;8,242536;2902
|
||||
9862;52,802611;8,276089;3910
|
||||
9872;52,796295;8,179913;3732
|
||||
12782;52,850004;8,105357;4341
|
||||
12792;52,804594;8,047193;4705
|
||||
12802;52,883986;8,028951;4535
|
||||
17672;52,752481;7,962005;3630
|
||||
17682;52,712979;7,956745;4122
|
||||
17692;52,728143;7,888168;3848
|
||||
18302;52,767729;8,181587;2568
|
||||
18312;52,724605;8,166536;3342
|
||||
18322;52,747489;8,116042;3620
|
||||
19982;52,951659;8,07682;3380
|
||||
19992;52,920256;7,99516;3005
|
||||
20002;52,974099;8,003151;3015
|
||||
21422;52,851622;8,41471;4955
|
||||
21432;52,804751;8,476712;5011
|
||||
21442;52,806766;8,373005;4357
|
||||
21542;53,044503;7,881207;2854
|
||||
21552;52,976221;7,855519;4991
|
||||
21562;53,010203;7,817536;3860
|
||||
22832;52,807612;7,906691;2397
|
||||
22842;52,782952;7,854105;2976
|
||||
22852;52,832715;7,852524;3886
|
||||
22862;52,90842;8,378668;3658
|
||||
22872;52,883451;8,311801;3481
|
||||
22882;52,928386;8,31521;3135
|
||||
25252;52,674965;8,251997;1333
|
||||
25262;52,650399;8,264198;1589
|
||||
25272;52,665026;8,203363;2934
|
||||
25702;52,664745;8,423577;5099
|
||||
25712;52,581316;8,397463;5092
|
||||
25722;52,659498;8,355026;4073
|
||||
29362;53,029336;7,996727;4703
|
||||
29372;52,976048;7,994019;5094
|
||||
29382;52,967137;7,869646;5329
|
||||
33772;52,765215;8,392041;2027
|
||||
33782;52,738172;8,364739;1759
|
||||
33792;52,76498;8,343294;1531
|
||||
34432;52,846773;8,311691;1588
|
||||
35152;53,074646;8,001015;4084
|
||||
35162;53,059424;7,925082;3181
|
||||
35172;53,117857;7,913632;3562
|
||||
39892;52,673001;8,21909;2051
|
||||
39902;52,631942;8,218394;2704
|
||||
39912;52,6669;8,16553;3127
|
||||
40222;52,688846;8,271893;1547
|
||||
40232;52,669625;8,303511;2037
|
||||
40242;52,672315;8,258628;1881
|
||||
40732;52,889972;8,313328;3331
|
||||
40742;52,87306;8,256469;2415
|
||||
40752;52,907627;8,255196;2853
|
||||
45812;52,705343;8,349752;4343
|
||||
45822;52,696629;8,204984;4547
|
||||
45832;52,740591;8,256184;4499
|
||||
46232;52,792455;8,309292;3096
|
||||
46242;52,76524;8,254335;2439
|
||||
46252;52,798525;8,221729;2353
|
||||
46292;52,80824;8,153907;2434
|
||||
46302;52,809339;8,084765;3197
|
||||
47042;52,892857;8,263577;3090
|
||||
47052;52,88306;8,214316;2459
|
||||
47062;52,920479;8,207479;2719
|
||||
47402;52,853914;8,171314;2875
|
||||
47412;52,886728;8,054284;4521
|
||||
47422;52,922004;8,110152;4696
|
||||
47862;52,878252;8,151542;3788
|
||||
47872;52,835312;8,186701;2021
|
||||
47882;52,808137;8,111879;4033
|
||||
49062;52,904631;7,919773;3829
|
||||
49072;52,851118;7,953617;2812
|
||||
49082;52,866603;7,838291;4793
|
||||
51342;52,829991;7,997198;3522
|
||||
51352;52,756737;7,999451;4648
|
||||
51362;52,841888;7,887662;6732
|
||||
51912;53,096532;7,890021;2881
|
||||
51922;53,080095;7,808454;2934
|
||||
51932;53,126874;7,845353;3560
|
||||
19892;53,406773;7,783342;3893
|
||||
19902;53,375692;7,712674;4064
|
||||
19912;53,454219;7,702058;4424
|
||||
25972;53,136793;7,809239;3765
|
||||
25982;53,120971;7,711032;3843
|
||||
25992;53,16521;7,729136;3749
|
||||
53342;53,07241;7,800915;4471
|
||||
53352;52,99585;7,815721;4923
|
||||
53362;53,02272;7,673208;5541
|
||||
14162;53,712881;7,962323;6509
|
||||
14172;53,651001;7,941851;3171
|
||||
14182;53,644672;7,871231;2913
|
||||
7822;53,544194;8,600056;966
|
||||
7832;53,495617;8,521799;5746
|
||||
7842;53,588059;8,462652;6382
|
||||
7852;53,566767;8,646824;3985
|
||||
7862;53,519375;8,519549;4967
|
||||
7872;53,619957;8,433355;6945
|
||||
7912;53,615058;8,679324;4256
|
||||
7922;53,579726;8,621765;1274
|
||||
7932;53,643368;8,566389;6056
|
||||
7942;53,530179;8,648722;3152
|
||||
7952;53,478853;8,606553;3690
|
||||
7962;53,565087;8,46744;7927
|
||||
7972;53,516986;8,49718;2857
|
||||
7982;53,439265;8,451758;5554
|
||||
7992;53,500091;8,425205;3661
|
||||
9432;53,61384;8,616319;1990
|
||||
9442;53,59083;8,554743;2572
|
||||
9452;53,667178;8,498347;7855
|
||||
10392;53,741989;8,514916;8328
|
||||
10402;53,673443;8,595492;2274
|
||||
10412;53,734531;8,43927;8327
|
||||
11132;53,605814;8,644787;4339
|
||||
11142;53,57047;8,599684;1218
|
||||
11152;53,611002;8,435743;6565
|
||||
11612;53,507176;9,170687;2930
|
||||
11622;53,473858;9,1662;3383
|
||||
11632;53,477962;9,091269;2936
|
||||
11642;53,546536;8,401318;3068
|
||||
11652;53,514934;8,34736;3494
|
||||
11662;53,584237;8,33023;5223
|
||||
16472;53,628785;9,172156;4722
|
||||
16482;53,60051;9,092749;6689
|
||||
16492;53,66046;9,005892;5423
|
||||
22412;53,455484;8,671841;3626
|
||||
22422;53,415586;8,654722;4300
|
||||
22432;53,440866;8,567682;3780
|
||||
25462;53,655441;8,890494;5666
|
||||
25472;53,595373;8,819933;3886
|
||||
25482;53,668021;8,774228;4935
|
||||
29482;53,708158;8,65631;2848
|
||||
29492;53,686299;8,74477;4097
|
||||
29502;53,665172;8,659898;2099
|
||||
29722;53,511405;8,595173;726
|
||||
29732;53,491707;8,630941;2128
|
||||
29742;53,491045;8,572597;2041
|
||||
31042;53,630527;8,869961;4790
|
||||
34702;53,553423;9,055753;4878
|
||||
34712;53,507928;9,076083;3212
|
||||
34722;53,534855;8,980562;3713
|
||||
36382;53,443074;8,851245;3048
|
||||
36392;53,402941;8,803054;3069
|
||||
36402;53,435834;8,776016;2780
|
||||
41152;53,533584;8,646386;1870
|
||||
41162;53,523743;8,617174;1012
|
||||
41172;53,539977;8,617101;956
|
||||
42052;53,72743;8,401107;7044
|
||||
42062;53,641452;8,53051;1637
|
||||
42072;53,632002;8,411647;5176
|
||||
44962;53,516641;8,750243;4407
|
||||
44972;53,45634;8,779733;4398
|
||||
44982;53,476946;8,682969;2017
|
||||
44992;53,571423;8,678654;4431
|
||||
45002;53,530995;8,751497;5638
|
||||
45012;53,465778;8,576171;6806
|
||||
45352;53,658037;8,444743;7863
|
||||
45362;53,593323;8,56202;1219
|
||||
45372;53,563402;8,508911;3131
|
||||
45592;53,579425;8,61685;3428
|
||||
45602;53,549344;8,612338;1687
|
||||
45612;53,543953;8,495269;4309
|
||||
46592;53,545797;8,84359;4030
|
||||
46602;53,496518;8,892237;4339
|
||||
46612;53,491967;8,794518;3040
|
||||
50142;53,570967;8,655538;3843
|
||||
50152;53,546084;8,584041;1756
|
||||
50162;53,632288;8,455925;9575
|
||||
50352;53,541805;8,665506;5559
|
||||
50362;53,487058;8,491373;6530
|
||||
50372;53,593284;8,470934;7165
|
||||
50382;53,564647;8,647204;5146
|
||||
50392;53,49714;8,632334;4253
|
||||
50402;53,546918;8,496412;4990
|
||||
51522;53,596267;8,723519;4340
|
||||
51532;53,625818;8,622195;2797
|
||||
51542;53,68173;8,656331;5248
|
||||
51672;53,585322;8,323412;3548
|
||||
51682;53,542288;8,2369;3289
|
||||
51692;53,637548;8,214227;7215
|
||||
52572;53,624045;9,083662;4089
|
||||
52582;53,55188;9,094078;3978
|
||||
52592;53,586512;8,980519;4854
|
||||
14312;52,730649;8,502497;3295
|
||||
14322;52,686512;8,537024;2800
|
||||
14332;52,701988;8,477987;2381
|
||||
23752;52,700538;8,804121;3542
|
||||
23762;52,670364;8,856399;3466
|
||||
23772;52,661536;8,772829;3246
|
||||
23782;52,669722;9,00082;4432
|
||||
23792;52,637367;8,926416;4419
|
||||
23802;52,714024;8,911968;4667
|
||||
34462;52,68947;8,827152;4000
|
||||
34642;52,687268;9,1869;6230
|
||||
34652;52,65064;9,049249;4656
|
||||
34662;52,729902;9,069233;4245
|
||||
49872;52,74736;8,577221;4273
|
||||
49882;52,680149;8,584776;4467
|
||||
49892;52,726953;8,451672;4164
|
||||
49932;52,711628;8,48772;5077
|
||||
49942;52,65125;8,489077;3111
|
||||
49952;52,660946;8,406498;3017
|
||||
50442;52,638012;8,770306;4270
|
||||
50452;52,606676;8,699737;4534
|
||||
|
@@ -0,0 +1,595 @@
|
||||
"Nr.","Frachtverg.","Man. Frachtverg."," BSG [%]","Firma","Startadresse","PLZn","KM","Auftragszeit","Annahme","Preis",,
|
||||
"22012882","624,44","0.00","12","CO.DON GmbH","Warthestr. 21","14513, AT_1220","","08:00 (05.05.)","","709,59","Warthestr.;21;14513;Teltow;DE|Langobardenstrabe;122;1220;Wien;AT","759,84 €","675,00 Km in ausserhalb_km (1,10 € * 639,29 km) + zone_2_km (1,10 € * 36,13 km), Anfahrt in zone_2_eap (1,10 € * 2,62 km) + 14,00 € PKW"
|
||||
"22014215","624,44","0.00","12","CO.DON GmbH","Warthestr. 21","14513, AT_1220","675,49","08:00 (05.05.)","13:35 (02.05.)","709,59","Warthestr.;21;14513;Teltow;DE|Langobardenstrabe;122;1220;Wien;AT","759,84 €","675,00 Km in ausserhalb_km (1,10 € * 639,29 km) + zone_2_km (1,10 € * 36,13 km), Anfahrt in zone_2_eap (1,10 € * 2,62 km) + 14,00 € PKW"
|
||||
"22014609","598,49","569.99","14","CO.DON GmbH - 3.OG Empfang","Warthestr. 21 .","14513, AT_1220","","08:00 (05.05.)","00:00 (00.00.00)","695,92","Warthestr. 21;.;14513;Teltow;DE|Langobardenstrabe 122;.;1220;Wien;AT","759,84 €","675,00 Km in ausserhalb_km (1,10 € * 639,29 km) + zone_2_km (1,10 € * 36,13 km), Anfahrt in zone_2_eap (1,10 € * 2,62 km) + 14,00 € PKW"
|
||||
"22016537","533,9","0.00","18","Easy Jet","Wolfgang-von-Gronau-Allee 2","12529, 60549","0","16:57 (05.05.)","17:08 (05.05.)","651,1","Wolfgang-von-Gronau-Allee;2;12529;Schönefeld;DE|Cargoring Nord Tor 26;.;60549;Frankfurt am Main;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22019730","315,13","0.00","18","STADTBOTE, Proj. Flash","Colditzstr. 33","12099, 25541","375,16","12:50 (07.05.)","12:54 (07.05.)","384,3","Colditzstr.;33;12099;Berlin;DE|Fritz-Staiger-Str.;15;25541;Brunsbüttel;DE","428,81 €","377,00 Km in ausserhalb_km (1,10 € * 325,66 km) + zone_1_km (1,10 € * 28,72 km) + zone_2_km (1,10 € * 22,72 km) + 14,00 € PKW"
|
||||
"22015513","274,35","0.00","18","Schach zu Dritt Gesellschaft für","Schinkestr. 9","12047, 20357","297,79","11:00 (05.05.)","10:46 (05.05.)","334,57","Schinkestr.;9;12047;Berlin;DE|Messeplatz;1;20357;Hamburg;DE","337,19 €","294,00 Km in ausserhalb_km (1,10 € * 243,40 km) + zone_1_km (1,10 € * 18,16 km) + zone_2_km (1,10 € * 32,25 km) + 14,00 € PKW"
|
||||
"22015024","171,09","0.00","18","SYNLAB MVZ (BER_07)","Reichartstr. 2","10829, .","0","10:00 (05.05.)","08:50 (05.05.)","208,65","Reichartstr.;2;10829;Berlin;DE|.;.;.;.;DE","ERROR","Adresse in 1. Station nicht ok"
|
||||
"22016934","171,09","0.00","18","SYNLAB MVZ (BER_14)","Reichartstr. 2","10829, .","0","10:00 (06.05.)","09:00 (06.05.)","208,65","Reichartstr.;2;10829;Berlin;DE|.;.;.;.;DE","ERROR","Adresse in 1. Station nicht ok"
|
||||
"22017293","161,08","0.00","22","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 17291","159,39","10:09 (06.05.)","10:13 (06.05.)","206,51","Hindenburgdamm;30a;12203;Berlin;DE|Stettiner Str.;121;17291;Prenzlau;DE","157,53 €","130,00 Km in ausserhalb_km (1,10 € * 78,47 km) + zone_1_km (1,10 € * 32,09 km) + zone_2_km (1,10 € * 19,92 km) + 14,00 € PKW"
|
||||
"22020407","160,96","150.43","22,06","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 17291","159,39","20:08 (07.05.)","20:09 (07.05.)","206,51","Hindenburgdamm;30a;12203;Berlin;DE|Stettiner Str.;121;17291;Prenzlau;DE","157,53 €","130,00 Km in ausserhalb_km (1,10 € * 78,47 km) + zone_1_km (1,10 € * 32,09 km) + zone_2_km (1,10 € * 19,92 km) + 14,00 € PKW"
|
||||
"22018496","165,39","0.00","18","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, ...","0","07:30 (07.05.)","07:00 (07.05.)","201,7","Hindenburgdamm;30a;12203;Berlin;DE|...;...;...;...;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22016381","148","138.32","22,29","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 16303","146,55","15:35 (05.05.)","15:39 (05.05.)","190,46","Hindenburgdamm;30a;12203;Berlin;DE|Auguststr.;23;16303;Schwedt /Oder;DE","143,39 €","118,00 Km in ausserhalb_km (1,10 € * 65,62 km) + zone_1_km (1,10 € * 32,09 km) + zone_2_km (1,10 € * 19,92 km) + 14,00 € PKW"
|
||||
"22020420","148","138.32","22,29","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 16303","146,55","23:55 (07.05.)","00:28 (08.05.)","190,46","Hindenburgdamm;30a;12203;Berlin;DE|Auguststr.;23;16303;Schwedt /Oder;DE","143,39 €","118,00 Km in ausserhalb_km (1,10 € * 65,62 km) + zone_1_km (1,10 € * 32,09 km) + zone_2_km (1,10 € * 19,92 km) + 14,00 € PKW"
|
||||
"22017288","72,32","0.00","55","LGI Deutschland GmbH / Lager Buderus","Am Magna Park 8","14542, 14979","53,61","10:08 (06.05.)","11:03 (06.05.)","160,7","Am Magna Park;8;14542;Werder (Havel);DE|Rebhuhnweg;12;14979;Großbeeren;DE","101,96 €","58,00 Km in ausserhalb_km (1,10 € * 42,25 km) + zone_2_km (1,10 € * 16,41 km), Anfahrt in zone_2_eap (1,10 € * 21,30 km) + 14,00 € PKW"
|
||||
"22020406","116,43","0.00","22","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 16321","76,48","20:08 (07.05.)","20:09 (07.05.)","149,27","Hindenburgdamm;30a;12203;Berlin;DE|Ladeburger Str.;13-17;16321;Bernau;DE","66,33 €","47,00 Km in zone_1_km (1,10 € * 32,09 km) + zone_2_km (1,10 € * 15,48 km) + 14,00 € PKW"
|
||||
"22018168","116,18","0.00","18","Handwerkskammer Berlin","Mehringdamm 14","10961, 13189, 10317, 15344, 15517","96,34","09:00 (07.05.)","08:37 (07.05.)","141,69","Mehringdamm;14;10961;Berlin;DE|Berliner Str.;94;13189;Berlin;DE|Margaretenstr.;26;10317;Berlin;DE|Am Annatal;60;15344;Strausberg;DE|Seelower Str.;16;15517;Fürstenwalde /Spree;DE","143,12 €","98,00 Km in ausserhalb_km (1,10 € * 15,40 km) + zone_1_km (1,10 € * 30,80 km) + zone_2_km (1,10 € * 52,09 km) + 14,00 € PKW + 7,00 € pro 3 weitere Adresse(n)"
|
||||
"22015579","111,43","0.00","18","A & K Anschlagmittel u. Hebezeuge","Otisstr. 49","13403, 39307","120,79","11:01 (05.05.)","11:01 (05.05.)","135,89","Otisstr.;49;13403;Berlin;DE|Am Werder;3;39307;Genthin;DE","146,86 €","121,00 Km in ausserhalb_km (1,10 € * 83,45 km) + zone_1_km (1,10 € * 22,46 km) + zone_2_km (1,10 € * 14,87 km) + 14,00 € PKW"
|
||||
"22014665","101,62","94.97","22,15","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 17268","100,63","05:45 (05.05.)","02:10 (05.05.)","130,54","Hindenburgdamm;30a;12203;Berlin;DE|Robert-Koch-Str.;24;17268;Templin;DE","124,85 €","101,00 Km in ausserhalb_km (1,10 € * 54,87 km) + zone_1_km (1,10 € * 28,56 km) + zone_2_km (1,10 € * 17,34 km) + 14,00 € PKW"
|
||||
"22015792","101,01","94.40","22,62","Krankenhaus Templin","Robert-Koch-Str. 24","17268, 12203","100,02","12:02 (05.05.)","12:08 (05.05.)","130,54","Robert-Koch-Str.;24;17268;Templin;DE|Hindenburgdamm;30a;12203;Berlin;DE","124,00 €","100,00 Km in ausserhalb_km (1,10 € * 53,72 km) + zone_2_km (1,10 € * 18,52 km) + zone_1_km (1,10 € * 27,76 km) + 14,00 € PKW"
|
||||
"22016612","101,62","94.97","22,15","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 17268","100,63","21:34 (05.05.)","21:37 (05.05.)","130,54","Hindenburgdamm;30a;12203;Berlin;DE|Robert-Koch-Str.;24;17268;Templin;DE","124,85 €","101,00 Km in ausserhalb_km (1,10 € * 54,87 km) + zone_1_km (1,10 € * 28,56 km) + zone_2_km (1,10 € * 17,34 km) + 14,00 € PKW"
|
||||
"22020281","105,29","0.00","18","Dirk Schuppenhauer","Im Winkel 4","16562, 15834","92,65","17:30 (07.05.)","16:45 (07.05.)","128,4","Im Winkel;4;16562;Bergfelde;DE|Goethestr.;15;15834;Rangsdorf;DE","115,90 €","92,00 Km in zone_2_km (1,10 € * 87,57 km) + zone_1_km (1,10 € * 5,07 km) + 14,00 € PKW"
|
||||
"22018446","98,9","0.00","22","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 14929","64,81","18:52 (06.05.)","18:53 (06.05.)","126,8","Hindenburgdamm;30a;12203;Berlin;DE|Johanniterstr.;68;14929;Treuenbrietzen;DE","85,29 €","64,00 Km in ausserhalb_km (1,10 € * 39,71 km) + zone_1_km (1,10 € * 4,84 km) + zone_2_km (1,10 € * 20,26 km) + 14,00 € PKW"
|
||||
"22012847","92,56","0.00","18","Hansetrans-Lager","Colditzstr. 33","12099, 16831","97,77","06:30 (05.05.)","06:16 (05.05.)","112,88","Colditzstr.;33;12099;Berlin;DE|Ringstr.;10;16831;Rheinsberg;DE","121,70 €","97,00 Km in ausserhalb_km (1,10 € * 51,85 km) + zone_1_km (1,10 € * 28,72 km) + zone_2_km (1,10 € * 17,34 km) + 14,00 € PKW"
|
||||
"22014773","89,93","0.00","18,01","Ev. Waldkrankenhaus","Stadtrandstr. 555","13589, 15377","99,83","07:31 (05.05.)","07:31 (05.05.)","109,68","Stadtrandstr.;555;13589;Berlin;DE|Lindenstr.;68-70;15377;Buckow (Märkische Schweiz);DE","120,70 €","97,00 Km in ausserhalb_km (1,10 € * 13,99 km) + zone_1_km (1,10 € * 13,04 km) + zone_2_km (1,10 € * 69,97 km) + 14,00 € PKW"
|
||||
"22018314","86,84","0.00","18,01","Tiefbauhandel GmbH","Groß-Berliner-Damm 85","12487, 16816","92,19","07:00 (07.05.)","16:33 (06.05.)","105,91","Groß-Berliner-Damm;85;12487;Berlin;DE|Heinrich-Rau-Str.;3;16816;Neuruppin;DE","115,81 €","92,00 Km in ausserhalb_km (1,10 € * 31,43 km) + zone_1_km (1,10 € * 38,40 km) + zone_2_km (1,10 € * 22,72 km) + 14,00 € PKW"
|
||||
"22016526","77,23","72.18","22,39","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 16321","76,48","16:47 (05.05.)","16:50 (05.05.)","99,51","Hindenburgdamm;30a;12203;Berlin;DE|Ladeburger Str.;13-17;16321;Bernau;DE","66,33 €","47,00 Km in zone_1_km (1,10 € * 32,09 km) + zone_2_km (1,10 € * 15,48 km) + 14,00 € PKW"
|
||||
"22019095","75,94","70.97","22,01","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 15526","75,2","09:43 (07.05.)","09:44 (07.05.)","97,37","Hindenburgdamm;30a;12203;Berlin;DE|Pieskower Str.;33;15526;Bad Saarow;DE","102,43 €","80,00 Km in ausserhalb_km (1,10 € * 28,87 km) + zone_1_km (1,10 € * 4,84 km) + zone_2_km (1,10 € * 46,68 km) + 14,00 € PKW"
|
||||
"22019267","75,9","0.00","18","Tepper Aufzüge GmbH","Herzbergstr. 50","10365, 14959","55,78","10:27 (07.05.)","10:28 (07.05.)","92,56","Herzbergstr.;50;10365;Berlin;DE|Ahornstr.;21;14959;Trebbin - Thyrow;DE","75,33 €","55,00 Km in ausserhalb_km (1,10 € * 5,80 km) + zone_1_km (1,10 € * 19,37 km) + zone_2_km (1,10 € * 30,58 km) + 14,00 € PKW"
|
||||
"22015607","75,46","0.00","18","Tulip Cocoa GB GmbH + Co. KG","Kakaostrasse 1","16833, 12489","66,75","11:09 (05.05.)","11:09 (05.05.)","92,02","Kakaostrasse;1;16833;Fehrbellin;DE|Wagner-R?geny-Str.;8;12489;Berlin;DE","87,41 €","66,00 Km in ausserhalb_km (1,10 € * 19,75 km) + zone_2_km (1,10 € * 41,34 km) + zone_1_km (1,10 € * 5,65 km) + 14,00 € PKW"
|
||||
"22018341","71,02","66.37","22,82","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 13125","70,32","16:06 (06.05.)","16:26 (06.05.)","92,02","Hindenburgdamm;30a;12203;Berlin;DE|Schwanebecker Chaussee;50;13125;Berlin;DE","48,80 €","31,00 Km in zone_1_km (1,10 € * 31,64 km) + 14,00 € PKW"
|
||||
"22020381","71,03","66.38","22,81","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 15562","70,33","17:52 (07.05.)","18:00 (07.05.)","92,02","Hindenburgdamm;30a;12203;Berlin;DE|Seebad;82-83;15562;Ruedersdorf;DE","96,96 €","75,00 Km in zone_1_km (1,10 € * 4,84 km) + zone_2_km (1,10 € * 70,58 km) + 14,00 € PKW"
|
||||
"22014891","73,26","0.00","18,01","Eckert & Ziegler Radiopharma","Robert-Rössle-Str. 10","13125, 10589, 12489, 13125","78,86","12:15 (05.05.)","09:01 (05.05.)","89,35","Robert-Rössle-Str.;10;13125;Berlin;DE|Max-Dohrn-Strasse;8-10;10589;Berlin;DE|Volmerstrasse;7a;12489;Berlin;DE|Robert-Rössle-Str.;10;13125;Berlin;DE","113,98 €","78,00 Km in zone_1_km (1,10 € * 69,95 km) + zone_2_km (1,10 € * 8,21 km) + 14,00 € PKW + 7,00 € pro 2 weitere Adresse(n)"
|
||||
"22017727","70,73","0.00","17,99","Schulz Baubedarf GmbH","Löwenbrucher Ring 16","14974, 10559, 13587","45,02","12:17 (06.05.)","12:20 (06.05.)","86,25","Löwenbrucher Ring;16;14974;Ludwigsfelde;DE|Rathenower Str.;16;10559;Berlin;DE|Rauchstr.;34;13587;Berlin;DE","83,03 €","56,00 Km in zone_2_km (1,10 € * 23,39 km) + zone_1_km (1,10 € * 33,00 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018518","69,61","0.00","18,01","Minimax GmbH / Lager","Gottlieb-Dunkel-Str. 20-21","12099, 15537, 12099","96,94","06:56 (07.05.)","09:47 (07.05.)","84,9","Gottlieb-Dunkel-Str.;20-21;12099;Berlin;DE|Ahornstr.;6 D;15537;Grünheide / OT Freienbrink;DE|Gottlieb-Dunkel-Str.;20-21;12099;Berlin;DE","121,85 €","91,00 Km in zone_1_km (1,10 € * 24,34 km) + zone_2_km (1,10 € * 67,34 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22020096","67,12","0.00","18,01","Tepper Aufzüge GmbH","Herzbergstr. 50","10365, 15831","30,1","14:46 (07.05.)","14:46 (07.05.)","81,86","Herzbergstr.;50;10365;Berlin;DE|Akazienstr.;5;15831;Blankenfelde-Mahlow - Mahlow;DE","47,96 €","30,00 Km in zone_1_km (1,10 € * 20,16 km) + zone_2_km (1,10 € * 10,71 km) + 14,00 € PKW"
|
||||
"22016709","66,31","0.00","17,99","MAN Truck + Bus Deutschland","Siegfriedstr. 49-51","10365, 12681, 15366, 16356","47,75","07:21 (06.05.)","07:58 (06.05.)","80,86","Siegfriedstr.;49-51;10365;Berlin;DE|Nordring;5;12681;Berlin;DE|Gewerbestr.;23;15366;Hoppegarten - Dahlwitz-Hoppegarten;DE|Alte Hirschfelder Str.;6;16356;Werneuchen;DE","82,54 €","49,00 Km in zone_1_km (1,10 € * 20,74 km) + zone_2_km (1,10 € * 28,84 km) + 14,00 € PKW + 7,00 € pro 2 weitere Adresse(n)"
|
||||
"21988338","65,81","0.00","17,99","Ev. Johannesstift Wichernkran-","Schoenwalder Allee 26","13587, 13585, 13587","6,14","11:15 (05.05.)","11:44 (05.05.)","80,25","Schoenwalder Allee;26;13587;Berlin;DE|Neue Bergstr.;6;13585;Berlin;DE|Schoenwalder Allee;26;13587;Berlin;DE","27,75 €","6,00 Km in zone_1_km (1,10 € * 6,14 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018004","65,81","0.00","17,99","Friedrich Niemann GmbH & Co. KG","Am Wall 9","14979, 15370","64,87","13:52 (06.05.)","13:53 (06.05.)","80,25","Am Wall;9;14979;Großbeeren;DE|Heideweg;6;15370;Fredersdorf-Vogelsdorf - Vogelsdorf;DE","91,33 €","64,00 Km in zone_2_km (1,10 € * 64,87 km), Anfahrt in zone_2_eap (1,10 € * 5,43 km) + 14,00 € PKW"
|
||||
"22016078","65,81","0.00","17,99","Ev. Johannesstift Wichernkran-","Schoenwalder Allee 26","13587, 13585, 13587","6,14","11:15 (07.05.)","16:24 (06.05.)","80,25","Schoenwalder Allee;26;13587;Berlin;DE|Neue Bergstr.;6;13585;Berlin;DE|Schoenwalder Allee;26;13587;Berlin;DE","27,75 €","6,00 Km in zone_1_km (1,10 € * 6,14 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015606","65,37","0.00","18","Tulip Cocoa GB GmbH + Co. KG","Kakaostrasse 1","16833, 13347","56,18","08:00 (06.05.)","16:36 (05.05.)","79,72","Kakaostrasse;1;16833;Fehrbellin;DE|Oudenarder Str.;16;13347;Berlin;DE","75,85 €","56,00 Km in ausserhalb_km (1,10 € * 19,75 km) + zone_2_km (1,10 € * 22,86 km) + zone_1_km (1,10 € * 13,62 km) + 14,00 € PKW"
|
||||
"22018704","63,92","0.00","18,01","EKZ Werder Park","Auf dem Strengfeld 6","14542, 12347","49,62","08:08 (07.05.)","08:11 (07.05.)","77,96","Auf dem Strengfeld;6;14542;Werder;DE|Gradestr.;46-50;12347;Berlin;DE","68,57 €","49,00 Km in ausserhalb_km (1,10 € * 0,16 km) + zone_2_km (1,10 € * 24,76 km) + zone_1_km (1,10 € * 24,69 km) + 14,00 € PKW"
|
||||
"22015666","63,63","0.00","18","STARK Deutschland GmbH","Liebermannstr. 3-15","13088, 15517","79,92","11:25 (05.05.)","11:27 (05.05.)","77,6","Liebermannstr.;3-15;13088;Berlin;DE|Lindenstr.;49a;15517;Fürstenwalde;DE","101,90 €","79,00 Km in ausserhalb_km (1,10 € * 28,66 km) + zone_1_km (1,10 € * 5,71 km) + zone_2_km (1,10 € * 45,54 km) + 14,00 € PKW"
|
||||
"22018460","60,09","0.00","22","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 15711","39,23","21:13 (06.05.)","21:18 (06.05.)","77,04","Hindenburgdamm;30a;12203;Berlin;DE|Koepenicker Str.;29;15711;Koenigs Wusterhausen;DE","62,86 €","44,00 Km in zone_1_km (1,10 € * 4,84 km) + zone_2_km (1,10 € * 39,58 km) + 14,00 € PKW"
|
||||
"22020399","60,09","0.00","22","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 15711","39,23","19:13 (07.05.)","19:19 (07.05.)","77,04","Hindenburgdamm;30a;12203;Berlin;DE|Köpenicker Str.;29;15711;Königs Wusterhausen;DE","62,86 €","44,00 Km in zone_1_km (1,10 € * 4,84 km) + zone_2_km (1,10 € * 39,58 km) + 14,00 € PKW"
|
||||
"22017465","58,53","54.70","22,96","Johanniter KH im Flaeming gGmbH","Johanniterstr. 68","14929, 12203","","10:57 (06.05.)","","75,97","Johanniterstr.;68;14929;Treuenbrietzen;DE|Hindenburgdamm;30a;12203;Berlin;DE","77,58 €","57,00 Km in ausserhalb_km (1,10 € * 33,49 km) + zone_2_km (1,10 € * 14,33 km) + zone_1_km (1,10 € * 9,98 km) + 14,00 € PKW"
|
||||
"22019076","60,1","0.00","18,01","Weber Energie und Umwelt Service","Schkopauer Ring 17","12681, 14542","88,76","09:38 (07.05.)","09:39 (07.05.)","73,3","Schkopauer Ring;17;12681;Berlin;DE|Phöbener Chaussee;12;14542;Werder (Havel);DE","111,63 €","88,00 Km in ausserhalb_km (1,10 € * 0,70 km) + zone_1_km (1,10 € * 8,00 km) + zone_2_km (1,10 € * 80,05 km) + 14,00 € PKW"
|
||||
"22014695","59,22","0.00","18,01","MAN Truck&Bus Deutschland GmbH","autofocus 4","15517, 12099","58,83","06:40 (05.05.)","06:40 (05.05.)","72,23","autofocus;4;15517;Fürstenwalde;DE|Tempelhofer Weg;5;12099;Berlin;DE","78,70 €","58,00 Km in ausserhalb_km (1,10 € * 23,28 km) + zone_2_km (1,10 € * 24,20 km) + zone_1_km (1,10 € * 11,34 km) + 14,00 € PKW"
|
||||
"22016496","58,82","0.00","18,01","Blumen Insel","Suarezstr. 5","14057, 14193, 14057","9,64","10:00 (06.05.)","16:34 (05.05.)","71,74","Suarezstr.;5;14057;Berlin;DE|Fontanestr.;8;14193;Berlin;DE|Suarezstr.;5;14057;Berlin;DE","31,60 €","9,00 Km in zone_1_km (1,10 € * 9,64 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018039","58,79","0.00","17,99","Tepper Aufzüge GmbH","Herzbergstr. 50","10365, 13435","16,49","14:03 (06.05.)","14:03 (06.05.)","71,69","Herzbergstr.;50;10365;Berlin;DE|Senftenberger Ring;76;13435;Berlin;DE","32,14 €","16,00 Km in zone_1_km (1,10 € * 16,49 km) + 14,00 € PKW"
|
||||
"22014475","56,67","52.96","19,99","Asklepios Klinik Birkenwerder","Hubertusstr. 12-22","16547, 12203","38,4","17:00 (05.05.)","11:46 (05.05.)","70,83","Hubertusstr.;12-22;16547;Birkenwerder;DE|Hindenburgdamm;30a;12203;Berlin;DE","55,90 €","38,00 Km in zone_2_km (1,10 € * 10,33 km) + zone_1_km (1,10 € * 27,76 km) + 14,00 € PKW"
|
||||
"22016568","56,67","52.96","19,99","Asklepios Klinik Birkenwerder","Hubertusstr. 12-22","16547, 12203","38,4","17:00 (06.05.)","11:46 (06.05.)","70,83","Hubertusstr.;12-22;16547;Birkenwerder;DE|Hindenburgdamm;30a;12203;Berlin;DE","55,90 €","38,00 Km in zone_2_km (1,10 € * 10,33 km) + zone_1_km (1,10 € * 27,76 km) + 14,00 € PKW"
|
||||
"22018430","56,67","52.96","19,99","Asklepios Klinik Birkenwerder","Hubertusstr. 12-22","16547, 12203","38,4","17:00 (07.05.)","08:01 (07.05.)","70,83","Hubertusstr.;12-22;16547;Birkenwerder;DE|Hindenburgdamm;30a;12203;Berlin;DE","55,90 €","38,00 Km in zone_2_km (1,10 € * 10,33 km) + zone_1_km (1,10 € * 27,76 km) + 14,00 € PKW"
|
||||
"22018360","55,64","0.00","18","OTIS GmbH & Co. oHG","Otisstr. 33","13507, 10785","10,46","16:19 (06.05.)","16:19 (06.05.)","67,85","Otisstr.;33;13507;Berlin;DE|Potsdamer Platz;3;10785;Berlin;DE","25,64 €","10,00 Km in zone_1_km (1,10 € * 10,58 km) + 14,00 € PKW"
|
||||
"22018830","54,84","0.00","18","Hans Timm Fensterbau GmbH &","Motzener Str. 10","12277, 15758","38,19","08:40 (07.05.)","08:44 (07.05.)","66,88","Motzener Str.;10;12277;Berlin;DE|Gunterstr.;18;15758;Zernsdorf;DE","56,01 €","38,00 Km in ausserhalb_km (1,10 € * 2,52 km) + zone_1_km (1,10 € * 4,92 km) + zone_2_km (1,10 € * 30,75 km) + 14,00 € PKW"
|
||||
"22013596","54,4","0.00","18","Senatsverw. f. Umwelt, Verkehr u. Klimaschutz","Columbiadamm 10","12101, 12101, 12101, 10179, 10179, 12101, 12101","13,99","09:00 (05.05.)","13:54 (02.05.)","66,34","Columbiadamm;10;12101;Berlin;DE|Tempelhofer Damm;45;12101;Berlin;DE|Tempelhofer Damm;9;12101;Berlin;DE|Am Koellnischen Park;3;10179;Berlin;DE|Brueckenstr.;6;10179;Berlin;DE|Tempelhofer Damm;45;12101;Berlin;DE|Columbiadamm;10;12101;Berlin;DE","64,47 €","14,00 Km in zone_1_km (1,10 € * 14,06 km) + 14,00 € PKW + 7,00 € pro 5 weitere Adresse(n)"
|
||||
"22015360","54,4","0.00","18","Senatsverw. f. Umwelt, Verkehr u. Klimaschutz","Columbiadamm 10","12101, 12101, 12101, 10179, 10179, 12101, 12101","","09:00 (06.05.)","11:34 (05.05.)","66,34","Columbiadamm;10;12101;Berlin;DE|Tempelhofer Damm;45;12101;Berlin;DE|Tempelhofer Damm;9;12101;Berlin;DE|Am Koellnischen Park;3;10179;Berlin;DE|Brueckenstr.;6;10179;Berlin;DE|Tempelhofer Damm;45;12101;Berlin;DE|Columbiadamm;10;12101;Berlin;DE","64,47 €","14,00 Km in zone_1_km (1,10 € * 14,06 km) + 14,00 € PKW + 7,00 € pro 5 weitere Adresse(n)"
|
||||
"22017249","54,4","0.00","18","Senatsverw. f. Umwelt, Verkehr u. Klimaschutz","Columbiadamm 10","12101, 12101, 12101, 10179, 10179, 12101, 12101","13,99","09:00 (07.05.)","07:11 (07.05.)","66,34","Columbiadamm;10;12101;Berlin;DE|Tempelhofer Damm;45;12101;Berlin;DE|Tempelhofer Damm;9;12101;Berlin;DE|Am Koellnischen Park;3;10179;Berlin;DE|Brueckenstr.;6;10179;Berlin;DE|Tempelhofer Damm;45;12101;Berlin;DE|Columbiadamm;10;12101;Berlin;DE","64,47 €","14,00 Km in zone_1_km (1,10 € * 14,06 km) + 14,00 € PKW + 7,00 € pro 5 weitere Adresse(n)"
|
||||
"22018465","58,15","0.00","12","Buchhaltungs- und Büroservice Nitz","Jühnsdorfer Straße 20 .","15834, 13591","54,83","14:00 (07.05.)","12:20 (07.05.)","66,08","Jühnsdorfer Straße 20;.;15834;Rangsdorf;DE|Heerstraße 575;.;13591;Berlin;DE","79,89 €","59,00 Km in zone_2_km (1,10 € * 37,29 km) + zone_1_km (1,10 € * 22,61 km) + 14,00 € PKW"
|
||||
"22017544","50,02","0.00","18","Humboldt-Klinikum","Am Nordgraben 2","13509, 12351, 13509","56,31","11:18 (06.05.)","11:21 (06.05.)","61","Am Nordgraben;2;13509;Berlin;DE|Kormoranweg;45;12351;Berlin;DE|Am Nordgraben;2;13509;Berlin;DE","83,14 €","56,00 Km in zone_1_km (1,10 € * 56,49 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22019740","49,57","0.00","18,01","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 14542","49,27","12:53 (07.05.)","13:24 (07.05.)","60,46","Gradestr.;46-50;12347;Berlin;DE|Auf dem Strengfeld;6;14542;Werder;DE","68,30 €","49,00 Km in ausserhalb_km (1,10 € * 0,24 km) + zone_1_km (1,10 € * 24,78 km) + zone_2_km (1,10 € * 24,34 km) + 14,00 € PKW"
|
||||
"22020212","49,57","0.00","18,01","Carsystem Farberlin GmbH","Heerstr. 330","13593, 14542","","15:29 (07.05.)","15:41 (07.05.)","60,46","Heerstr.;330;13593;Berlin;DE|Berliner Str.;105;14542;Werder (Havel);DE","60,51 €","42,00 Km in ausserhalb_km (1,10 € * 11,22 km) + zone_1_km (1,10 € * 4,25 km) + zone_2_km (1,10 € * 26,81 km) + 14,00 € PKW"
|
||||
"22016555","48,26","0.00","17,99","Tepper Aufzüge GmbH","Herzbergstr. 50","10365, 12167","21,25","17:08 (05.05.)","17:08 (05.05.)","58,85","Herzbergstr.;50;10365;Berlin;DE|Albrechtstr.;54;12167;Berlin;DE","36,03 €","20,00 Km in zone_1_km (1,10 € * 20,03 km) + 14,00 € PKW"
|
||||
"22011289","46,5","0.00","18,02","G-ELIT Präzisionswerk GmbH","Lengeder Str. 29-35","13407, 12689, 13407","","08:00 (06.05.)","","56,72","Lengeder Str.;29-35;13407;Berlin;DE|Hellersdorfer Weg;35;12689;Berlin;DE|Lengeder Str.;29-35;13407;Berlin;DE","62,48 €","37,00 Km in zone_1_km (1,10 € * 37,71 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22011380","46,5","0.00","18,02","G-ELIT Präzisionswerk GmbH","Lengeder Str. 29-35","13407, 12689, 13407","37,34","08:00 (06.05.)","07:08 (05.05.)","56,72","Lengeder Str.;29-35;13407;Berlin;DE|Hellersdorfer Weg;35;12689;Berlin;DE|Lengeder Str.;29-35;13407;Berlin;DE","62,48 €","37,00 Km in zone_1_km (1,10 € * 37,71 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018800","45,62","0.00","18,01","Brillux GmbH & Co. KG","Gewerbepark 24","15745, 15562","36,9","08:32 (07.05.)","09:06 (07.05.)","55,64","Gewerbepark;24;15745;Wildau;DE|Altenaer Str.;17;15562;Rüdersdorf b Berlin;DE","72,50 €","36,00 Km in zone_2_km (1,10 € * 36,90 km), Anfahrt in zone_2_eap (1,10 € * 16,28 km) + 14,00 € PKW"
|
||||
"22019775","42,46","39.68","22,19","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 14547","42,04","13:06 (07.05.)","13:12 (07.05.)","54,57","Hindenburgdamm;30a;12203;Berlin;DE|Paracelsusring;6a;14547;Beelitz, Mark;DE","66,42 €","47,00 Km in ausserhalb_km (1,10 € * 22,55 km) + zone_1_km (1,10 € * 4,84 km) + zone_2_km (1,10 € * 20,26 km) + 14,00 € PKW"
|
||||
"22015745","44,32","0.00","18","FSM Syscomp GmbH","August-Conrad-Str. 40","16761, 12489","41,19","11:48 (05.05.)","11:49 (05.05.)","54,05","August-Conrad-Str.;40;16761;Hennigsdorf;DE|Barbara-McClintock-Str.;11;12489;Berlin;DE","59,58 €","41,00 Km in zone_2_km (1,10 € * 2,77 km) + zone_1_km (1,10 € * 38,67 km) + 14,00 € PKW"
|
||||
"22015913","44,31","0.00","18,01","Flowster Selution GMbh","Rigaer Str. 44","10247, 14641","68,73","12:47 (05.05.)","12:48 (05.05.)","54,04","Rigaer Str.;44;10247;Berlin;DE|Dr.-Kron-Weg;12;14641;Nauen;DE","89,60 €","68,00 Km in ausserhalb_km (1,10 € * 3,59 km) + zone_1_km (1,10 € * 16,22 km) + zone_2_km (1,10 € * 48,92 km) + 14,00 € PKW"
|
||||
"22019183","44,31","0.00","18,01","Eckert & Ziegler Radiopharma","Robert-Rössle-Str. 10","13125, 10589, 12489","51,11","12:05 (07.05.)","10:09 (07.05.)","54,04","Robert-Rössle-Str.;10;13125;Berlin;DE|Max-Dohrn-Strasse;8-10;10589;Berlin;DE|Volmerstrasse;7a;12489;Berlin;DE","76,46 €","50,00 Km in zone_1_km (1,10 € * 50,42 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22016082","43,87","0.00","18","Tepper Aufzüge GmbH","Herzbergstr. 50","10365, 10315","4,16","13:50 (05.05.)","13:50 (05.05.)","53,5","Herzbergstr.;50;10365;Berlin;DE|Allee der Kosmonauten;18;10315;Berlin;DE","19,50 € [M]","4,00 Km in zone_1_km (1,10 € * 4,16 km) + 14,00 € PKW"
|
||||
"22017435","43,87","0.00","18","Tepper Aufzüge GmbH","Herzbergstr. 50","10365, 10587","14,95","10:47 (06.05.)","10:51 (06.05.)","53,5","Herzbergstr.;50;10365;Berlin;DE|Loschmidtstr.;19;10587;Berlin;DE","30,43 €","14,00 Km in zone_1_km (1,10 € * 14,94 km) + 14,00 € PKW"
|
||||
"22019626","43,87","0.00","18","GROEGER Bauaufzüge + Hebetechnik","Industriestr. 5","15370, 13589","70,93","12:14 (07.05.)","12:25 (07.05.)","53,5","Industriestr.;5;15370;Fredersdorf-Vogelsdorf;DE|Radelandstr.;181;13589;Berlin;DE","92,01 €","70,00 Km in zone_2_km (1,10 € * 59,31 km) + zone_1_km (1,10 € * 11,61 km) + 14,00 € PKW"
|
||||
"22020374","43,87","0.00","18","Tepper Aufzüge GmbH","Herzbergstr. 50","10365, 13353","14,5","17:24 (07.05.)","17:24 (07.05.)","53,5","Herzbergstr.;50;10365;Berlin;DE|Westhafenstr.;1;13353;Berlin;DE","29,94 €","14,00 Km in zone_1_km (1,10 € * 14,49 km) + 14,00 € PKW"
|
||||
"22015541","42,99","0.00","18","AUCOTEAM GmbH","Josef-Orlopp-Str. 58","10365, 14478","45,76","10:52 (05.05.)","10:58 (05.05.)","52,43","Josef-Orlopp-Str.;58;10365;Berlin;DE|Verkehrshof;9;14478;Potsdam;DE","61,37 €","43,00 Km in zone_1_km (1,10 € * 32,36 km) + zone_2_km (1,10 € * 10,70 km) + 14,00 € PKW"
|
||||
"22017443","42,99","0.00","18","Nico Garz Malereibetrieb GmbH","Bahnhofspassage 1","16348, 16348, 16348","50,61","10:49 (06.05.)","11:06 (06.05.)","52,43","Bahnhofspassage;1;16348;Wandlitz - Schönwalde;DE|Ahornweg;9a;16348;Wandlitz - Schönwalde;DE|Bahnhofspassage;1;16348;Wandlitz - Schönwalde;DE","81,62 €","50,00 Km in ausserhalb_km (1,10 € * 22,65 km) + zone_2_km (1,10 € * 27,94 km), Anfahrt in zone_2_eap (1,10 € * 4,52 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018670","42,99","0.00","18","Lusche Seil- und Hebetechnik GmbH","Bucher Weg 2b","16356, 10243, 10719","23,48","07:57 (07.05.)","08:02 (07.05.)","52,43","Bucher Weg;2b;16356;Ahrensfelde / OT Lindenberg;DE|Lange Str.;25;10243;Berlin;DE|Lietzenburger Str.;80;10719;Berlin;DE","46,82 €","23,00 Km in zone_2_km (1,10 € * 1,81 km) + zone_1_km (1,10 € * 21,66 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015101","42,56","0.00","18,01","KERAMUNDO - Welt der Fliesen","Teilestr. 9-10","12099, 16515","44,51","09:10 (05.05.)","09:29 (05.05.)","51,91","Teilestr.;9-10;12099;Berlin;DE|Havelkorso;21;16515;Oranienburg - Lehnitz;DE","63,13 €","44,00 Km in zone_1_km (1,10 € * 28,02 km) + zone_2_km (1,10 € * 16,64 km) + 14,00 € PKW"
|
||||
"22016859","42,55","0.00","18,02","TK Aufzüge GmbH","Pohlstr. 20","10785, 15344","43,41","08:17 (06.05.)","08:27 (06.05.)","51,9","Pohlstr.;20;10785;Berlin;DE|Hans-Beimler-Ring;1-5;15344;Strausberg;DE","61,76 €","43,00 Km in zone_1_km (1,10 € * 19,13 km) + zone_2_km (1,10 € * 24,29 km) + 14,00 € PKW"
|
||||
"22017175","42,12","0.00","17,99","Sven Walter Logistik e.K.","Sterckmannweg 11","12685, 12103, 12685","46,82","08:15 (07.05.)","07:45 (07.05.)","51,36","Sterckmannweg;11;12685;Berlin;DE|Alt-Tempelhof;37-41;12103;Berlin;DE|Sterckmannweg;11;12685;Berlin;DE","66,87 €","41,00 Km in zone_1_km (1,10 € * 41,70 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015534","41,68","0.00","18","Berliner Schrauben GmbH","Industriestr. 3","15366, 14109","52,65","11:15 (05.05.)","10:50 (05.05.)","50,83","Industriestr.;3;15366;Hoppegarten - Dahlwitz-Hoppegarten;DE|Golfweg;22;14109;Berlin;DE","113,09 €","90,00 Km in zone_2_km (1,10 € * 86,05 km) + zone_1_km (1,10 € * 4,03 km) + 14,00 € PKW"
|
||||
"22019929","41,68","0.00","18","GEFEG mbH","Storkower Str. 207","10369, 15712","51,25","13:54 (07.05.)","15:09 (07.05.)","50,83","Storkower Str.;207;10369;Berlin;DE|Fontanestr.;14;15712;Königs Wusterhausen / OT Kablow;DE","70,30 €","51,00 Km in ausserhalb_km (1,10 € * 7,85 km) + zone_1_km (1,10 € * 11,97 km) + zone_2_km (1,10 € * 31,36 km) + 14,00 € PKW"
|
||||
"22016611","39,13","36.57","22,19","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 16547","38,74","06:00 (06.05.)","21:31 (05.05.)","50,29","Hindenburgdamm;30a;12203;Berlin;DE|Hubertusstr.;12-22;16547;Birkenwerder;DE","56,77 €","38,00 Km in zone_1_km (1,10 € * 28,56 km) + zone_2_km (1,10 € * 10,32 km) + 14,00 € PKW"
|
||||
"22018459","39,13","36.57","22,19","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 16547","38,4","06:30 (07.05.)","20:44 (06.05.)","50,29","Hindenburgdamm;30a;12203;Berlin;DE|Hubertusstr.;12-22;16547;Birkenwerder;DE","56,77 €","38,00 Km in zone_1_km (1,10 € * 28,56 km) + zone_2_km (1,10 € * 10,32 km) + 14,00 € PKW"
|
||||
"22014347","39,92","0.00","18,01","R + S Aufzugbau GmbH","Herzbergstr. 87-99","10365, 12587, 12247","49,56","06:55 (05.05.)","13:20 (04.05.)","48,69","Herzbergstr.;87-99;10365;Berlin;DE|Josef-Nawrocki-Str.;36;12587;Berlin;DE|Nicolaistr.;5;12247;Berlin;DE","72,74 €","47,00 Km in zone_1_km (1,10 € * 42,88 km) + zone_2_km (1,10 € * 4,16 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22016132","39,92","0.00","18,01","Kieback & Peter GmbH & Co. KG","Dahmestr. 18-19","15749, 12357","22,33","14:06 (05.05.)","15:34 (05.05.)","48,69","Dahmestr.;18-19;15749;Mittenwalde;DE|Mistelweg;2-6;12357;Berlin;DE","38,56 €","22,00 Km in ausserhalb_km (1,10 € * 3,39 km) + zone_2_km (1,10 € * 13,43 km) + zone_1_km (1,10 € * 5,51 km) + 14,00 € PKW"
|
||||
"22017273","39,92","0.00","18,01","WeGo Systembaustoffe GmbH","Gottlieb-Dunkel-Str. 20-22","12099, 15749","31,41","10:05 (06.05.)","10:10 (06.05.)","48,69","Gottlieb-Dunkel-Str.;20-22;12099;Berlin;DE|Dahmestr.;21;15749;Mittenwalde;DE","46,08 €","29,00 Km in ausserhalb_km (1,10 € * 3,94 km) + zone_1_km (1,10 € * 12,23 km) + zone_2_km (1,10 € * 12,99 km) + 14,00 € PKW"
|
||||
"22011598","39,48","0.00","18,01","Institut für Arbeits- und Wohn-","Spreebordstr. 5","15537, 13088","","09:00 (05.05.)","","48,15","Spreebordstr.;5;15537;Gosen-Neu Zittau;DE|An der Industriebahn;5;13088;Berlin;DE","64,26 €","45,00 Km in zone_2_km (1,10 € * 40,23 km) + zone_1_km (1,10 € * 5,46 km) + 14,00 € PKW"
|
||||
"22017272","39,48","0.00","18,01","BEDO Innenausbausysteme und Bau","Hermann-Blankenstein-Str. 50","10249, 14558","40,01","10:03 (06.05.)","10:56 (06.05.)","48,15","Hermann-Blankenstein-Str.;50;10249;Berlin;DE|Nudower Dorfstr.;34;14558;Nuthetal - Nudow;DE","58,00 €","40,00 Km in zone_1_km (1,10 € * 26,86 km) + zone_2_km (1,10 € * 13,14 km) + 14,00 € PKW"
|
||||
"22017275","39,04","0.00","18,02","Jalousien-Boettcher GmbH","Assmannstr. 54","12587, 15344","25,56","10:04 (06.05.)","10:40 (06.05.)","47,62","Assmannstr.;54;12587;Berlin;DE|Berliner Str.;101;15344;Strausberg;DE","42,12 €","25,00 Km in zone_1_km (1,10 € * 4,09 km) + zone_2_km (1,10 € * 21,47 km) + 14,00 € PKW"
|
||||
"22018827","39,04","0.00","18,02","Kaulich IT-Systems GmbH","Berliner Str. 101","15344, 12587","26,48","08:39 (07.05.)","08:39 (07.05.)","47,62","Berliner Str.;101;15344;Strausberg;DE|Assmannstr.;54;12587;Berlin;DE","43,13 €","26,00 Km in zone_2_km (1,10 € * 22,79 km) + zone_1_km (1,10 € * 3,69 km) + 14,00 € PKW"
|
||||
"22016448","38,61","0.00","17,99","GROEGER Bauaufzüge + Hebetechnik","Industriestr. 5","15370, 13467","45,91","07:00 (06.05.)","16:52 (05.05.)","47,08","Industriestr.;5;15370;Fredersdorf-Vogelsdorf;DE|Berliner Str.;26;13467;Berlin;DE","64,48 €","45,00 Km in zone_2_km (1,10 € * 39,98 km) + zone_1_km (1,10 € * 5,91 km) + 14,00 € PKW"
|
||||
"22014656","40,96","0.00","12,01","Berlin Hbf (tief), SP","Europaplatz .","10557, 14476","45,5","17:00 (05.05.)","13:28 (05.05.)","46,55","Europaplatz;.;10557;Berlin;DE|Am Mühlenberg 13;.;14476;Potsdam;DE","64,20 €","45,00 Km in zone_1_km (1,10 € * 22,74 km) + zone_2_km (1,10 € * 22,90 km) + 14,00 € PKW"
|
||||
"22017518","38,17","0.00","18","Baustelle","Unter den Eichen 27","14478, 13509","40,37","11:09 (06.05.)","11:09 (06.05.)","46,55","Unter den Eichen;27;14478;Potsdam;DE|Holzhauser Str.;139;13509;Berlin;DE","53,66 €","36,00 Km in zone_2_km (1,10 € * 13,15 km) + zone_1_km (1,10 € * 22,90 km) + 14,00 € PKW"
|
||||
"22018447","36,31","0.00","22","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 13509","23,27","18:53 (06.05.)","18:55 (06.05.)","46,55","Hindenburgdamm;30a;12203;Berlin;DE|Am Nordgraben;2;13509;Berlin;DE","39,76 €","23,00 Km in zone_1_km (1,10 € * 23,42 km) + 14,00 € PKW"
|
||||
"22017353","38,17","0.00","18","Dr.-Ing. Rainer Heyer","Barbara-McClintock-Str. 11","12489, 16761","42,47","07:15 (07.05.)","16:37 (06.05.)","46,55","Barbara-McClintock-Str.;11;12489;Berlin;DE|August-Conrad-Str.;40;16761;Hennigsdorf;DE","59,88 €","41,00 Km in zone_1_km (1,10 € * 38,89 km) + zone_2_km (1,10 € * 2,82 km) + 14,00 € PKW"
|
||||
"22019840","38,17","0.00","18","OBI GmbH & Co. Deutschland KG","Waidmannsluster Damm 190","13469, 14469","","13:29 (07.05.)","","46,55","Waidmannsluster Damm;190;13469;Berlin;DE|Am Raubfang;3;14469;Potsdam - Bornim;DE","62,97 €","44,00 Km in zone_1_km (1,10 € * 26,32 km) + zone_2_km (1,10 € * 18,20 km) + 14,00 € PKW"
|
||||
"22020415","36,31","0.00","22","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 13509","23,27","21:37 (07.05.)","21:39 (07.05.)","46,55","Hindenburgdamm;30a;12203;Berlin;DE|Am Nordgraben;2;13509;Berlin;DE","39,76 €","23,00 Km in zone_1_km (1,10 € * 23,42 km) + 14,00 € PKW"
|
||||
"22014458","37,73","0.00","18","Edelstahl-Haese","Rüdersdorfer Str. 55","15569, 10117","31,81","09:00 (05.05.)","16:25 (04.05.)","46,01","Rüdersdorfer Str.;55;15569;Woltersdorf;DE|Behrenstr.;72;10117;Berlin;DE","48,98 €","31,00 Km in zone_2_km (1,10 € * 14,55 km) + zone_1_km (1,10 € * 17,25 km) + 14,00 € PKW"
|
||||
"22015673","37,73","0.00","18","sto_Kst. Kunde","Ullsteinstr. 98-106","12109, 16321","75,14","11:28 (05.05.)","11:30 (05.05.)","46,01","Ullsteinstr.;98-106;12109;Berlin;DE|Johann-Friedrich-A.-Borsig-Str.;.;16321;Bernau bei Berlin - Bernau;DE","60,77 €","42,00 Km in zone_1_km (1,10 € * 28,93 km) + zone_2_km (1,10 € * 13,59 km) + 14,00 € PKW"
|
||||
"22018445","37,51","0.00","17,99","Humboldt-Klinikum","Am Nordgraben 2","13509, 12351","28,28","21:00 (06.05.)","18:59 (06.05.)","45,74","Am Nordgraben;2;13509;Berlin;DE|Kormoranweg;45;12351;Berlin;DE","45,08 €","28,00 Km in zone_1_km (1,10 € * 28,25 km) + 14,00 € PKW"
|
||||
"22017701","37,44","0.00","18","Minimax GmbH/ Lager","Gottlieb-Dunkel-Str. 20-21","12099, 14974","0","07:00 (07.05.)","06:33 (07.05.)","45,66","Gottlieb-Dunkel-Str.;20-21;12099;Berlin;DE|An der Eichspitze;Süd;14974;Ludwigsfelde;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22016754","37,29","0.00","18,01","Seka AG","Werkstättenweg 4-5","14055, 16515","38,88","07:38 (06.05.)","08:40 (06.05.)","45,48","Werkstättenweg;4-5;14055;Berlin;DE|Adolf-Dechert-Str.;1;16515;Oranienburg;DE","53,53 €","36,00 Km in zone_1_km (1,10 € * 18,85 km) + zone_2_km (1,10 € * 17,09 km) + 14,00 € PKW"
|
||||
"22017314","35,47","0.00","22,01","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 16321","","10:16 (06.05.)","","45,48","Hindenburgdamm;30a;12203;Berlin;DE|Ladeburger Str.;13-17;16321;Bernau;DE","66,33 €","47,00 Km in zone_1_km (1,10 € * 32,09 km) + zone_2_km (1,10 € * 15,48 km) + 14,00 € PKW"
|
||||
"22014664","35,05","0.00","22,01","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 13585","23,05","00:09 (05.05.)","00:34 (05.05.)","44,94","Hindenburgdamm;30a;12203;Berlin;DE|Neue Bergstr.;6;13585;Berlin;DE","37,50 €","21,00 Km in zone_1_km (1,10 € * 21,36 km) + 14,00 € PKW"
|
||||
"22014668","35,05","0.00","22,01","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 13585","23,05","04:47 (05.05.)","04:51 (05.05.)","44,94","Hindenburgdamm;30a;12203;Berlin;DE|Neue Bergstr.;6;13585;Berlin;DE","37,50 €","21,00 Km in zone_1_km (1,10 € * 21,36 km) + 14,00 € PKW"
|
||||
"22016621","35,05","0.00","22,01","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 13585","23,05","02:31 (06.05.)","04:38 (06.05.)","44,94","Hindenburgdamm;30a;12203;Berlin;DE|Neue Bergstr.;6;13585;Berlin;DE","37,50 €","21,00 Km in zone_1_km (1,10 € * 21,36 km) + 14,00 € PKW"
|
||||
"22014849","36,85","0.00","18","Rausch Straßen- und Tiefbau","Chemnitzer Str. 19","14612, 12489","39,35","08:00 (06.05.)","07:17 (06.05.)","44,94","Chemnitzer Str.;19;14612;Falkensee;DE|Rudower Chaussee;48;12489;Berlin;DE","57,37 €","39,00 Km in zone_2_km (1,10 € * 7,13 km) + zone_1_km (1,10 € * 32,30 km) + 14,00 € PKW"
|
||||
"22017672","36,85","0.00","18","Ferrum Lasercut","Bruno-Buergel-Weg 142-144","12439, 14612","43,23","09:00 (07.05.)","10:17 (07.05.)","44,94","Bruno-Buergel-Weg;142-144;12439;Berlin;DE|Straße der Einheit;102;14612;Falkensee;DE","57,78 €","39,00 Km in zone_1_km (1,10 € * 34,64 km) + zone_2_km (1,10 € * 5,16 km) + 14,00 € PKW"
|
||||
"22017945","35,97","0.00","18,03","KÖNIGSDRUCK","Alt-Reinickendorf 28","13407, 10243, 12099","20,91","13:35 (06.05.)","13:33 (06.05.)","43,88","Alt-Reinickendorf;28;13407;Berlin;DE|Mühlenstr.;9-10;10243;Berlin;DE|Tempelhofer Damm;165;12099;Berlin;DE","44,09 €","21,00 Km in zone_1_km (1,10 € * 20,99 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22016779","35,97","0.00","18,01","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 16761","34,21","07:48 (06.05.)","09:13 (06.05.)","43,87","Gradestr.;46-50;12347;Berlin;DE|Walter-Kleinow-Ring;6;16761;Hennigsdorf;DE","51,80 €","34,00 Km in zone_1_km (1,10 € * 30,47 km) + zone_2_km (1,10 € * 3,89 km) + 14,00 € PKW"
|
||||
"22017810","35,97","0.00","18,01","A & K Anschlagmittel u. Hebezeuge","Otisstr. 49","13403, 15370","64,96","12:45 (06.05.)","14:05 (06.05.)","43,87","Otisstr.;49;13403;Berlin;DE|Fredersdorfer Str.;31;15370;Fredersdorf-Vogelsdorf - Vogelsdorf;DE","85,45 €","65,00 Km in zone_1_km (1,10 € * 13,49 km) + zone_2_km (1,10 € * 51,46 km) + 14,00 € PKW"
|
||||
"22014948","35,53","0.00","18,02","MSK Werkzeughandel","Königin-Elisabeth-Str. 9a","14059, 15745","39,71","09:00 (05.05.)","08:50 (05.05.)","43,34","Königin-Elisabeth-Str.;9a;14059;Berlin;DE|Dorfaue;15;15745;Wildau;DE","57,77 €","39,00 Km in zone_1_km (1,10 € * 24,15 km) + zone_2_km (1,10 € * 15,64 km) + 14,00 € PKW"
|
||||
"22015319","35,53","0.00","18,02","Seyer & Brosch Mobility Service","Berliner Str. 19a","13189, 15831","58,1","09:56 (05.05.)","09:57 (05.05.)","43,34","Berliner Str.;19a;13189;Berlin;DE|Otto-Porath-Platz;2-3;15831;Blankenfelde-Mahlow - Groß Kienitz;DE","107,16 €","84,00 Km in zone_1_km (1,10 € * 15,33 km) + zone_2_km (1,10 € * 69,36 km) + 14,00 € PKW"
|
||||
"22014473","32,1","30.00","25,93","Treskow Apotheke","Ehrenfelsstr. 46","10318, .","0","17:00 (05.05.)","15:35 (05.05.)","43,34","Ehrenfelsstr.;46;10318;Berlin;DE|.;.;.;.;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22016579","32,1","30.00","25,93","Treskow Apotheke","Ehrenfelsstr. 46","10318, .","","17:00 (06.05.)","15:21 (06.05.)","43,34","Ehrenfelsstr.;46;10318;Berlin;DE|.;.;.;.;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22018435","32,1","30.00","25,93","Treskow Apotheke","Ehrenfelsstr. 46","10318, .","0","17:00 (07.05.)","16:00 (07.05.)","43,34","Ehrenfelsstr.;46;10318;Berlin;DE|.;.;.;.;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22015975","35,1","0.00","18,01","AGAPLESION BETHANIEN DIAKONIE","Dieffenbachstr. 40","10967, 13581, 13589","29,07","13:12 (05.05.)","13:16 (05.05.)","42,81","Dieffenbachstr.;40;10967;Berlin;DE|Spandauer Burgwall;29;13581;Berlin;DE|Radelandstr.;199-205;13589;Berlin;DE","52,97 €","29,00 Km in zone_1_km (1,10 € * 29,06 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22016547","35,1","0.00","17,99","Tepper Aufzüge GmbH","Herzbergstr. 50","10365, 10587","14,95","17:04 (05.05.)","17:04 (05.05.)","42,8","Herzbergstr.;50;10365;Berlin;DE|Loschmidtstr.;19;10587;Berlin;DE","30,43 €","14,00 Km in zone_1_km (1,10 € * 14,94 km) + 14,00 € PKW"
|
||||
"22010296","35,1","0.00","17,99","Martin-Luther-Krankenhaus-","Caspar-Theyss-Str. 33","14193, 10585, 10713, 14193","12,02","07:45 (06.05.)","07:04 (06.05.)","42,8","Caspar-Theyss-Str.;33;14193;Berlin;DE|Otto-Suhr-Allee;100;10585;Berlin;DE|Hohenzollerndamm;.;10713;Berlin;DE|Caspar-Theyss-Str.;33;14193;Berlin;DE","41,23 €","12,00 Km in zone_1_km (1,10 € * 12,03 km) + 14,00 € PKW + 7,00 € pro 2 weitere Adresse(n)"
|
||||
"22016270","35,1","0.00","17,99","Neuser GmbH","Parkallee 15","14974, 10365","48,66","08:00 (06.05.)","07:01 (06.05.)","42,8","Parkallee;15;14974;Ludwigsfelde - Genshagen;DE|Josef-Orlopp-Str.;58;10365;Berlin;DE","68,16 €","49,00 Km in zone_2_km (1,10 € * 29,74 km) + zone_1_km (1,10 € * 19,50 km) + 14,00 € PKW"
|
||||
"22018007","35,1","0.00","17,99","IWAM GmbH","Boxberger Straße 10","12681, 15831","70,44","13:53 (06.05.)","13:54 (06.05.)","42,8","Boxberger Straße;10;12681;Berlin;DE|Otto-Porath-Platz;2;15831;Groß Kienitz;DE","91,47 €","70,00 Km in zone_1_km (1,10 € * 4,75 km) + zone_2_km (1,10 € * 65,68 km) + 14,00 € PKW"
|
||||
"22007945","34,66","0.00","18","Kantine Partyservice","Chausseestr. 3","15745, 10557","35,35","08:00 (05.05.)","16:24 (04.05.)","42,27","Chausseestr.;3;15745;Wildau;DE|Europaplatz;1;10557;Berlin;DE","53,12 €","35,00 Km in zone_2_km (1,10 € * 14,03 km) + zone_1_km (1,10 € * 21,53 km) + 14,00 € PKW"
|
||||
"22017277","34,66","0.00","18","WeGo Systembaustoffe GmbH","Gottlieb-Dunkel-Str. 20-22","12099, 14974","19,98","10:10 (06.05.)","10:14 (06.05.)","42,27","Gottlieb-Dunkel-Str.;20-22;12099;Berlin;DE|Uferring;..;14974;Ludwigsfelde - Genshagen;DE","35,98 €","20,00 Km in zone_1_km (1,10 € * 7,60 km) + zone_2_km (1,10 € * 12,38 km) + 14,00 € PKW"
|
||||
"22018636","34,66","0.00","18","MAN Truck + Bus Deutschland","Siegfriedstr. 49-51","10365, 12681, 13156","20,67","07:45 (07.05.)","09:31 (07.05.)","42,27","Siegfriedstr.;49-51;10365;Berlin;DE|Nordring;5;12681;Berlin;DE|Buchholzer Str.;32;13156;Berlin;DE","43,66 €","20,00 Km in zone_1_km (1,10 € * 20,60 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22019656","34,66","0.00","18","PROSOL Lacke + Farben GmbH","Gaußstr. 17","10589, 16348","50,54","12:25 (07.05.)","12:46 (07.05.)","42,27","Gaußstr.;17;10589;Berlin;DE|Ulmenstr.;19;16348;Wandlitz;DE","69,57 €","50,00 Km in zone_1_km (1,10 € * 14,36 km) + zone_2_km (1,10 € * 36,16 km) + 14,00 € PKW"
|
||||
"22019787","34,66","0.00","18","Scania Vertrieb und Service GmbH","Ordensmeisterstr. 40","12099, 14974","20,85","13:10 (07.05.)","13:15 (07.05.)","42,27","Ordensmeisterstr.;40;12099;Berlin;DE|Kastanienweg;7;14974;Ludwigsfelde / OT Genshagen;DE","36,92 €","20,00 Km in zone_1_km (1,10 € * 7,31 km) + zone_2_km (1,10 € * 13,53 km) + 14,00 € PKW"
|
||||
"22015044","34,44","0.00","18","Hilti Deutschland GmbH","Holzhauser Str. 152a","13509, 12487","32,02","08:54 (05.05.)","08:54 (05.05.)","42","Holzhauser Str.;152a;13509;Berlin;DE|Groß-Berliner-Damm;92-94;12487;Berlin;DE","48,35 €","31,00 Km in zone_1_km (1,10 € * 31,23 km) + 14,00 € PKW"
|
||||
"22018408","36,82","0.00","12","CO.DON GmbH - 3.OG Empfang","Warthestr. 21 .","14513, 10557","20,38","15:00 (07.05.)","14:26 (07.05.)","41,84","Warthestr. 21;.;14513;Teltow;DE|Europaplatz;.;10557;Berlin;DE","36,41 €","20,00 Km in zone_2_km (1,10 € * 2,73 km) + zone_1_km (1,10 € * 17,64 km) + 14,00 € PKW"
|
||||
"22012020","34,22","0.00","18,02","Hülle & Fülle GmbH","Zossener Str. 41","10961, 10623, 10178","13,72","09:30 (05.05.)","09:18 (05.05.)","41,74","Zossener Str.;41;10961;Berlin;DE|Kantstr.;17;10623;Berlin;DE|Sophienstr.;6;10178;Berlin;DE","36,33 €","13,00 Km in zone_1_km (1,10 € * 13,94 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015277","34,22","0.00","18,02","Kanzlei Sari","Turmstr. 14","10559, 12051, 10559","24,71","09:46 (05.05.)","10:08 (05.05.)","41,74","Turmstr.;14;10559;Berlin;DE|Nogatstr.;28;12051;Berlin;DE|Turmstr.;14;10559;Berlin;DE","44,39 €","21,00 Km in zone_1_km (1,10 € * 21,26 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015504","34,22","0.00","18,02","AAS Aufzüge Körner + Heiden GmbH","Stieffring 8","13627, 12279, 13627","44,87","10:44 (05.05.)","10:45 (05.05.)","41,74","Stieffring;8;13627;Berlin;DE|Stadtilmer Weg;8;12279;Berlin;DE|Stieffring;8;13627;Berlin;DE","69,65 €","44,00 Km in zone_1_km (1,10 € * 44,23 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015618","34,22","0.00","18,02","Capital Baustoffe GmbH","Bergholzstr. 4","12099, 10437, 12099","","11:13 (05.05.)","","41,74","Bergholzstr.;4;12099;Berlin;DE|Lychener Strasse;54;10437;Berlin;DE|Bergholzstr.;4;12099;Berlin;DE","52,35 €","28,00 Km in zone_1_km (1,10 € * 28,50 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015888","34,22","0.00","18,02","Kohlstock GmbH","Oberlandstr. 13-14","12099, 12349, 12307","12,52","12:37 (05.05.)","12:39 (05.05.)","41,74","Oberlandstr.;13-14;12099;Berlin;DE|Hüfnerweg;9;12349;Berlin;DE|Prinzessinnenstr.;30;12307;Berlin;DE","34,23 €","12,00 Km in zone_1_km (1,10 € * 12,03 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015947","34,22","0.00","18,02","WEIHE GmbH","Beusselstr. 44n-q","10553, 10553, 10553","4,51","12:58 (05.05.)","13:02 (05.05.)","41,74","Beusselstr.;44n-q;10553;Berlin;DE|Huttenstr.;37;10553;Berlin;DE|Beusselstr.;44n-q;10553;Berlin;DE","25,95 €","4,00 Km in zone_1_km (1,10 € * 4,50 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22016121","34,22","0.00","18,02","Kanzlei Runge & Partner","Heerstr. 616","13591, 13351, 13591","38,33","14:02 (05.05.)","14:10 (05.05.)","41,74","Heerstr.;616;13591;Berlin;DE|Togostr.;38C;13351;Berlin;DE|Heerstr.;616;13591;Berlin;DE","63,15 €","38,00 Km in zone_1_km (1,10 € * 38,32 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015965","34,22","0.00","18,02","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 10559 , 14195","36,43","07:30 (06.05.)","07:04 (06.05.)","41,74","Gradestr.;46-50;12347;Berlin;DE|Stephanstrasse;38-43;10559;Berlin;DE|Archivstrasse;12-14;14195;Berlin;DE","52,55 €","28,00 Km in zone_1_km (1,10 € * 28,68 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22016956","34,22","0.00","18,02","Eckard Kanold GmbH &","Bessemerstr. 24-26","12103, 10365, 12103","33,68","08:42 (06.05.)","10:23 (06.05.)","41,74","Bessemerstr.;24-26;12103;Berlin;DE|Herzbergstr.;127;10365;Berlin;DE|Bessemerstr.;24-26;12103;Berlin;DE","54,26 €","30,00 Km in zone_1_km (1,10 € * 30,24 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22014148","34,22","0.00","18,02","Knackpunkt Berlin Inh. Angela Kruse","Muellerstr. 163b","13353, 13509, 13353","14,48","12:00 (06.05.)","","41,74","Muellerstr.;163b;13353;Berlin;DE|Holzhauser Str.;55;13509;Berlin;DE|Muellerstr.;164;13353;Berlin;DE","37,07 €","14,00 Km in zone_1_km (1,10 € * 14,61 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018312","34,22","0.00","18,02","R + S Aufzugbau GmbH","Herzbergstr. 87-99","10365, 10318, 12559","15,97","06:55 (07.05.)","15:48 (06.05.)","41,74","Herzbergstr.;87-99;10365;Berlin;DE|Treskowallee;118;10318;Berlin;DE|Pablo-Neruda-Str.;6-7;12559;Berlin;DE","38,58 €","16,00 Km in zone_1_km (1,10 € * 15,98 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22016915","34,22","0.00","18,02","STADTBOTE GmbH NL Berlin","Colditzstr. 33","12099, 10553, 12099","37,3","09:00 (07.05.)","08:03 (07.05.)","41,74","Colditzstr.;33;12099;Berlin;DE|Ufnaustr.;6;10553;Berlin;DE|Colditzstr.;33;12099;Berlin;DE","58,42 €","34,00 Km in zone_1_km (1,10 € * 34,02 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018928","34,22","0.00","18,02","Merkur Schoppe - Kundendienst","Holzhauser Str. 139","13509, 10405, 13509","26,11","09:05 (07.05.)","09:05 (07.05.)","41,74","Holzhauser Str.;139;13509;Berlin;DE|Lilli-Henoch-Str.;3;10405;Berlin;DE|Holzhauser Str.;139;13509;Berlin;DE","48,69 €","25,00 Km in zone_1_km (1,10 € * 25,17 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018973","34,22","0.00","18,02","Bauschlosserei Karras GmbH","Osloer Str. 112","13359, 10963, 12099","12,78","09:17 (07.05.)","09:18 (07.05.)","41,74","Osloer Str.;112;13359;Berlin;DE|Obentrautstr.;72;10963;Berlin;DE|Ringbahnstr.;22-26;12099;Berlin;DE","36,25 €","13,00 Km in zone_1_km (1,10 € * 13,86 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22019018","34,22","0.00","18,02","Hasse + Wrede GmbH","Georg-Knorr-Str. 4","12681, 12689, 12681","6,46","09:25 (07.05.)","09:46 (07.05.)","41,74","Georg-Knorr-Str.;4;12681;Berlin;DE|Hellersdorfer Weg;35;12689;Berlin;DE|Georg-Knorr-Str.;4;12681;Berlin;DE","28,11 €","6,00 Km in zone_1_km (1,10 € * 6,46 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22019027","34,22","0.00","18,02","Scholz Elektrotechnik GmbH","Lauenburger Str. 85","12169, 10719, 12169","16,64","09:26 (07.05.)","09:28 (07.05.)","41,74","Lauenburger Str.;85;12169;Berlin;DE|Emser Str.;3;10719;Berlin;DE|Lauenburger Str.;85;12169;Berlin;DE","39,29 €","16,00 Km in zone_1_km (1,10 € * 16,63 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22016571","34,22","0.00","18,02","Johannesstift Diakonie gAG","Siemensdamm 50","13629, 10969, 13629","37,06","10:30 (07.05.)","12:41 (06.05.)","41,74","Siemensdamm;50;13629;Berlin;DE|Jakobikirchstr.;6;10969;Berlin;DE|Siemensdamm;50;13629;Berlin;DE","51,73 €","28,00 Km in zone_1_km (1,10 € * 27,94 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22019313","34,22","0.00","18,02","Alloheim Senioren-Residenzen Dritte","Schieritzstr. 30","10409, 12049, 10409","16,84","10:40 (07.05.)","10:41 (07.05.)","41,74","Schieritzstr.;30;10409;Berlin;DE|Hermannstr.;7-8;12049;Berlin;DE|Schieritzstr.;30;10409;Berlin;DE","39,52 €","16,00 Km in zone_1_km (1,10 € * 16,84 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22014865","34,22","0.00","18","Fa. Kindling","Ahrensfelder Chaussee 150","12689, 16761","47,8","08:08 (05.05.)","08:09 (05.05.)","41,73","Ahrensfelder Chaussee;150;12689;Berlin;DE|August-Conrad-Str.;40;16761;Hennigsdorf;DE","66,57 €","47,00 Km in zone_1_km (1,10 € * 4,87 km) + zone_2_km (1,10 € * 42,92 km) + 14,00 € PKW"
|
||||
"22018083","33,78","0.00","18,01","Minimax GmbH / Lager","Gottlieb-Dunkel-Str. 20-21","12099, 15537","","07:00 (07.05.)","06:31 (07.05.)","41,2","Gottlieb-Dunkel-Str.;20-21;12099;Berlin;DE|Ahornstr.;6 D;15537;Grünheide / OT Freienbrink;DE","64,57 €","46,00 Km in zone_1_km (1,10 € * 12,16 km) + zone_2_km (1,10 € * 33,81 km) + 14,00 € PKW"
|
||||
"22018540","33,78","0.00","18,01","Minimax GmbH / Lager","Gottlieb-Dunkel-Str. 20-21","12099, 15537","","07:08 (07.05.)","09:56 (07.05.)","41,2","Gottlieb-Dunkel-Str.;20-21;12099;Berlin;DE|Ahornstr.;6 D;15537;Grünheide / OT Freienbrink;DE","64,57 €","46,00 Km in zone_1_km (1,10 € * 12,16 km) + zone_2_km (1,10 € * 33,81 km) + 14,00 € PKW"
|
||||
"22018710","33,78","0.00","18,01","Bürotechnik Krause","Werner-von-Siemens-Str. 1","15566, 13129","34,23","08:30 (07.05.)","08:45 (07.05.)","41,2","Werner-von-Siemens-Str.;1;15566;Schöneiche b. Berlin;DE|Karower Damm;9-15;13129;Berlin;DE","51,65 €","34,00 Km in zone_2_km (1,10 € * 28,71 km) + zone_1_km (1,10 € * 5,52 km) + 14,00 € PKW"
|
||||
"22019213","33,78","0.00","18,01","Dosch Messapparate GmbH","Kamenzer Damm 85","12249, 16727","41,56","10:09 (07.05.)","10:13 (07.05.)","41,2","Kamenzer Damm;85;12249;Berlin;DE|Bahnstr.;26;16727;Velten;DE","59,71 €","41,00 Km in zone_1_km (1,10 € * 29,51 km) + zone_2_km (1,10 € * 12,04 km) + 14,00 € PKW"
|
||||
"22019682","33,78","0.00","18,01","SSG Schrauben Scholz GmbH","Lübarser Str. 19","13435, 15827","56,19","12:34 (07.05.)","12:36 (07.05.)","41,2","Lübarser Str.;19;13435;Berlin;DE|Ludwig-Erhard-Ring;7;15827;Blankenfelde-Mahlow;DE","62,77 €","44,00 Km in zone_1_km (1,10 € * 34,25 km) + zone_2_km (1,10 € * 10,09 km) + 14,00 € PKW"
|
||||
"22016002","35,81","0.00","11,99","WISAG Berlin-Brandenburg","Georg-Wulf-Straße 1 .","12529, 13355","","15:00 (06.05.)","12:58 (06.05.)","40,69","Georg-Wulf-Straße 1;.;12529;Schönefeld;DE|Bernauer Straße 111;.;13355;Berlin;DE","47,92 €","30,00 Km in zone_2_km (1,10 € * 7,40 km) + zone_1_km (1,10 € * 23,44 km) + 14,00 € PKW"
|
||||
"22014837","33,34","0.00","18","Fr. Zocher - privat","Straße der Jugend 43","14974, 10439","52,7","07:59 (05.05.)","08:46 (05.05.)","40,66","Straße der Jugend;43;14974;Ludwigsfelde;DE|Isländische Str.;6;10439;Berlin;DE","67,41 €","48,00 Km in zone_2_km (1,10 € * 23,44 km) + zone_1_km (1,10 € * 25,11 km) + 14,00 € PKW"
|
||||
"22015707","33,34","0.00","18","TK Aufzüge GmbH","Pohlstr. 20","10785, 14974","28,33","11:37 (05.05.)","11:44 (05.05.)","40,66","Pohlstr.;20;10785;Berlin;DE|Teltowkehre;25;14974;Ludwigsfelde;DE","46,41 €","29,00 Km in zone_1_km (1,10 € * 13,44 km) + zone_2_km (1,10 € * 16,02 km) + 14,00 € PKW"
|
||||
"22016095","33,34","0.00","18","Oskar Böttcher GmbH & Co. KG","Gottlieb-Daimler-Str. 13","14974, 10117","25,78","13:53 (05.05.)","13:54 (05.05.)","40,66","Gottlieb-Daimler-Str.;13;14974;Ludwigsfelde;DE|Kronenstr.;48;10117;Berlin;DE","42,36 €","25,00 Km in zone_2_km (1,10 € * 12,31 km) + zone_1_km (1,10 € * 13,47 km) + 14,00 € PKW"
|
||||
"22016642","33,34","0.00","18","Minimax GmbH/ Lager","Gottlieb-Dunkel-Str. 20-21","12099, 14974","0","06:28 (06.05.)","06:33 (06.05.)","40,66","Gottlieb-Dunkel-Str.;20-21;12099;Berlin;DE|An der Eichspitze;süd;14974;Ludwigsfelde;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22017769","33,34","0.00","18","Oskar Böttcher GmbH & Co. KG","Gottlieb-Daimler-Str. 13","14974, 12487","40,32","12:31 (06.05.)","14:11 (06.05.)","40,66","Gottlieb-Daimler-Str.;13;14974;Ludwigsfelde;DE|Groß-Berliner-Damm;96a;12487;Berlin;DE","58,35 €","40,00 Km in zone_2_km (1,10 € * 32,96 km) + zone_1_km (1,10 € * 7,36 km) + 14,00 € PKW"
|
||||
"22017785","33,34","0.00","18","Oskar Böttcher GmbH & Co. KG","Gottlieb-Daimler-Str. 13","14974, 10587","37,76","12:38 (06.05.)","12:42 (06.05.)","40,66","Gottlieb-Daimler-Str.;13;14974;Ludwigsfelde;DE|Hallerstr.;1;10587;Berlin;DE","55,53 €","37,00 Km in zone_2_km (1,10 € * 21,26 km) + zone_1_km (1,10 € * 16,49 km) + 14,00 € PKW"
|
||||
"22019142","33,34","0.00","18","Minimax GmbH / Lager","Gottlieb-Dunkel-Str. 20-21","12099, 14974","0","09:54 (07.05.)","10:03 (07.05.)","40,66","Gottlieb-Dunkel-Str.;20-21;12099;Berlin;DE|An der Eichspitze;SÜD;14974;Ludwigsfelde;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22017649","33,21","0.00","18","Deutsche Post AG - BZ 14","Ruhlsdorfer Str. 73-77","14532, 12529","27,67","11:49 (06.05.)","11:51 (06.05.)","40,5","Ruhlsdorfer Str.;73-77;14532;Stahnsdorf;DE|An den Gehren;3;12529;Schönefeld;DE","48,83 €","27,00 Km in zone_2_km (1,10 € * 27,66 km), Anfahrt in zone_2_eap (1,10 € * 4,00 km) + 14,00 € PKW"
|
||||
"22014203","32,9","0.00","18,02","DRK Blutspendedienst gGmbH Institut Potsdam","Horstweg 8a","14482, 12203","24,95","12:30 (05.05.)","11:46 (05.05.)","40,13","Horstweg;8a;14482;Potsdam;DE|Hindenburgdamm;30a;12203;Berlin;DE","37,71 €","21,00 Km in zone_2_km (1,10 € * 11,57 km) + zone_1_km (1,10 € * 9,98 km) + 14,00 € PKW"
|
||||
"22011260","32,9","0.00","18,02","Praxis Dr. Metzner","Luisenplatz 1","14471, 14199","27,74","14:00 (06.05.)","13:15 (06.05.)","40,13","Luisenplatz;1;14471;Potsdam;DE|Hohenzollerndamm;123;14199;Berlin;DE","44,62 €","27,00 Km in zone_2_km (1,10 € * 15,82 km) + zone_1_km (1,10 € * 12,02 km) + 14,00 € PKW"
|
||||
"22017523","32,9","0.00","18,02","Dachdecker-Einkauf Ost eG","Freiheit 20","13597, 14471","26,25","06:30 (07.05.)","06:00 (07.05.)","40,13","Freiheit;20;13597;Berlin;DE|Geschwister-Scholl-Straße;56;14471;Potsdam;DE","42,86 €","26,00 Km in zone_1_km (1,10 € * 11,56 km) + zone_2_km (1,10 € * 14,68 km) + 14,00 € PKW"
|
||||
"22018669","32,9","0.00","18,02","HTI Bär + Ollenroth KG","Mittenwalder Str. 8","15834, 10779","40,43","07:57 (07.05.)","07:59 (07.05.)","40,13","Mittenwalder Str.;8;15834;Rangsdorf / OT Groß Machnow;DE|Martin-Luther-Str.;48;10779;Berlin;DE","58,70 €","40,00 Km in ausserhalb_km (1,10 € * 1,55 km) + zone_2_km (1,10 € * 19,75 km) + zone_1_km (1,10 € * 19,34 km) + 14,00 € PKW"
|
||||
"22019995","32,9","0.00","18,02","Erich Weit GmbH","Colditzstr. 38-42","12099, 14480","33,69","14:16 (07.05.)","14:27 (07.05.)","40,13","Colditzstr.;38-42;12099;Berlin;DE|Am Silbergraben;1;14480;Potsdam;DE","51,07 €","33,00 Km in zone_1_km (1,10 € * 23,85 km) + zone_2_km (1,10 € * 9,85 km) + 14,00 € PKW"
|
||||
"22020401","31,3","0.00","22","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 13353","19,93","19:19 (07.05.)","19:19 (07.05.)","40,13","Hindenburgdamm;30a;12203;Berlin;DE|Augustenburger Platz;1;13353;Berlin;DE","36,09 €","20,00 Km in zone_1_km (1,10 € * 20,08 km) + 14,00 € PKW"
|
||||
"22018735","32,57","0.00","18,02","Bär & Ollenroth KG","Mittenwalder Str. 8","15834, 12524","23,12","08:17 (07.05.)","10:03 (07.05.)","39,73","Mittenwalder Str.;8;15834;Rangsdorf - Groß Machnow;DE|Bruno-Taut-Str.;6;12524;Berlin;DE","39,43 €","23,00 Km in ausserhalb_km (1,10 € * 1,55 km) + zone_2_km (1,10 € * 18,42 km) + zone_1_km (1,10 € * 3,15 km) + 14,00 € PKW"
|
||||
"22018752","32,57","0.00","18,02","BAeR & OLLENROTH KG","Mittenwalder Str. 8","15834, 12105","20,84","08:21 (07.05.)","09:01 (07.05.)","39,73","Mittenwalder Str.;8;15834;Rangsdorf / OT Gross Machnow;DE|Rathausstr.;56;12105;Berlin;DE","36,92 €","20,00 Km in ausserhalb_km (1,10 € * 1,55 km) + zone_2_km (1,10 € * 11,55 km) + zone_1_km (1,10 € * 7,74 km) + 14,00 € PKW"
|
||||
"22018919","32,46","0.00","18,01","WNW","Lindenbahn 20","14532, 10247","36,54","09:03 (07.05.)","09:14 (07.05.)","39,59","Lindenbahn;20;14532;Kleinmachnow;DE|Mainzer Str.;14;10247;Berlin;DE","50,99 €","33,00 Km in zone_2_km (1,10 € * 3,07 km) + zone_1_km (1,10 € * 30,56 km) + 14,00 € PKW"
|
||||
"22019219","31,59","0.00","17,99","Herr Bomann","Regattastr. 31","12527, 13509","35,11","10:13 (07.05.)","12:34 (07.05.)","38,52","Regattastr.;31;12527;Berlin;DE|Holzhauser Str.;76;13509;Berlin;DE","53,23 €","35,00 Km in zone_1_km (1,10 € * 35,66 km) + 14,00 € PKW"
|
||||
"22017459","31,41","0.00","17,99","Mercedes-Benz AG","Seeburger Str. 27","13581, 12555","38,32","10:54 (06.05.)","11:21 (06.05.)","38,3","Seeburger Str.;27;13581;Berlin;DE|Köpenicker Str.;325;12555;Berlin;DE","56,24 €","38,00 Km in zone_1_km (1,10 € * 38,40 km) + 14,00 € PKW"
|
||||
"22019637","31,41","0.00","17,99","Micro Precision","Köpenicker Str. 325","12555, 13581","38,48","12:19 (07.05.)","14:43 (07.05.)","38,3","Köpenicker Str.;325;12555;Berlin;DE|Seeburger Str.;27;13581;Berlin;DE","53,57 €","36,00 Km in zone_1_km (1,10 € * 35,97 km) + 14,00 € PKW"
|
||||
"22016466","31,15","0.00","18","KNAUER Wissenschaftliche Geräte","Hegauer Weg 38","14163, 12681","31,6","07:00 (06.05.)","07:14 (06.05.)","37,99","Hegauer Weg;38;14163;Berlin;DE|Coswiger Str.;16;12681;Berlin;DE","45,58 €","28,00 Km in zone_1_km (1,10 € * 28,71 km) + 14,00 € PKW"
|
||||
"22015491","30,71","0.00","18","WAREMA Renkhoff SE","Am Lilograben 3","14979, 13051","40,38","10:41 (05.05.)","10:42 (05.05.)","37,45","Am Lilograben;3;14979;Großbeeren;DE|Wustrower Str.;22-24;13051;Berlin;DE","58,41 €","40,00 Km in zone_2_km (1,10 € * 17,14 km) + zone_1_km (1,10 € * 23,23 km) + 14,00 € PKW"
|
||||
"22019041","30,71","0.00","18","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 16567","37,08","09:30 (07.05.)","09:55 (07.05.)","37,45","Gradestr.;46-50;12347;Berlin;DE|Kastanienallee;32;16567;Mühlenbeck;DE","54,94 €","37,00 Km in zone_1_km (1,10 € * 28,93 km) + zone_2_km (1,10 € * 8,29 km) + 14,00 € PKW"
|
||||
"22019935","30,71","0.00","18","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 16567","37,08","13:56 (07.05.)","13:58 (07.05.)","37,45","Gradestr.;46-50;12347;Berlin;DE|Kastanienallee;32;16567;Mühlenbeck;DE","54,94 €","37,00 Km in zone_1_km (1,10 € * 28,93 km) + zone_2_km (1,10 € * 8,29 km) + 14,00 € PKW"
|
||||
"22014669","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","05:39 (05.05.)","05:40 (05.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € PKW"
|
||||
"22016607","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 12159","4,33","20:56 (05.05.)","21:07 (05.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Rubensstr.;125;12159;Berlin;DE","19,50 € [M]","4,00 Km in zone_1_km (1,10 € * 4,33 km) + 14,00 € PKW"
|
||||
"22016613","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 12351","14,66","22:03 (05.05.)","22:08 (05.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Kormoranweg;45;12351;Berlin;DE","30,10 €","14,00 Km in zone_1_km (1,10 € * 14,64 km) + 14,00 € PKW"
|
||||
"22016620","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10967","","01:03 (06.05.)","","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Dieffenbachstr.;1;10967;Berlin;DE","27,77 €","12,00 Km in zone_1_km (1,10 € * 12,52 km) + 14,00 € PKW"
|
||||
"22017635","30,27","0.00","18,01","Liebherr-Baumaschinen","Hermann-von-Helmholtz-Str. 1","14532, 13353","","11:45 (06.05.)","","36,92","Hermann-von-Helmholtz-Str.;1;14532;Kleinmachnow;DE|Westhafenstraße;1;13353;Berlin;DE","39,23 €","22,00 Km in zone_2_km (1,10 € * 3,19 km) + zone_1_km (1,10 € * 19,75 km) + 14,00 € PKW"
|
||||
"22011027","30,27","0.00","18,01","IKDT GmbH","Moltkestr. 31","12203, 14050, 12203","28,14","15:00 (06.05.)","09:59 (06.05.)","36,92","Moltkestr.;31;12203;Berlin;DE|Spandauer Damm;130;14050;Berlin;DE|Moltkestr.;31;12203;Berlin;DE","50,92 €","27,00 Km in zone_1_km (1,10 € * 27,20 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018448","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 12101","8,04","18:53 (06.05.)","18:57 (06.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Baeumerplan;24;12101;Berlin;DE","22,84 €","8,00 Km in zone_1_km (1,10 € * 8,04 km) + 14,00 € PKW"
|
||||
"22018462","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","21:38 (06.05.)","21:39 (06.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € PKW"
|
||||
"22018463","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 12351","14,79","21:57 (06.05.)","21:58 (06.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Kormoranweg;48;12351;Berlin;DE","30,25 €","14,00 Km in zone_1_km (1,10 € * 14,77 km) + 14,00 € PKW"
|
||||
"22018464","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","22:53 (06.05.)","22:55 (06.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € PKW"
|
||||
"22018466","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","01:03 (07.05.)","01:07 (07.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € PKW"
|
||||
"22020417","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10967","12,53","21:58 (07.05.)","21:58 (07.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Dieffenbachstr.;1;10967;Berlin;DE","27,77 €","12,00 Km in zone_1_km (1,10 € * 12,52 km) + 14,00 € PKW"
|
||||
"22020421","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","23:55 (07.05.)","00:01 (08.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € PKW"
|
||||
"22016996","29,83","0.00","18","Berliner Schrauben GmbH","Industriestr. 3","15366, 12357","17,75","09:15 (06.05.)","08:59 (06.05.)","36,38","Industriestr.;3;15366;Hoppegarten - Dahlwitz-Hoppegarten;DE|Kanalstr.;13;12357;Berlin;DE","33,51 €","17,00 Km in zone_2_km (1,10 € * 3,54 km) + zone_1_km (1,10 € * 14,20 km) + 14,00 € PKW"
|
||||
"22017611","29,83","0.00","18","Starkloph","Tempelhofer Weg 101","12347, 15366","25,1","11:38 (06.05.)","12:42 (06.05.)","36,38","Tempelhofer Weg;101;12347;Berlin;DE|Handwerkerstr.;2;15366;Hoppegarten - Dahlwitz-Hoppegarten;DE","41,60 €","25,00 Km in zone_1_km (1,10 € * 23,11 km) + zone_2_km (1,10 € * 1,98 km) + 14,00 € PKW"
|
||||
"22018415","29,83","0.00","18","Elektroschaltanlagenbau Gliese","Dardanellenweg 34","12109, 16656","23,8","07:00 (07.05.)","06:32 (07.05.)","36,38","Dardanellenweg;34;12109;Berlin;DE|Karower Weg;16;16656;Ahrensfelde-Lindenberg;DE","40,62 €","24,00 Km in zone_1_km (1,10 € * 23,08 km) + zone_2_km (1,10 € * 1,12 km) + 14,00 € PKW"
|
||||
"22016581","28,17","0.00","21,99","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","18:27 (05.05.)","18:39 (05.05.)","36,11","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € PKW"
|
||||
"22018436","28,17","0.00","21,99","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10967","12,53","18:05 (06.05.)","18:07 (06.05.)","36,11","Hindenburgdamm;30a;12203;Berlin;DE|Dieffenbachstr.;1;10967;Berlin;DE","27,77 €","12,00 Km in zone_1_km (1,10 € * 12,52 km) + 14,00 € PKW"
|
||||
"22014879","29,39","0.00","18,02","KNAUER Wissenschaftliche Geräte","Hegauer Weg 38","14163, 13057","29","08:11 (05.05.)","09:31 (05.05.)","35,85","Hegauer Weg;38;14163;Berlin;DE|Zu den Krugwiesen;1;13057;Berlin;DE","45,75 €","28,00 Km in zone_1_km (1,10 € * 28,86 km) + 14,00 € PKW"
|
||||
"22015351","29,39","0.00","18,02","Ociepka Chladek GBR","Wildenbruchstr. 12","12045, 14532","20,75","10:04 (05.05.)","10:05 (05.05.)","35,85","Wildenbruchstr.;12;12045;Berlin;DE|Eichenweg;9;14532;Stahnsdorf;DE","35,44 €","19,00 Km in zone_1_km (1,10 € * 18,57 km) + zone_2_km (1,10 € * 0,92 km) + 14,00 € PKW"
|
||||
"22015434","29,39","0.00","18,02","EstriCon GmbH","Mühlenbecker Str. 8b","16348, 13503","31,18","10:26 (05.05.)","10:28 (05.05.)","35,85","Mühlenbecker Str.;8b;16348;Wandlitz / OT Schönerlinde;DE|Bekassinenweg;23;13503;Berlin;DE","48,28 €","31,00 Km in zone_2_km (1,10 € * 28,04 km) + zone_1_km (1,10 € * 3,12 km) + 14,00 € PKW"
|
||||
"22016973","29,39","0.00","18,02","Fenster Durchblick GmbH","Eichborndamm 59","13403, 14513","29,48","08:46 (06.05.)","08:51 (06.05.)","35,85","Eichborndamm;59;13403;Berlin;DE|Rheinstr.;7 d;14513;Teltow;DE","46,42 €","29,00 Km in zone_1_km (1,10 € * 21,93 km) + zone_2_km (1,10 € * 7,54 km) + 14,00 € PKW"
|
||||
"22019197","29,39","0.00","18,02","Starkloph","Tempelhofer Weg 101","12347, 15827","20,6","10:05 (07.05.)","10:06 (07.05.)","35,85","Tempelhofer Weg;101;12347;Berlin;DE|Ludwig-Erhard-Ring;13;15827;Blankenfelde-Mahlow / OT Dahlewitz;DE","36,65 €","20,00 Km in zone_1_km (1,10 € * 4,77 km) + zone_2_km (1,10 € * 15,82 km) + 14,00 € PKW"
|
||||
"22019557","29,39","0.00","18,02","KAEFER Construction GmbH","Ludwig-Erhard-Ring 10","15827, 10623","43,48","11:48 (07.05.)","12:01 (07.05.)","35,85","Ludwig-Erhard-Ring;10;15827;Blankenfelde-Mahlow / OT Dahlewitz;DE|Straße des 17. Juni;112;10623;Berlin;DE","70,78 €","51,00 Km in zone_2_km (1,10 € * 35,04 km) + zone_1_km (1,10 € * 16,58 km) + 14,00 € PKW"
|
||||
"22018795","28,52","0.00","18","Brillux GmbH & Co. KG","Bürknersfelder Str. 8b","13053, 15345","22,42","08:31 (07.05.)","08:35 (07.05.)","34,78","Bürknersfelder Str.;8b;13053;Berlin;DE|Bollensdorfer Weg;13;15345;Altlandsberg;DE","38,65 €","22,00 Km in zone_1_km (1,10 € * 6,68 km) + zone_2_km (1,10 € * 15,73 km) + 14,00 € PKW"
|
||||
"22019009","28,52","0.00","18","DITTMANN Saniertechnik GmbH","Gewerbestr. 10","16540, 13353","20,84","09:23 (07.05.)","10:37 (07.05.)","34,78","Gewerbestr.;10;16540;Hohen Neuendorf;DE|Nordufer;21;13353;Berlin;DE","36,92 €","20,00 Km in zone_2_km (1,10 € * 6,93 km) + zone_1_km (1,10 € * 13,91 km) + 14,00 € PKW"
|
||||
"22016174","28,08","0.00","17,99","Fliesenzentrum","Feldstr. 1","14979, 10317","36,43","07:00 (06.05.)","17:40 (05.05.)","34,24","Feldstr.;1;14979;Großbeeren;DE|Schreiberhauer Str.;2;10317;Berlin;DE","54,69 €","37,00 Km in zone_2_km (1,10 € * 19,62 km) + zone_1_km (1,10 € * 17,37 km) + 14,00 € PKW"
|
||||
"22019434","28,08","0.00","17,99","Farberlin","Heerstraße 330","13593, 12487","28,99","11:12 (07.05.)","11:13 (07.05.)","34,24","Heerstraße;330;13593;Berlin;DE|Sportflieger Str.;9;12487;Berlin;DE","45,03 €","28,00 Km in zone_1_km (1,10 € * 28,21 km) + 14,00 € PKW"
|
||||
"22014106","27,8","0.00","17,99","Tepper Aufzüge GmbH","Herzbergstr. 50","10365, 10629","15,39","06:45 (05.05.)","06:45 (05.05.)","33,9","Herzbergstr.;50;10365;Berlin;DE|Schlüterstr.;30;10629;Berlin;DE","31,25 €","15,00 Km in zone_1_km (1,10 € * 15,68 km) + 14,00 € PKW"
|
||||
"22015061","27,69","0.00","18","Mercedes-Benz AG","Hans-Grade-Allee 61","12529, 13088","23,89","08:57 (05.05.)","09:31 (05.05.)","33,77","Hans-Grade-Allee;61;12529;Schönefeld;DE|Gehringstr.;51;13088;Berlin;DE","40,91 €","24,00 Km in zone_2_km (1,10 € * 0,94 km) + zone_1_km (1,10 € * 23,52 km) + 14,00 € PKW"
|
||||
"22014817","27,64","0.00","18,01","JOP Handels- GmbH & Co. KG","Coswiger Str. 10","12681, 13587","27,77","07:50 (05.05.)","07:51 (05.05.)","33,71","Coswiger Str.;10;12681;Berlin;DE|Streitstr.;13;13587;Berlin;DE","44,54 €","27,00 Km in zone_1_km (1,10 € * 27,76 km) + 14,00 € PKW"
|
||||
"22015259","27,64","0.00","18,01","August Storck KG","Waldstr. 27","13403, 16321","35,89","09:41 (05.05.)","09:45 (05.05.)","33,71","Waldstr.;27;13403;Berlin;DE|Enzianstr.;6;16321;Bernau bei Berlin - Bernau;DE","53,25 €","35,00 Km in zone_1_km (1,10 € * 20,80 km) + zone_2_km (1,10 € * 14,88 km) + 14,00 € PKW"
|
||||
"22015401","27,55","0.00","18,01","FedEx Express Deutschland GmbH","Reuchlinstr. 10-11","10553, 14656","31,71","10:17 (05.05.)","10:17 (05.05.)","33,6","Reuchlinstr.;10-11;10553;Berlin;DE|Zum Wendehammer;1;14656;Brieselang - Zeestow;DE","48,87 €","31,00 Km in zone_1_km (1,10 € * 16,07 km) + zone_2_km (1,10 € * 15,63 km) + 14,00 € PKW"
|
||||
"22015520","27,21","0.00","17,99","Wilhelm Brose GmbH","Breite Str. 23","13597, 10318","29,84","10:47 (05.05.)","12:07 (05.05.)","33,18","Breite Str.;23;13597;Berlin;DE|Blockdammweg;39-59;10318;Berlin;DE","46,90 €","29,00 Km in zone_1_km (1,10 € * 29,91 km) + 14,00 € PKW"
|
||||
"22017284","27,2","0.00","18","Merkle Schweißtechnik Berlin GmbH","Alexander-Meißner-Str. 48","12526, 13507","37,19","10:07 (06.05.)","12:36 (06.05.)","33,17","Alexander-Meißner-Str.;48;12526;Berlin;DE|Egellsstr.;21;13507;Berlin;DE","55,31 €","37,00 Km in zone_1_km (1,10 € * 35,55 km) + zone_2_km (1,10 € * 2,00 km) + 14,00 € PKW"
|
||||
"22017864","27,2","0.00","18","Osthavelländische Trinkwasserversorgung und Abwass","Potsdamer Str. 32-34","14612, 16761","20,53","13:04 (06.05.)","13:05 (06.05.)","33,17","Potsdamer Str.;32-34;14612;Falkensee;DE|August-Conrad-Str.;24-36;16761;Hennigsdorf;DE","39,37 €","20,00 Km in zone_2_km (1,10 € * 20,52 km), Anfahrt in zone_2_eap (1,10 € * 2,54 km) + 14,00 € PKW"
|
||||
"22017902","27,2","0.00","18","JVA Tegel","Seidelstr. 39","13507, 12526","","13:18 (06.05.)","","33,17","Seidelstr.;39;13507;Berlin;DE|Paradiesstr.;214-218;12526;Berlin;DE","55,48 €","37,00 Km in zone_1_km (1,10 € * 35,76 km) + zone_2_km (1,10 € * 1,95 km) + 14,00 € PKW"
|
||||
"22018726","27,2","0.00","18","Ferrum Lasercut GmbH","Bruno-Buergel-Weg 142-144","12439, 13407","33,08","08:15 (07.05.)","09:38 (07.05.)","33,17","Bruno-Buergel-Weg;142-144;12439;Berlin;DE|Roedernallee;174-175;13407;Berlin;DE","39,40 €","23,00 Km in zone_1_km (1,10 € * 23,09 km) + 14,00 € PKW"
|
||||
"22015352","26,76","0.00","18,01","Robin Look GmbH","Bölschestr. 38","12587, 14052","33,09","10:04 (05.05.)","10:05 (05.05.)","32,64","Bölschestr.;38;12587;Berlin;DE|Theodor-Heuss-Platz;2;14052;Berlin;DE","47,28 €","30,00 Km in zone_1_km (1,10 € * 30,25 km) + 14,00 € PKW"
|
||||
"22017585","26,76","0.00","18,01","PRo Tief-","Birkholzer Str. 1","16356, 12524","62,64","11:40 (06.05.)","11:33 (06.05.)","32,64","Birkholzer Str.;1;16356;Ahrensfelde - Blumberg;DE|Bohnsdorfer Weg;105;12524;Berlin;DE","82,89 €","62,00 Km in zone_2_km (1,10 € * 61,38 km) + zone_1_km (1,10 € * 1,25 km) + 14,00 € PKW"
|
||||
"22018302","26,76","0.00","18,01","AWO Wohnen","Grünauer Str. 126-128","12557, 10589","31,46","08:00 (07.05.)","07:37 (07.05.)","32,64","Grünauer Str.;126-128;12557;Berlin;DE|Darwinstr.;14;10589;Berlin;DE","43,67 €","27,00 Km in zone_1_km (1,10 € * 26,97 km) + 14,00 € PKW"
|
||||
"22015797","28,07","0.00","12,01","Kühne Nagel (AG & Co.) KG - Aerospace BER","Georg-Wulf-Straße 1 .","12529, 15827","19,61","13:45 (05.05.)","13:02 (05.05.)","31,9","Georg-Wulf-Straße 1;.;12529;Schönefeld;DE|Eschenweg 11;.;15827;Blankenfelde-Mahlow;DE","42,08 €","19,00 Km in zone_2_km (1,10 € * 19,60 km), Anfahrt in zone_2_eap (1,10 € * 5,93 km) + 14,00 € PKW"
|
||||
"22018458","28,07","0.00","12,01","Berlin Hbf, Gepäckcenter","Europaplatz .","10557, 12489","21,81","15:30 (07.05.)","09:57 (07.05.)","31,9","Europaplatz;.;10557;Berlin;DE|Rudower Chaussee 14;.;12489;Berlin;DE","36,42 €","20,00 Km in zone_1_km (1,10 € * 20,38 km) + 14,00 € PKW"
|
||||
"22019648","26,04","0.00","18,01","Mercedes-Benz AG","Seeburger Str. 27","13581, 12681","30,4","12:22 (07.05.)","12:42 (07.05.)","31,76","Seeburger Str.;27;13581;Berlin;DE|Nordring;6;12681;Berlin;DE","47,44 €","30,00 Km in zone_1_km (1,10 € * 30,40 km) + 14,00 € PKW"
|
||||
"22013498","25,88","0.00","18,02","Instruclean","Nunsdorfer Ring 23","12277, 12557","16,42","06:00 (05.05.)","06:38 (05.05.)","31,57","Nunsdorfer Ring;23;12277;Berlin;DE|Gruenauer Str.;5;12557;Berlin;DE","32,17 €","16,00 Km in zone_1_km (1,10 € * 12,24 km) + zone_2_km (1,10 € * 4,28 km) + 14,00 € PKW"
|
||||
"22015286","25,88","0.00","18,02","ContiTech Transportbandsysteme GmbH","Digitalstr. 4-6","15366, 12681","10,33","09:49 (05.05.)","09:50 (05.05.)","31,57","Digitalstr.;4-6;15366;Dahlwitz-Hoppegarten;DE|Frank-Schweitzer-Str.;3;12681;Berlin;DE","25,36 €","10,00 Km in zone_2_km (1,10 € * 1,63 km) + zone_1_km (1,10 € * 8,70 km) + 14,00 € PKW"
|
||||
"22015331","25,88","0.00","18,02","Liebherr-Baumaschinen","Hermann-von-Helmholtz-Str. 1","14532, 14195","12,92","09:59 (05.05.)","10:05 (05.05.)","31,57","Hermann-von-Helmholtz-Str.;1;14532;Kleinmachnow;DE|Arnimallee;5;14195;Berlin;DE","27,90 €","12,00 Km in zone_2_km (1,10 € * 3,19 km) + zone_1_km (1,10 € * 9,45 km) + 14,00 € PKW"
|
||||
"22016245","25,88","0.00","18,02","Carl Zauber Tiefbau GmbH","Kirchstr. 7","12529, 10179","22,78","14:50 (05.05.)","14:59 (05.05.)","31,57","Kirchstr.;7;12529;Schönefeld;DE|Neue Jüdenstr.;1;10179;Berlin;DE","38,48 €","22,00 Km in zone_2_km (1,10 € * 2,52 km) + zone_1_km (1,10 € * 19,73 km) + 14,00 € PKW"
|
||||
"22014771","25,88","0.00","18,02","Instruclean","Nunsdorfer Ring 23","12277, 12557","16,42","06:00 (06.05.)","11:30 (05.05.)","31,57","Nunsdorfer Ring;23;12277;Berlin;DE|Gruenauer Str.;5;12557;Berlin;DE","32,17 €","16,00 Km in zone_1_km (1,10 € * 12,24 km) + zone_2_km (1,10 € * 4,28 km) + 14,00 € PKW"
|
||||
"22016801","25,88","0.00","18,02","A. Habedank Handels-GmbH","An den Ritterhufen 4","14513, 10405","25,82","07:55 (06.05.)","08:40 (06.05.)","31,57","An den Ritterhufen;4;14513;Teltow;DE|Belforter Str.;8;10405;Berlin;DE","40,99 €","24,00 Km in zone_2_km (1,10 € * 4,32 km) + zone_1_km (1,10 € * 20,22 km) + 14,00 € PKW"
|
||||
"22017645","25,88","0.00","18,02","PRO Tief- und Wasserbau GmbH & Co. KG","Birkholzer Str. 1","16356, 10557","29,84","11:55 (06.05.)","11:55 (06.05.)","31,57","Birkholzer Str.;1;16356;Ahrensfelde - Blumberg;DE|Europaplatz;0;10557;Berlin;DE","46,89 €","29,00 Km in zone_2_km (1,10 € * 9,21 km) + zone_1_km (1,10 € * 20,69 km) + 14,00 € PKW"
|
||||
"22017626","25,88","0.00","18,02","Lusche Seil- und Hebetechnik GmbH","Bucher Weg 2b","16356, 10785","17,52","13:18 (06.05.)","13:38 (06.05.)","31,57","Bucher Weg;2b;16356;Ahrensfelde / OT Lindenberg;DE|Potsdamer Str.;50;10785;Berlin;DE","37,47 €","21,00 Km in zone_2_km (1,10 € * 1,81 km) + zone_1_km (1,10 € * 19,53 km) + 14,00 € PKW"
|
||||
"22018018","25,88","0.00","18,02","OD-OS GmbH","Warthestr. 21","14513, 10965","18,53","13:56 (06.05.)","14:19 (06.05.)","31,57","Warthestr.;21;14513;Teltow;DE|Hagelberger Str.;43;10965;Berlin;DE","34,36 €","18,00 Km in zone_2_km (1,10 € * 2,73 km) + zone_1_km (1,10 € * 15,78 km) + 14,00 € PKW"
|
||||
"22018031","25,88","0.00","18,02","Hauswartungen Bendyk","Gutshof 13-14","16356, 14193","61,83","14:15 (06.05.)","14:03 (06.05.)","31,57","Gutshof;13-14;16356;Ahrensfelde / OT Blumberg;DE|Cunostr.;64;14193;Berlin;DE","81,97 €","61,00 Km in zone_2_km (1,10 € * 37,76 km) + zone_1_km (1,10 € * 24,03 km) + 14,00 € PKW"
|
||||
"22016769","25,88","0.00","18,02","Instruclean","Nunsdorfer Ring 23","12277, 12557","16,42","06:00 (07.05.)","16:27 (06.05.)","31,57","Nunsdorfer Ring;23;12277;Berlin;DE|Gruenauer Str.;5;12557;Berlin;DE","32,17 €","16,00 Km in zone_1_km (1,10 € * 12,24 km) + zone_2_km (1,10 € * 4,28 km) + 14,00 € PKW"
|
||||
"22017724","25,88","0.00","18,02","Heckmann GmbH & Co. KG","Digitalstr. 15","15366, 12526","","06:30 (07.05.)","","31,57","Digitalstr.;15;15366;Dahlwitz-Hoppegarten;DE|Alexander-Meißner-Str.;34;12526;Berlin;DE","36,97 €","20,00 Km in zone_2_km (1,10 € * 3,87 km) + zone_1_km (1,10 € * 17,01 km) + 14,00 € PKW"
|
||||
"22017962","25,88","0.00","18,02","Raumprojekt GmbH","Gewerbestr. 1","15366, 10365","13,16","08:00 (07.05.)","07:15 (07.05.)","31,57","Gewerbestr.;1;15366;Dahlwitz-Hoppegarten;DE|Herzbergstr.;127;10365;Berlin;DE","28,47 €","13,00 Km in zone_2_km (1,10 € * 1,88 km) + zone_1_km (1,10 € * 11,27 km) + 14,00 € PKW"
|
||||
"22018941","25,88","0.00","18,02","LOXAM GmbH","Teilestr. 11-13","12099, 14532","16,56","09:09 (07.05.)","10:50 (07.05.)","31,57","Teilestr.;11-13;12099;Berlin;DE|Im Hagen;22;14532;Kleinmachnow;DE","32,22 €","16,00 Km in zone_1_km (1,10 € * 15,11 km) + zone_2_km (1,10 € * 1,45 km) + 14,00 € PKW"
|
||||
"22019196","25,88","0.00","18,02","HTI Bär & Ollenroth KG","Stahnsdorfer Str. 107","14513 , 10779","17,6","10:05 (07.05.)","10:19 (07.05.)","31,57","Stahnsdorfer Str.;107;14513;Teltow;DE|Barbarossastr.;45;10779;Berlin;DE","33,35 €","17,00 Km in zone_2_km (1,10 € * 4,55 km) + zone_1_km (1,10 € * 13,04 km) + 14,00 € PKW"
|
||||
"22019554","25,88","0.00","18,02","Hörmann KG Verkaufsges.","Industriestr. 12-14","15366, 10117","18,72","11:48 (07.05.)","12:14 (07.05.)","31,57","Industriestr.;12-14;15366;Dahlwitz-Hoppegarten;DE|Französische Str.;38;10117;Berlin;DE","34,61 €","18,00 Km in zone_2_km (1,10 € * 2,15 km) + zone_1_km (1,10 € * 16,59 km) + 14,00 € PKW"
|
||||
"22020108","25,88","0.00","18,02","Ups Kundencenter","Industriestr. 1","15366, 12487","","14:49 (07.05.)","","31,57","Industriestr.;1;15366;Hoppegarten - Dahlwitz-Hoppegarten;DE|Sportfliegerstr.;4;12487;Berlin;DE","32,26 €","16,00 Km in zone_2_km (1,10 € * 3,82 km) + zone_1_km (1,10 € * 12,78 km) + 14,00 € PKW"
|
||||
"22020116","24,62","0.00","22,01","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 12621","32,73","14:51 (07.05.)","15:31 (07.05.)","31,57","Hindenburgdamm;30a;12203;Berlin;DE|Myslowitzer Str.;45;12621;Berlin;DE","42,74 €","26,00 Km in zone_1_km (1,10 € * 26,13 km) + 14,00 € PKW"
|
||||
"22016585","25,67","0.00","17,99","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 12101","8,57","18:41 (05.05.)","18:41 (05.05.)","31,3","Hindenburgdamm;30a;12203;Berlin;DE|Wüsthoffstr.;15;12101;Berlin;DE","23,43 €","8,00 Km in zone_1_km (1,10 € * 8,57 km) + 14,00 € PKW"
|
||||
"22018454","25,67","0.00","17,99","SYNLAB Logistics GmbH","Lützowstr. 24-26","10785, 10365","10,5","19:30 (06.05.)","19:36 (06.05.)","31,3","Lützowstr.;24-26;10785;Berlin;DE|Fanninger Str.;32;10365;Berlin;DE","25,48 €","10,00 Km in zone_1_km (1,10 € * 10,44 km) + 14,00 € PKW"
|
||||
"22020411","25,67","0.00","17,99","St. Joseph-Krankenhaus","Wüsthoffstr. 15","12101, 12203","9,37","20:52 (07.05.)","20:55 (07.05.)","31,3","Wüsthoffstr.;15;12101;Berlin;DE|Hindenburgdamm;30a;12203;Berlin;DE","24,70 €","9,00 Km in zone_1_km (1,10 € * 9,73 km) + 14,00 € PKW"
|
||||
"22016389","23,5","21.96","24,27","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 13509","23,27","15:39 (05.05.)","15:56 (05.05.)","31,03","Hindenburgdamm;30a;12203;Berlin;DE|Am Nordgraben;2;13509;Berlin;DE","39,76 €","23,00 Km in zone_1_km (1,10 € * 23,42 km) + 14,00 € PKW"
|
||||
"22015418","25,42","0.00","18","Hilti Deutschland GmbH","Holzhauser Str. 152a","13509, 12487","32,02","10:22 (05.05.)","12:04 (05.05.)","31","Holzhauser Str.;152a;13509;Berlin;DE|Groß-Berliner-Damm;92-94;12487;Berlin;DE","48,35 €","31,00 Km in zone_1_km (1,10 € * 31,23 km) + 14,00 € PKW"
|
||||
"22014643","27,22","0.00","11,97","CO.DON GmbH - 3.OG Empfang","Warthestr. 21 .","14513, 10557","20,38","15:00 (05.05.)","13:05 (05.05.)","30,92","Warthestr. 21;.;14513;Teltow;DE|Europaplatz;.;10557;Berlin;DE","36,41 €","20,00 Km in zone_2_km (1,10 € * 2,73 km) + zone_1_km (1,10 € * 17,64 km) + 14,00 € PKW"
|
||||
"22016544","27,22","0.00","11,97","CO.DON GmbH - 3.OG Empfang","Warthestr. 21 .","14513, 10557","20,38","15:00 (06.05.)","13:00 (06.05.)","30,92","Warthestr. 21;.;14513;Teltow;DE|Europaplatz;.;10557;Berlin;DE","36,41 €","20,00 Km in zone_2_km (1,10 € * 2,73 km) + zone_1_km (1,10 € * 17,64 km) + 14,00 € PKW"
|
||||
"22015765","25,01","0.00","18","Baustelle","Rütlistr. 7","12045, 13509","25,45","11:55 (05.05.)","11:55 (05.05.)","30,5","Rütlistr.;7;12045;Berlin;DE|Holzhauser Str.;139;13509;Berlin;DE","35,96 €","20,00 Km in zone_1_km (1,10 € * 19,96 km) + 14,00 € PKW"
|
||||
"22016329","25,01","0.00","18","Humboldt-Klinikum","Am Nordgraben 2","13509, 12351","28,28","15:15 (05.05.)","15:31 (05.05.)","30,5","Am Nordgraben;2;13509;Berlin;DE|Kormoranweg;45;12351;Berlin;DE","45,08 €","28,00 Km in zone_1_km (1,10 € * 28,25 km) + 14,00 € PKW"
|
||||
"22016558","25,01","0.00","18","Krankenhaus Neukoelln","Kormoranweg 45","12351, 13509","28,02","17:15 (05.05.)","17:40 (05.05.)","30,5","Kormoranweg;45;12351;Berlin;DE|Am Nordgraben;2;13509;Berlin;DE","45,05 €","28,00 Km in zone_1_km (1,10 € * 28,23 km) + 14,00 € PKW"
|
||||
"22017981","25,01","0.00","18","Humboldt-Klinikum","Am Nordgraben 2","13509, 12351","28,28","13:43 (06.05.)","14:59 (06.05.)","30,5","Am Nordgraben;2;13509;Berlin;DE|Kormoranweg;45;12351;Berlin;DE","45,08 €","28,00 Km in zone_1_km (1,10 € * 28,25 km) + 14,00 € PKW"
|
||||
"22018241","25,01","0.00","18","Caseking GmbH","Gaußstr. 1","10589, 12627","24,62","15:16 (06.05.)","15:21 (06.05.)","30,5","Gaußstr.;1;10589;Berlin;DE|Louis-Lewin-Str.;20;12627;Berlin;DE","41,07 €","24,00 Km in zone_1_km (1,10 € * 24,61 km) + 14,00 € PKW"
|
||||
"22018406","25,01","0.00","18","Fliesenparadies Glaeske & Sefzig","Alt-Kaulsdorf 26","12621, 10719","19,83","09:00 (07.05.)","08:47 (07.05.)","30,5","Alt-Kaulsdorf;26;12621;Berlin;DE|Fasanenstraße;61;10719;Berlin;DE","36,65 €","20,00 Km in zone_1_km (1,10 € * 20,59 km) + 14,00 € PKW"
|
||||
"22018693","25,01","0.00","18","Steuerbuero Feger","Silvesterweg 27","13467, 12357","36,05","09:15 (07.05.)","08:45 (07.05.)","30,5","Silvesterweg;27;13467;Berlin;DE|Kanalstr.;73-79;12357;Berlin;DE","52,42 €","34,00 Km in zone_1_km (1,10 € * 34,93 km) + 14,00 € PKW"
|
||||
"22018972","25,01","0.00","18","Krankenhaus Neukoelln","Kormoranweg 45","12351, 13509","28,02","09:17 (07.05.)","09:22 (07.05.)","30,5","Kormoranweg;45;12351;Berlin;DE|Am Nordgraben;2;13509;Berlin;DE","45,05 €","28,00 Km in zone_1_km (1,10 € * 28,23 km) + 14,00 € PKW"
|
||||
"22016051","25","0.00","17,98","STADTBOTE GmbH NL Berlin","Colditzstr. 33","12099, 12099","","13:42 (05.05.)","","30,48","Colditzstr.;33;12099;Berlin;DE|Colditzstr.;33;12099;Berlin;DE","19,50 € [M]","1,00 Km + 14,00 € PKW"
|
||||
"22013608","24,57","0.00","17,99","Fuerst Donnersmarck-Stiftung","Dalandweg 19","12167, 12169, 12167","4,54","08:45 (05.05.)","08:15 (05.05.)","29,96","Dalandweg;19;12167;Berlin;DE|Bergstr.;1;12169;Berlin;DE|Dalandweg;19;12167;Berlin;DE","26,32 €","4,00 Km in zone_1_km (1,10 € * 4,84 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015033","24,57","0.00","17,99","Fuerst Donnersmarck-Stiftung","Dalandweg 19","12167, 12169, 12167","4,54","08:45 (06.05.)","08:15 (06.05.)","29,96","Dalandweg;19;12167;Berlin;DE|Bergstr.;1;12169;Berlin;DE|Dalandweg;19;12167;Berlin;DE","26,32 €","4,00 Km in zone_1_km (1,10 € * 4,84 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22017008","24,57","0.00","17,99","Fuerst Donnersmarck-Stiftung","Dalandweg 19","12167, 12169, 12167","4,54","08:45 (07.05.)","08:15 (07.05.)","29,96","Dalandweg;19;12167;Berlin;DE|Bergstr.;1;12169;Berlin;DE|Dalandweg;19;12167;Berlin;DE","26,32 €","4,00 Km in zone_1_km (1,10 € * 4,84 km) + 14,00 € PKW + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018033","24,51","0.00","18","KERAMUNDO - Welt der Fliesen","Alt-Mahlsdorf 81","12623, 10623","22,3","10:00 (07.05.)","09:30 (07.05.)","29,89","Alt-Mahlsdorf;81;12623;Berlin;DE|Fasanenstr.;77;10623;Berlin;DE","38,49 €","22,00 Km in zone_1_km (1,10 € * 22,26 km) + 14,00 € PKW"
|
||||
"22016656","24,38","0.00","18,02","Mercedes-Benz AG - NL Berlin-Schöne","Hans-Grade-Allee 61","12529, 12277","17,03","06:54 (06.05.)","07:46 (06.05.)","29,74","Hans-Grade-Allee;61;12529;Schönefeld;DE|Daimlerstr.;165;12277;Berlin;DE","32,73 €","17,00 Km in zone_2_km (1,10 € * 10,27 km) + zone_1_km (1,10 € * 6,76 km) + 14,00 € PKW"
|
||||
"22020391","26,07","0.00","12,01","Irmtraud Korittke","Dirschauer Straße 11 .","10245, 10557","9,1","20:00 (07.05.)","18:29 (07.05.)","29,63","Dirschauer Straße 11;.;10245;Berlin;DE|Europaplatz;.;10557;Berlin;DE","24,01 €","9,00 Km in zone_1_km (1,10 € * 9,10 km) + 14,00 € PKW"
|
||||
"22019088","23,69","0.00","18","KiJu Kinder- und Jugend-Therapie","Driesener Str. 23","10439, 14195","18,06","09:41 (07.05.)","09:42 (07.05.)","28,89","Driesener Str.;23;10439;Berlin;DE|Podbielskiallee;25;14195;Berlin;DE","33,87 €","18,00 Km in zone_1_km (1,10 € * 18,06 km) + 14,00 € PKW"
|
||||
"22015307","23,25","0.00","18,02","Mike u. Franks US-Auto-Equipment GmbH","Hattenheimer Str. 8-10","12099, 12623","24,52","09:54 (05.05.)","10:41 (05.05.)","28,36","Hattenheimer Str.;8-10;12099;Berlin;DE|Hönower Str.;69;12623;Berlin;DE","36,45 €","20,00 Km in zone_1_km (1,10 € * 20,41 km) + 14,00 € PKW"
|
||||
"22015868","23,25","0.00","18,02","AAD Auto Anmeldedienst GmbH","Rhinstr. 48a","12681, 10587","15,82","14:00 (05.05.)","13:37 (05.05.)","28,36","Rhinstr.;48a;12681;Berlin;DE|Franklinstr.;5;10587;Berlin;DE","31,39 €","15,00 Km in zone_1_km (1,10 € * 15,81 km) + 14,00 € PKW"
|
||||
"22016025","23,25","0.00","18,02","OTIS GmbH & Co. oHG","Warener Str. 5","12683, 13507","22,89","07:00 (06.05.)","06:30 (06.05.)","28,36","Warener Str.;5;12683;Berlin;DE|Otisstr.;33;13507;Berlin;DE","41,01 €","24,00 Km in zone_1_km (1,10 € * 24,55 km) + 14,00 € PKW"
|
||||
"22016321","23,25","0.00","18,02","MDI Limbach","Aroser Allee 82","13407, 12277","24,23","08:00 (06.05.)","07:32 (06.05.)","28,36","Aroser Allee;82;13407;Berlin;DE|Marienfelder Allee;135;12277;Berlin;DE","40,64 €","24,00 Km in zone_1_km (1,10 € * 24,22 km) + 14,00 € PKW"
|
||||
"22016540","23,25","0.00","18,02","Der Bäcker Feihl","Wolfener Str. 29","12681, 13439","19,75","08:15 (06.05.)","09:54 (06.05.)","28,36","Wolfener Str.;29;12681;Berlin;DE|Quickborner Str.;89;13439;Berlin;DE","35,71 €","19,00 Km in zone_1_km (1,10 € * 19,74 km) + 14,00 € PKW"
|
||||
"22016569","23,25","0.00","18,02","AAD Auto Anmeldedienst GmbH","Rhinstr. 48a","12681, 13403","17,8","08:30 (06.05.)","09:03 (06.05.)","28,36","Rhinstr.;48a;12681;Berlin;DE|Ollenhauerstr.;9-13;13403;Berlin;DE","33,57 €","17,00 Km in zone_1_km (1,10 € * 17,79 km) + 14,00 € PKW"
|
||||
"22017627","23,25","0.00","18,02","WWL Spedition GmbH","Quickborner Str. 78-80","13439, 12277","","11:43 (06.05.)","","28,36","Quickborner Str.;78-80;13439;Berlin;DE|Benzstr.;46-50;12277;Berlin;DE","49,78 €","32,00 Km in zone_1_km (1,10 € * 32,53 km) + 14,00 € PKW"
|
||||
"22018545","23,25","0.00","18,02","Dussmann Kälte- und Klimatechnik","Leunaer Str. 7","12681, 14059","24,86","07:12 (07.05.)","07:14 (07.05.)","28,36","Leunaer Str.;7;12681;Berlin;DE|Wundtstr.;26;14059;Berlin;DE","41,29 €","24,00 Km in zone_1_km (1,10 € * 24,81 km) + 14,00 € PKW"
|
||||
"22018306","23,25","0.00","18,02","Zinkpower GmbH","Industriestrasse 27-29","12099, 13407","24,43","08:00 (07.05.)","07:37 (07.05.)","28,36","Industriestrasse;27-29;12099;Berlin;DE|Roedernallee;8;13407;Berlin;DE","41,04 €","24,00 Km in zone_1_km (1,10 € * 24,58 km) + 14,00 € PKW"
|
||||
"22019154","23,25","0.00","18,02","Der Bäcker Feihl","Wolfener Str. 29","12681, 13509","54,84","09:56 (07.05.)","12:40 (07.05.)","28,36","Wolfener Str.;29;12681;Berlin;DE|Gorkistr.;64;13509;Berlin;DE","74,31 €","54,00 Km in zone_1_km (1,10 € * 13,54 km) + zone_2_km (1,10 € * 41,29 km) + 14,00 € PKW"
|
||||
"22019611","23,25","0.00","18,02","Steuerbüro Anja Knüppel","Schillerstr. 12","10625, 12681","17,4","12:08 (07.05.)","12:34 (07.05.)","28,36","Schillerstr.;12;10625;Berlin;DE|Bitterfelder Str.;23;12681;Berlin;DE","32,99 €","17,00 Km in zone_1_km (1,10 € * 17,26 km) + 14,00 € PKW"
|
||||
"22020065","23,25","0.00","18,02","Capital Baustoffe GmbH","Bergholzstr. 4","12099, 12619","20,28","14:35 (07.05.)","15:25 (07.05.)","28,36","Bergholzstr.;4;12099;Berlin;DE|Cecilienstr.;.;12619;Berlin;DE","36,31 €","20,00 Km in zone_1_km (1,10 € * 20,28 km) + 14,00 € PKW"
|
||||
"22019639","23,02","0.00","18,02","Roske Marzahn","Hellersdorfer Weg 34-36","12689, 13439","18,52","12:19 (07.05.)","12:40 (07.05.)","28,08","Hellersdorfer Weg;34-36;12689;Berlin;DE|Zerpenschleuser Ring;1;13439;Berlin;DE","33,64 €","17,00 Km in zone_1_km (1,10 € * 17,85 km) + 14,00 € PKW"
|
||||
"22016110","22,37","0.00","18,03","Praxis Kleintierspezialisten","Wittestr. 30","13509, 14163","23,77","16:00 (05.05.)","15:49 (05.05.)","27,29","Wittestr.;30;13509;Berlin;DE|Robert-von-Ostertag-Str.;15;14163;Berlin;DE","40,14 €","23,00 Km in zone_1_km (1,10 € * 23,76 km) + 14,00 € PKW"
|
||||
"22016141","22,37","0.00","18,03","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 13585","0","07:00 (06.05.)","08:12 (06.05.)","27,29","Gradestr.;46-50;12347;Berlin;DE|Eiswerder;12;13585;Berlin;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22017659","22,37","0.00","18,03","Merkur Schoppe - Kundendienst","Holzhauser Str. 139","13509, 14195","16,88","11:52 (06.05.)","11:53 (06.05.)","27,29","Holzhauser Str.;139;13509;Berlin;DE|Thielallee;38;14195;Berlin;DE","32,56 €","16,00 Km in zone_1_km (1,10 € * 16,87 km) + 14,00 € PKW"
|
||||
"22017782","22,37","0.00","18,03","SOS Gebäudeservice GmbH","Berliner Str. 14","13127, 12163","27,14","12:37 (06.05.)","12:40 (06.05.)","27,29","Berliner Str.;14;13127;Berlin;DE|Lepsiusstr.;83;12163;Berlin;DE","43,85 €","27,00 Km in zone_1_km (1,10 € * 27,14 km) + 14,00 € PKW"
|
||||
"22018661","22,37","0.00","18,03","Janke Galvanik","Hohentwielsteig 3","14163, 13403","20,18","07:54 (07.05.)","07:55 (07.05.)","27,29","Hohentwielsteig;3;14163;Berlin;DE|Kögelstr.;7;13403;Berlin;DE","36,55 €","20,00 Km in zone_1_km (1,10 € * 20,50 km) + 14,00 € PKW"
|
||||
"22018046","22,37","0.00","18,03","Uferpalais - Seniorenresidenz","Brauereihof 19","13585, 13086","20,72","09:00 (07.05.)","08:30 (07.05.)","27,29","Brauereihof;19;13585;Berlin;DE|Rennbahnstr.;104;13086;Berlin;DE","36,23 €","20,00 Km in zone_1_km (1,10 € * 20,21 km) + 14,00 € PKW"
|
||||
"22014778","21,5","0.00","18","Bst /","Rothenbücherweg 45","14089, 12157","17,44","07:36 (05.05.)","09:58 (05.05.)","26,22","Rothenbücherweg;45;14089;Berlin;DE|Menzelstr.;1;12157;Berlin;DE","33,18 €","17,00 Km in zone_1_km (1,10 € * 17,44 km) + 14,00 € PKW"
|
||||
"22017315","21,5","0.00","18","Erich Weit GmbH","Colditzstr. 38-42","12099, 13189","14,76","10:16 (06.05.)","14:06 (06.05.)","26,22","Colditzstr.;38-42;12099;Berlin;DE|Selma-Lagerlöf-Straße;2;13189;Berlin;DE","30,64 €","15,00 Km in zone_1_km (1,10 € * 15,13 km) + 14,00 € PKW"
|
||||
"22017643","21,5","0.00","18","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 13156","","11:48 (06.05.)","","26,22","Gradestr.;46-50;12347;Berlin;DE|Treskowstr.;15;13156;Berlin;DE","36,14 €","20,00 Km in zone_1_km (1,10 € * 20,13 km) + 14,00 € PKW"
|
||||
"22017957","21,5","0.00","18","Friedrich Rohwedder Baumaschinen","Sachsenhauser Str. 12","12099, 13156","","13:36 (06.05.)","","26,22","Sachsenhauser Str.;12;12099;Berlin;DE|Buchholzer Str.;32;13156;Berlin;DE","33,97 €","18,00 Km in zone_1_km (1,10 € * 18,15 km) + 14,00 € PKW"
|
||||
"22015035","21,32","0.00","18","Hilti Deutschland GmbH","Alt-Mahlsdorf 26","12623, 12489","15,38","08:52 (05.05.)","08:53 (05.05.)","26","Alt-Mahlsdorf;26;12623;Berlin;DE|Groß-Berliner-Damm;92;12489;Berlin;DE","30,78 €","15,00 Km in zone_1_km (1,10 € * 15,25 km) + 14,00 € PKW"
|
||||
"22017678","21,32","0.00","18","Hilti Deutschland GmbH","Alt-Mahlsdorf 26","12623, 12487","15,38","12:30 (06.05.)","14:43 (06.05.)","26","Alt-Mahlsdorf;26;12623;Berlin;DE|Groß-Berliner-Damm;92;12487;Berlin;DE","30,78 €","15,00 Km in zone_1_km (1,10 € * 15,25 km) + 14,00 € PKW"
|
||||
"22017110","21,21","0.00","18,01","Deutsche See GmbH","Beusselstr. 44n-q","10553, 13593","15,98","09:17 (06.05.)","10:03 (06.05.)","25,87","Beusselstr.;44n-q;10553;Berlin;DE|Pillnitzer Weg;6;13593;Berlin;DE","31,57 €","16,00 Km in zone_1_km (1,10 € * 15,97 km) + 14,00 € PKW"
|
||||
"22015237","21,06","0.00","17,99","Firma Aalberts Surface Technologies GmbH","Coswiger Str. 16","12681, 12277","24,51","09:36 (05.05.)","09:38 (05.05.)","25,68","Coswiger Str.;16;12681;Berlin;DE|Sperenberger Str.;5a;12277;Berlin;DE","41,10 €","24,00 Km in zone_1_km (1,10 € * 24,64 km) + 14,00 € PKW"
|
||||
"22015229","21,06","0.00","17,99","KÖNIGSDRUCK","Alt-Reinickendorf 28","13407, 10367","13,63","09:40 (05.05.)","09:37 (05.05.)","25,68","Alt-Reinickendorf;28;13407;Berlin;DE|Parkaue;29;10367;Berlin;DE","28,07 €","12,00 Km in zone_1_km (1,10 € * 12,79 km) + 14,00 € PKW"
|
||||
"22015355","21,06","0.00","17,99","SCANECA GmbH","Richard-Wagner-Str. 48-50","10585, 12489","23,48","10:05 (05.05.)","12:05 (05.05.)","25,68","Richard-Wagner-Str.;48-50;10585;Berlin;DE|Rudower Chaussee;25;12489;Berlin;DE","38,60 €","22,00 Km in zone_1_km (1,10 € * 22,36 km) + 14,00 € PKW"
|
||||
"22015486","21,06","0.00","17,99","Ferrum Lasercut GmbH","Bruno-Bürgel-Weg 142-144","12439, 10585","28,83","10:40 (05.05.)","12:37 (05.05.)","25,68","Bruno-Bürgel-Weg;142-144;12439;Berlin;DE|Nithackstr.;6;10585;Berlin;DE","41,94 €","25,00 Km in zone_1_km (1,10 € * 25,40 km) + 14,00 € PKW"
|
||||
"22015771","21,06","0.00","17,99","Heinbokel + Mueller GbR","Gehringstr. 53","13088, 12277","20,72","11:57 (05.05.)","11:57 (05.05.)","25,68","Gehringstr.;53;13088;Berlin;DE|Nahmitzer Damm;30;12277;Berlin;DE","37,43 €","21,00 Km in zone_1_km (1,10 € * 21,30 km) + 14,00 € PKW"
|
||||
"22016413","21,06","0.00","17,99","Auto Valentino","Darßer Bogen 7","13088, 12099","16,22","15:47 (05.05.)","15:48 (05.05.)","25,68","Darßer Bogen;7;13088;Berlin;DE|Ordensmeisterstr.;40;12099;Berlin;DE","32,49 €","16,00 Km in zone_1_km (1,10 € * 16,81 km) + 14,00 € PKW"
|
||||
"22016171","21,06","0.00","17,99","Fliesenparadies Glaeske & Sefzig","Alt-Kaulsdorf 26","12621, 12057","13,66","07:00 (06.05.)","07:13 (06.05.)","25,68","Alt-Kaulsdorf;26;12621;Berlin;DE|Sonnenallee;225;12057;Berlin;DE","29,03 €","13,00 Km in zone_1_km (1,10 € * 13,66 km) + 14,00 € PKW"
|
||||
"22016733","21,06","0.00","17,99","Erich Weit GmbH","Colditzstr. 38-42","12099, 13589","26,15","07:31 (06.05.)","09:58 (06.05.)","25,68","Colditzstr.;38-42;12099;Berlin;DE|Freudstraße;8-10;13589;Berlin;DE","42,51 €","25,00 Km in zone_1_km (1,10 € * 25,92 km) + 14,00 € PKW"
|
||||
"22016993","21,06","0.00","17,99","WoBeGe mbH","Winckelmannstr. 3-5","12487, 10629","18,53","08:49 (06.05.)","11:06 (06.05.)","25,68","Winckelmannstr.;3-5;12487;Berlin;DE|Leibnizstr.;53;10629;Berlin;DE","34,11 €","18,00 Km in zone_1_km (1,10 € * 18,28 km) + 14,00 € PKW"
|
||||
"22017360","21,06","0.00","17,99","Typographus GmbH","Nunsdorfer Ring 2-10","12277, 13593","24,54","10:27 (06.05.)","11:06 (06.05.)","25,68","Nunsdorfer Ring;2-10;12277;Berlin;DE|Heerstr.;330;13593;Berlin;DE","43,72 €","27,00 Km in zone_1_km (1,10 € * 27,02 km) + 14,00 € PKW"
|
||||
"22017681","21,06","0.00","17,99","Robert Karst GmbH & Co. KG","Motzener Str. 22","12277, 12681","30,81","13:00 (06.05.)","14:58 (06.05.)","25,68","Motzener Str.;22;12277;Berlin;DE|Boxberger Str.;1;12681;Berlin;DE","44,94 €","28,00 Km in zone_1_km (1,10 € * 28,13 km) + 14,00 € PKW"
|
||||
"22017991","21,06","0.00","17,99","MAN Truck & Bus Deutschland GmbH","Nonnendammallee 1","13599, 10365","20,75","13:46 (06.05.)","14:01 (06.05.)","25,68","Nonnendammallee;1;13599;Berlin;DE|Siegfriedstr.;49-51;10365;Berlin;DE","36,81 €","20,00 Km in zone_1_km (1,10 € * 20,74 km) + 14,00 € PKW"
|
||||
"22018567","21,06","0.00","17,99","Merkur Schoppe - Kundendienst","Holzhauser Str. 139","13509, 10365","18,11","07:19 (07.05.)","07:20 (07.05.)","25,68","Holzhauser Str.;139;13509;Berlin;DE|Coppistr.;10;10365;Berlin;DE","33,92 €","18,00 Km in zone_1_km (1,10 € * 18,11 km) + 14,00 € PKW"
|
||||
"22018597","21,06","0.00","17,99","Erich Weit GmbH","Colditzstr. 38-42","12099, 13589","25,63","07:32 (07.05.)","10:10 (07.05.)","25,68","Colditzstr.;38-42;12099;Berlin;DE|Paul-Gerhardt-Ring;16-20;13589;Berlin;DE","41,25 €","24,00 Km in zone_1_km (1,10 € * 24,77 km) + 14,00 € PKW"
|
||||
"22018764","21,06","0.00","17,99","Aalberts Surface Technologie GmbH","Coswiger Str. 16","12681, 12277","24,51","08:24 (07.05.)","11:13 (07.05.)","25,68","Coswiger Str.;16;12681;Berlin;DE|Sperenberger Str.;5a;12277;Berlin;DE","41,10 €","24,00 Km in zone_1_km (1,10 € * 24,64 km) + 14,00 € PKW"
|
||||
"22018179","21,06","0.00","17,99","MVZ Dres. Weinrich GmbH","Elcknerplatz 18","12555, 10829","0","09:00 (07.05.)","11:17 (07.05.)","25,68","Elcknerplatz;18;12555;Berlin;DE|Geneststr.;5;10829;Berlin;DE","ERROR","Adresse in 1. Station nicht ok"
|
||||
"22019035","21,06","0.00","17,99","Märkische Schraubenfabrik","Nunsdorfer Ring 14","12277, 12681","27,96","09:28 (07.05.)","12:08 (07.05.)","25,68","Nunsdorfer Ring;14;12277;Berlin;DE|Boxberger Straße;4;12681;Berlin;DE","44,18 €","27,00 Km in zone_1_km (1,10 € * 27,44 km) + 14,00 € PKW"
|
||||
"22019271","21,06","0.00","17,99","Wilhelm Brose GmbH","Breite Str. 23","13597, 10318","29,84","10:28 (07.05.)","11:21 (07.05.)","25,68","Breite Str.;23;13597;Berlin;DE|Blockdammweg;39-59;10318;Berlin;DE","46,90 €","29,00 Km in zone_1_km (1,10 € * 29,91 km) + 14,00 € PKW"
|
||||
"22020001","21,06","0.00","17,99","Sentech Instruments GmbH","Schwarzschildstr. 2","12489, 10623","20,04","14:17 (07.05.)","14:46 (07.05.)","25,68","Schwarzschildstr.;2;12489;Berlin;DE|Fasanenstrasse;85;10623;Berlin;DE","38,02 €","21,00 Km in zone_1_km (1,10 € * 21,84 km) + 14,00 € PKW"
|
||||
"22015862","20,62","0.00","18,01","Schumann Kfz-Service","Neuköllnische Allee 58","12057, 14163","16,74","12:27 (05.05.)","12:27 (05.05.)","25,15","Neuköllnische Allee;58;12057;Berlin;DE|Potsdamer Str.;3d;14163;Berlin;DE","32,43 €","16,00 Km in zone_1_km (1,10 € * 16,75 km) + 14,00 € PKW"
|
||||
"22016743","20,62","0.00","18,01","Fliesenparadies Glaeske & Sefzig","Alt-Kaulsdorf 26","12621, 13156","38,68","07:34 (06.05.)","07:41 (06.05.)","25,15","Alt-Kaulsdorf;26;12621;Berlin;DE|Blankenburger Str.;129-141;13156;Berlin;DE","36,34 €","20,00 Km in zone_1_km (1,10 € * 20,31 km) + 14,00 € PKW"
|
||||
"22017098","20,62","0.00","18,01","Schluessel-Schnelldienst GmbH","Duisburger Str. 8","10707, 13055","16,99","09:14 (06.05.)","12:08 (06.05.)","25,15","Duisburger Str.;8;10707;Berlin;DE|Ferdinand-Schultze-Str.;91;13055;Berlin;DE","33,14 €","17,00 Km in zone_1_km (1,10 € * 17,40 km) + 14,00 € PKW"
|
||||
"22017871","20,62","0.00","18,01","Dr. Christopher Topar","Clayallee 225 a","14195, 10119","21,23","13:07 (06.05.)","14:18 (06.05.)","25,15","Clayallee;225 a;14195;Berlin;DE|Fehrbelliner Str.;84;10119;Berlin;DE","31,06 €","15,00 Km in zone_1_km (1,10 € * 15,51 km) + 14,00 € PKW"
|
||||
"22018527","20,62","0.00","18,01","WISTA.Plan GmbH","Rudower Chaussee 19","12489, 10707","19,77","09:00 (07.05.)","09:04 (07.05.)","25,15","Rudower Chaussee;19;12489;Berlin;DE|Württembergische Str.;6;10707;Berlin;DE","35,70 €","19,00 Km in zone_1_km (1,10 € * 19,73 km) + 14,00 € PKW"
|
||||
"22016595","20,5","0.00","18","Lager HUAWEI",". .","., .","","19:47 (05.05.)","19:47 (05.05.)","25",".;.;.;.;DE|.;.;.;.;DE","ERROR","Adresse in 1. Station nicht ok"
|
||||
"22015722","20,23","0.00","18,03","STADTBOTE, Proj. Flash","Colditzstr. 33","12099, 10365","14,21","10:30 (07.05.)","10:43 (07.05.)","24,68","Colditzstr.;33;12099;Berlin;DE|Ruschestr.;70;10365;Berlin;DE","29,07 €","13,00 Km in zone_1_km (1,10 € * 13,70 km) + 14,00 € PKW"
|
||||
"22020329","20,23","0.00","18,03","STADTBOTE, Proj. Flash","Colditzstr. 33","12099, 10713","9,07","16:26 (07.05.)","16:27 (07.05.)","24,68","Colditzstr.;33;12099;Berlin;DE|Berliner Str.;112-115;10713;Berlin;DE","23,97 €","9,00 Km in zone_1_km (1,10 € * 9,06 km) + 14,00 € PKW"
|
||||
"22014826","20,2","0.00","18,05","Raab Karcher Baustoffhandel","Pasewalker Str. 86-87","13127, 12619","19,72","07:52 (05.05.)","07:55 (05.05.)","24,65","Pasewalker Str.;86-87;13127;Berlin;DE|Erich-Kästner-Straße;52;12619;Berlin;DE","35,69 €","19,00 Km in zone_1_km (1,10 € * 9,36 km) + zone_2_km (1,10 € * 10,36 km) + 14,00 € PKW"
|
||||
"22014687","18,78","17.55","23,69","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 12351","15,29","08:00 (05.05.)","07:34 (05.05.)","24,61","Hindenburgdamm;30a;12203;Berlin;DE|Rudower Str.;48;12351;Berlin;DE","30,80 €","15,00 Km in zone_1_km (1,10 € * 15,27 km) + 14,00 € PKW"
|
||||
"22015902","18,78","17.55","23,69","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","12:42 (05.05.)","12:53 (05.05.)","24,61","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € PKW"
|
||||
"22016248","20,18","0.00","18","Rechtsanwalt Kai-Erik Becker","Emser Platz 2","10719, 13187","16,21","15:15 (05.05.)","14:53 (05.05.)","24,61","Emser Platz;2;10719;Berlin;DE|Pradelstr.;14;13187;Berlin;DE","27,12 €","11,00 Km in zone_1_km (1,10 € * 11,93 km) + 14,00 € PKW"
|
||||
"22016420","18,78","17.55","23,69","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","15:49 (05.05.)","16:01 (05.05.)","24,61","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € PKW"
|
||||
"22016636","18,78","17.55","23,69","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","06:12 (06.05.)","07:14 (06.05.)","24,61","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € PKW"
|
||||
"22017542","18,78","17.55","23,69","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","11:18 (06.05.)","11:50 (06.05.)","24,61","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € PKW"
|
||||
"22017837","18,78","17.55","23,69","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","12:55 (06.05.)","14:33 (06.05.)","24,61","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € PKW"
|
||||
"22017862","20,18","0.00","18","Garleff & Sohn KG","Schönhauser Str. 32","13127, 14193","19,4","13:04 (06.05.)","13:04 (06.05.)","24,61","Schönhauser Str.;32;13127;Berlin;DE|Kronberger Str.;12;14193;Berlin;DE","35,33 €","19,00 Km in zone_1_km (1,10 € * 19,39 km) + 14,00 € PKW"
|
||||
"22018061","20,18","0.00","18","Possling","Landsberger Straße 9","12623, 13353","19,85","14:09 (06.05.)","14:57 (06.05.)","24,61","Landsberger Straße;9;12623;Berlin;DE|Genter Str.;10;13353;Berlin;DE","35,84 €","19,00 Km in zone_1_km (1,10 € * 19,85 km) + 14,00 € PKW"
|
||||
"22018393","18,78","17.55","23,69","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","","16:46 (06.05.)","17:03 (06.05.)","24,61","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € PKW"
|
||||
"22018625","20,18","0.00","18","Lechmann Engeneering","Woermannkehre 2","12359, 12681","19,33","07:41 (07.05.)","09:03 (07.05.)","24,61","Woermannkehre;2;12359;Berlin;DE|Boxberger Straße;10;12681;Berlin;DE","35,25 €","19,00 Km in zone_1_km (1,10 € * 19,32 km) + 14,00 € PKW"
|
||||
"22020348","18,78","17.55","23,69","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10967","12,53","16:49 (07.05.)","17:04 (07.05.)","24,61","Hindenburgdamm;30a;12203;Berlin;DE|Dieffenbachstr.;1;10967;Berlin;DE","27,77 €","12,00 Km in zone_1_km (1,10 € * 12,52 km) + 14,00 € PKW"
|
||||
"22020364","18,78","17.55","23,69","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 12351","14,79","17:10 (07.05.)","17:10 (07.05.)","24,61","Hindenburgdamm;30a;12203;Berlin;DE|Kormoranweg;48;12351;Berlin;DE","30,25 €","14,00 Km in zone_1_km (1,10 € * 14,77 km) + 14,00 € PKW"
|
||||
"22019619","19,77","0.00","18,03","Raab Karcher","Sachsenhausener Str. 20","16515, 14480","57,04","12:12 (07.05.)","12:23 (07.05.)","24,12","Sachsenhausener Str.;20;16515;Oranienburg;DE|Am Silbergraben;.;14480;Potsdam;DE","76,66 €","57,00 Km in zone_2_km (1,10 € * 28,37 km) + zone_1_km (1,10 € * 28,59 km) + 14,00 € PKW"
|
||||
"22013465","19,74","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Industriestr. 15","12099, 12555","19,61","07:00 (05.05.)","07:16 (05.05.)","24,08","Industriestr.;15;12099;Berlin;DE|Annenallee;20;12555;Berlin;DE","33,59 €","17,00 Km in zone_1_km (1,10 € * 17,81 km) + 14,00 € PKW"
|
||||
"22017228","19,74","0.00","18,02","Hommelsheim GmbH","Rheingaustr. 2","12161, 12681","29,34","09:52 (06.05.)","13:54 (06.05.)","24,08","Rheingaustr.;2;12161;Berlin;DE|Boxberger Str.;3;12681;Berlin;DE","43,77 €","27,00 Km in zone_1_km (1,10 € * 27,06 km) + 14,00 € PKW"
|
||||
"22017759","19,74","0.00","18,02","Baumer Germany GmbH & Co. KG","Max-Dohrn-Str. 2+4","10589, 13053","17,36","12:28 (06.05.)","13:11 (06.05.)","24,08","Max-Dohrn-Str.;2+4;10589;Berlin;DE|Anna-Ebermann-Str.;6;13053;Berlin;DE","33,09 €","17,00 Km in zone_1_km (1,10 € * 17,35 km) + 14,00 € PKW"
|
||||
"22018671","19,74","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Coppistr. 5","10365, 12249","18,31","07:57 (07.05.)","10:46 (07.05.)","24,08","Coppistr.;5;10365;Berlin;DE|Belßstr.;39;12249;Berlin;DE","34,67 €","18,00 Km in zone_1_km (1,10 € * 18,79 km) + 14,00 € PKW"
|
||||
"22018796","19,74","0.00","18,02","P. Starzonek Baustoff-Fachhandel","Colditzstr. 33","12099, 12555","0","08:31 (07.05.)","12:27 (07.05.)","24,08","Colditzstr.;33;12099;Berlin;DE|Elcknerplatz;22;12555;Berlin;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22018067","19,74","0.00","18,02","Schlutheiß Brauerei","Indira-Gandhi-Str. 66-69","13053, 13403","12,16","09:00 (07.05.)","11:05 (07.05.)","24,08","Indira-Gandhi-Str.;66-69;13053;Berlin;DE|Großkopfstr.;5;13403;Berlin;DE","27,38 €","12,00 Km in zone_1_km (1,10 € * 12,16 km) + 14,00 € PKW"
|
||||
"22019804","19,74","0.00","18,02","sto_Kst. 6410","Ullsteinstr. 98-106","12109, 12527","17,33","13:17 (07.05.)","15:23 (07.05.)","24,08","Ullsteinstr.;98-106;12109;Berlin;DE|Königsseestr.;9;12527;Berlin;DE","31,31 €","15,00 Km in zone_1_km (1,10 € * 15,74 km) + 14,00 € PKW"
|
||||
"22017625","19,27","0.00","18","Hilti Deutschland GmbH","Alt-Mahlsdorf 26","12623, 13158","37,05","11:43 (06.05.)","13:58 (06.05.)","23,5","Alt-Mahlsdorf;26;12623;Berlin;DE|Friedrich-Engels-Str.;166;13158;Berlin;DE","54,76 €","37,00 Km in zone_1_km (1,10 € * 16,29 km) + zone_2_km (1,10 € * 20,76 km) + 14,00 € PKW"
|
||||
"22019297","18,86","0.00","18,04","Berliner Schrauben GmbH","Prinzenstr. 86","10969, 14163","","10:45 (07.05.)","","23,01","Prinzenstr.;86;10969;Berlin;DE|Quermatenweg;152;14163;Berlin;DE","37,27 €","21,00 Km in zone_1_km (1,10 € * 21,15 km) + 14,00 € PKW"
|
||||
"22014859","17,99","0.00","18","Blumen Marsano GmbH","Charlottenstr. 75","10117, 12555","","08:06 (05.05.)","","21,94","Charlottenstr.;75;10117;Berlin;DE|Lindenhof;31b;12555;Berlin;DE","35,64 €","19,00 Km in zone_1_km (1,10 € * 19,67 km) + 14,00 € PKW"
|
||||
"22016457","17,99","0.00","18","Emil Herminghaus","Gradestr. 48","12347, 13353","22,09","08:00 (06.05.)","10:07 (06.05.)","21,94","Gradestr.;48;12347;Berlin;DE|Genter Str.;18;13353;Berlin;DE","29,96 €","14,00 Km in zone_1_km (1,10 € * 14,51 km) + 14,00 € PKW"
|
||||
"22017823","17,99","0.00","18","CVK, Personalleitung","Augustenburger Platz 1","13353, 12059","11,53","12:49 (06.05.)","13:02 (06.05.)","21,94","Augustenburger Platz;1;13353;Berlin;DE|Weserstr.;152;12059;Berlin;DE","26,67 €","11,00 Km in zone_1_km (1,10 € * 11,52 km) + 14,00 € PKW"
|
||||
"22018217","17,99","0.00","18","Firma Molton Discount","Warener Str. 5","12683, 10551","19,45","09:00 (07.05.)","12:40 (07.05.)","21,94","Warener Str.;5;12683;Berlin;DE|Wiclefstr.;16-17;10551;Berlin;DE","35,62 €","19,00 Km in zone_1_km (1,10 € * 19,65 km) + 14,00 € PKW"
|
||||
"22015400","17,55","0.00","17,99","FirstStep communications","Am Studio 2","12489, 12205","22,32","10:17 (05.05.)","10:17 (05.05.)","21,4","Am Studio;2;12489;Berlin;DE|Pfleidererstr.;3-4;12205;Berlin;DE","38,76 €","22,00 Km in zone_1_km (1,10 € * 22,51 km) + 14,00 € PKW"
|
||||
"22015630","17,55","0.00","17,99","Kerana im stilwerk Berlin","Kantstr. 17","10623, 13086","12,19","11:16 (05.05.)","12:57 (05.05.)","21,4","Kantstr.;17;10623;Berlin;DE|Langhansstr.;14;13086;Berlin;DE","27,26 €","12,00 Km in zone_1_km (1,10 € * 12,05 km) + 14,00 € PKW"
|
||||
"22015694","17,55","0.00","17,99","Parkettlegermeister Rudolph","Eresburgstr. 24-29","12103, 13405","17,12","11:32 (05.05.)","12:42 (05.05.)","21,4","Eresburgstr.;24-29;12103;Berlin;DE|Nordlichtstraße;28;13405;Berlin;DE","33,01 €","17,00 Km in zone_1_km (1,10 € * 17,28 km) + 14,00 € PKW"
|
||||
"22015766","17,55","0.00","17,99","Das süße Leben","Salzburger Str. 7","10825, 13509","17,7","11:55 (05.05.)","12:00 (05.05.)","21,4","Salzburger Str.;7;10825;Berlin;DE|Holzhauser Str.;175;13509;Berlin;DE","33,64 €","17,00 Km in zone_1_km (1,10 € * 17,85 km) + 14,00 € PKW"
|
||||
"22016538","17,55","0.00","17,99","Medical Park Berlin","An der Mühle 2-9","13507, 10829","0","16:57 (05.05.)","17:15 (05.05.)","21,4","An der Mühle;2-9;13507;Berlin;DE|Reichartstr.;2;10829;Berlin;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22017696","17,55","0.00","17,99","LWB","Wotanstr. 18","10365, 12277","21,27","12:06 (06.05.)","13:13 (06.05.)","21,4","Wotanstr.;18;10365;Berlin;DE|Nunsdorfer Ring;13;12277;Berlin;DE","37,08 €","21,00 Km in zone_1_km (1,10 € * 20,98 km) + 14,00 € PKW"
|
||||
"22017842","17,55","0.00","17,99","DAT Deutsche Aufzugstechnik GmbH","Flottenstr. 28-42","13407, 10783","10,4","12:57 (06.05.)","12:59 (06.05.)","21,4","Flottenstr.;28-42;13407;Berlin;DE|Steinmetzstr;64;10783;Berlin;DE","25,44 €","10,00 Km in zone_1_km (1,10 € * 10,40 km) + 14,00 € PKW"
|
||||
"22018071","17,55","0.00","17,99","media Agent","Mecklenburgische Str. 87-88","10713, 14089","20,35","14:13 (06.05.)","14:32 (06.05.)","21,4","Mecklenburgische Str.;87-88;10713;Berlin;DE|Sakrower Landstr.;26;14089;Berlin;DE","36,37 €","20,00 Km in zone_1_km (1,10 € * 20,34 km) + 14,00 € PKW"
|
||||
"22018333","17,55","0.00","17,99","BANDELIN electronic GmbH","Heinrichstr. 3-4","12207, 12489","22,39","08:00 (07.05.)","09:43 (07.05.)","21,4","Heinrichstr.;3-4;12207;Berlin;DE|Wagner-Régeny-Str.;8;12489;Berlin;DE","39,80 €","23,00 Km in zone_1_km (1,10 € * 23,45 km) + 14,00 € PKW"
|
||||
"22018771","17,55","0.00","17,99","Schlau Großhandels GmbH & Co. KG","Coppistr. 5","10365, 12099","12,01","08:25 (07.05.)","11:33 (07.05.)","21,4","Coppistr.;5;10365;Berlin;DE|Oberlandstraße;26-35;12099;Berlin;DE","25,85 €","10,00 Km in zone_1_km (1,10 € * 10,77 km) + 14,00 € PKW"
|
||||
"22018817","17,55","0.00","17,99","Schlau Großhandels GmbH & Co. KG","Coppistr. 5","10365, 12099","12,83","08:35 (07.05.)","10:58 (07.05.)","21,4","Coppistr.;5;10365;Berlin;DE|Industriestr.;15;12099;Berlin;DE","26,94 €","11,00 Km in zone_1_km (1,10 € * 11,76 km) + 14,00 € PKW"
|
||||
"22019473","17,55","0.00","17,99","media Agent","Mecklenburgische Str. 87-88","10713, 14089","15,27","11:22 (07.05.)","11:24 (07.05.)","21,4","Mecklenburgische Str.;87-88;10713;Berlin;DE|Alt-Gatow;23;14089;Berlin;DE","30,80 €","15,00 Km in zone_1_km (1,10 € * 15,27 km) + 14,00 € PKW"
|
||||
"22018140","17,11","0.00","19,86","ABS Fahrzeugtechnik GmbH","Huttenstr. 57","10553, 13507","9,75","14:43 (06.05.)","15:09 (06.05.)","21,35","Huttenstr.;57;10553;Berlin;DE|Am Borsigturm;33;13507;Berlin;DE","24,71 €","9,00 Km in zone_1_km (1,10 € * 9,74 km) + 14,00 € PKW"
|
||||
"22015384","17,38","0.00","17,98","Bär & Ollenroth KG Berlin","Bouchéstr. 12","12435, 14167","22,86","10:14 (05.05.)","10:15 (05.05.)","21,19","Bouchéstr.;12;12435;Berlin;DE|Teltower Damm;293;14167;Berlin;DE","36,52 €","20,00 Km in zone_1_km (1,10 € * 20,47 km) + 14,00 € PKW"
|
||||
"22014673","16,27","0.00","22,04","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 12351","","05:47 (05.05.)","","20,87","Hindenburgdamm;30a;12203;Berlin;DE|Kormoranweg;48;12351;Berlin;DE","30,25 €","14,00 Km in zone_1_km (1,10 € * 14,77 km) + 14,00 € PKW"
|
||||
"22014697","17,11","0.00","18,02","PROSOL Lacke + Farben GmbH","Gaußstr. 17","10589, 12161","11,89","06:50 (05.05.)","07:54 (05.05.)","20,87","Gaußstr.;17;10589;Berlin;DE|Bundesallee;90;12161;Berlin;DE","27,08 €","11,00 Km in zone_1_km (1,10 € * 11,89 km) + 14,00 € PKW"
|
||||
"22012590","17,11","0.00","18,02","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 10557","11,06","07:00 (05.05.)","07:50 (05.05.)","20,87","Gradestr.;46-50;12347;Berlin;DE|Washingtonplatz;1;10557;Berlin;DE","26,17 €","11,00 Km in zone_1_km (1,10 € * 11,06 km) + 14,00 € PKW"
|
||||
"22013174","17,11","0.00","18,02","Berliner Schrauben","Prinzenstr. 86","10969, 10367","7,54","07:00 (05.05.)","06:33 (05.05.)","20,87","Prinzenstr.;86;10969;Berlin;DE|Vulkanstr.;13;10367;Berlin;DE","22,29 €","7,00 Km in zone_1_km (1,10 € * 7,54 km) + 14,00 € PKW"
|
||||
"22013489","17,11","0.00","18,02","Krankenhaus Maria Heimsuchung","Breite Str. 46-47","13187, 13353","8,53","07:00 (05.05.)","07:19 (05.05.)","20,87","Breite Str.;46-47;13187;Berlin;DE|Sylter Str.;2;13353;Berlin;DE","22,71 €","7,00 Km in zone_1_km (1,10 € * 7,92 km) + 14,00 € PKW"
|
||||
"22013816","17,11","0.00","18,02","ZTB-CCM","Luisenstr. 7","10117, 12203","13,25","08:00 (05.05.)","10:13 (05.05.)","20,87","Luisenstr.;7;10117;Berlin;DE|Hindenburgdamm;30;12203;Berlin;DE","28,72 €","13,00 Km in zone_1_km (1,10 € * 13,38 km) + 14,00 € PKW"
|
||||
"22014694","17,11","0.00","18,02","Rausch Straßen- und Tiefbau","Chemnitzer Str. 19","14612, 12489","","08:00 (05.05.)","07:37 (05.05.)","20,87","Chemnitzer Str.;19;14612;Falkensee;DE|Rudower Chaussee;48;12489;Berlin;DE","57,37 €","39,00 Km in zone_2_km (1,10 € * 7,13 km) + zone_1_km (1,10 € * 32,30 km) + 14,00 € PKW"
|
||||
"22014896","17,11","0.00","18,02","GBAV","Gradestr. 83","12347, 12489","9,4","08:15 (05.05.)","08:36 (05.05.)","20,87","Gradestr.;83;12347;Berlin;DE|Justus-von-Liebig-Str.;4;12489;Berlin;DE","24,34 €","9,00 Km in zone_1_km (1,10 € * 9,40 km) + 14,00 € PKW"
|
||||
"22014904","17,11","0.00","18,02","Scholz Elektrotechnik GmbH","Lauenburger Str. 85","12169, 10243","13,25","08:17 (05.05.)","08:17 (05.05.)","20,87","Lauenburger Str.;85;12169;Berlin;DE|Am Postbahnhof;15;10243;Berlin;DE","28,56 €","13,00 Km in zone_1_km (1,10 € * 13,24 km) + 14,00 € PKW"
|
||||
"22014996","17,11","0.00","18,02","BOS Technology GmbH","Alexander-Meißner-Str. 36","12526, 12057","13,31","08:41 (05.05.)","09:25 (05.05.)","20,87","Alexander-Meißner-Str.;36;12526;Berlin;DE|Schmalenbachstr.;22;12057;Berlin;DE","28,33 €","13,00 Km in zone_1_km (1,10 € * 11,03 km) + zone_2_km (1,10 € * 2,00 km) + 14,00 € PKW"
|
||||
"22015001","17,11","0.00","18,02","AWO Refugium Ostpreußendamm","Ostpreußendamm 108","12207, 10589","21,84","08:42 (05.05.)","10:33 (05.05.)","20,87","Ostpreußendamm;108;12207;Berlin;DE|Darwinstr.;14;10589;Berlin;DE","32,66 €","17,00 Km in zone_1_km (1,10 € * 16,96 km) + 14,00 € PKW"
|
||||
"22015009","17,11","0.00","18,02","JOP Handels GmbH & Co. KG","Ringbahnstr. 10-14","12099, 10823","5,36","08:44 (05.05.)","08:44 (05.05.)","20,87","Ringbahnstr.;10-14;12099;Berlin;DE|Belziger Str.;16;10823;Berlin;DE","19,89 €","5,00 Km in zone_1_km (1,10 € * 5,35 km) + 14,00 € PKW"
|
||||
"22015023","17,11","0.00","18,02","Charité Campus Mitte","Luisenstr. 64","10117, 13353","4,15","08:46 (05.05.)","10:41 (05.05.)","20,87","Luisenstr.;64;10117;Berlin;DE|Augustenburger Platz;1;13353;Berlin;DE","19,50 € [M]","4,00 Km in zone_1_km (1,10 € * 4,15 km) + 14,00 € PKW"
|
||||
"22015027","17,11","0.00","18,02","PROSOL Lacke + Farben GmbH","Gaußstr. 17","10589, 12043","21,79","08:48 (05.05.)","08:49 (05.05.)","20,87","Gaußstr.;17;10589;Berlin;DE|Karl-Marx-Str.;83;12043;Berlin;DE","36,14 €","20,00 Km in zone_1_km (1,10 € * 20,13 km) + 14,00 € PKW"
|
||||
"22015029","17,11","0.00","18,02","BEDO Innenausbausysteme und Bau","Hermann-Blankenstein-Str. 50","10249, 10557","","08:50 (05.05.)","","20,87","Hermann-Blankenstein-Str.;50;10249;Berlin;DE|Alice-Berend-Str.;1;10557;Berlin;DE","24,41 €","9,00 Km in zone_1_km (1,10 € * 9,46 km) + 14,00 € PKW"
|
||||
"22013739","17,11","0.00","18,02","Fritz Bergmann Reprografie GmbH","Schloßstr. 66","12165, 10407","16,6","09:00 (05.05.)","09:57 (05.05.)","20,87","Schloßstr.;66;12165;Berlin;DE|Storkower Str.;99;10407;Berlin;DE","32,52 €","16,00 Km in zone_1_km (1,10 € * 16,84 km) + 14,00 € PKW"
|
||||
"22014662","17,11","0.00","18,02","BSI Berger Schallehn Ingenieure","Einsteinufer 63-65","10587, 10117","5,71","09:00 (05.05.)","08:41 (05.05.)","20,87","Einsteinufer;63-65;10587;Berlin;DE|Am Kupfergraben;2;10117;Berlin;DE","20,28 €","5,00 Km in zone_1_km (1,10 € * 5,71 km) + 14,00 € PKW"
|
||||
"22014895","17,11","0.00","18,02","Monika Günther Hausverwaltung","Malteserstr. 174","12277, 12109","5,44","09:00 (05.05.)","08:30 (05.05.)","20,87","Malteserstr.;174;12277;Berlin;DE|Mariendorfer Damm;26;12109;Berlin;DE","19,98 €","5,00 Km in zone_1_km (1,10 € * 5,44 km) + 14,00 € PKW"
|
||||
"22015065","17,11","0.00","18,02","KÖNIGSDRUCK","Alt-Reinickendorf 28","13407, 10719","14,87","09:00 (05.05.)","11:08 (05.05.)","20,87","Alt-Reinickendorf;28;13407;Berlin;DE|Fasanenstr.;25;10719;Berlin;DE","30,36 €","14,00 Km in zone_1_km (1,10 € * 14,87 km) + 14,00 € PKW"
|
||||
"22015133","17,11","0.00","18,02","Ultra Tube GmbH","Saatwinkler Damm 66","13627, 14059","6,42","09:16 (05.05.)","09:17 (05.05.)","20,87","Saatwinkler Damm;66;13627;Berlin;DE|Königin-Elisabeth-Str.;1;14059;Berlin;DE","21,06 €","6,00 Km in zone_1_km (1,10 € * 6,42 km) + 14,00 € PKW"
|
||||
"22015136","17,11","0.00","18,02","Hommelsheim GmbH","Rheingaustr. 2","12161, 12359","11,32","09:16 (05.05.)","09:52 (05.05.)","20,87","Rheingaustr.;2;12161;Berlin;DE|Haarlemer Str.;31;12359;Berlin;DE","27,23 €","12,00 Km in zone_1_km (1,10 € * 12,03 km) + 14,00 € PKW"
|
||||
"22015160","17,11","0.00","18,02","Schäfer Automatisierungs-","Rathenower Str. 11","12305, 12159","14,54","09:19 (05.05.)","09:19 (05.05.)","20,87","Rathenower Str.;11;12305;Berlin;DE|Sarrazinstr.;11-15;12159;Berlin;DE","29,99 €","14,00 Km in zone_1_km (1,10 € * 14,54 km) + 14,00 € PKW"
|
||||
"22015180","17,11","0.00","18,02","Charité Campus Mitte","Luisenstr. 7","10117, 12203","13,25","09:24 (05.05.)","09:24 (05.05.)","20,87","Luisenstr.;7;10117;Berlin;DE|Hindenburgdamm;30;12203;Berlin;DE","28,72 €","13,00 Km in zone_1_km (1,10 € * 13,38 km) + 14,00 € PKW"
|
||||
"22015195","17,11","0.00","18,02","Herr Chau","an der Mole 5","10317, 10367","2,03","09:28 (05.05.)","10:30 (05.05.)","20,87","an der Mole;5;10317;Berlin;DE|Stefan-Heym-Platz;1;10367;Berlin;DE","19,50 € [M]","2,00 Km in zone_1_km (1,10 € * 2,03 km) + 14,00 € PKW"
|
||||
"22015298","17,11","0.00","18,02","Bacco Bäckerei","Annenstr. 48","10179, 10249","4,85","09:52 (05.05.)","10:18 (05.05.)","20,87","Annenstr.;48;10179;Berlin;DE|Hermann-Blankenstein-Str.;30;10249;Berlin;DE","19,50 € [M]","4,00 Km in zone_1_km (1,10 € * 4,82 km) + 14,00 € PKW"
|
||||
"22013035","17,11","0.00","18,02","Beumer & Lutum GmbH Bio-Bäckerei","Zossener Str. 34","10961, 10787","3,75","10:00 (05.05.)","09:30 (05.05.)","20,87","Zossener Str.;34;10961;Berlin;DE|Ahornstr.;5;10787;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,75 km) + 14,00 € PKW"
|
||||
"22013098","17,11","0.00","18,02","Vivantes Humbolt-Klinikum","Am Nordgraben 2","13509, 10115","9,99","10:00 (05.05.)","11:26 (05.05.)","20,87","Am Nordgraben;2;13509;Berlin;DE|Invalidenstr.;112;10115;Berlin;DE","25,45 €","10,00 Km in zone_1_km (1,10 € * 10,41 km) + 14,00 € PKW"
|
||||
"22013769","17,11","0.00","18,02","Herr Schneckmann","Rosenorter Steig 13","13503, 10623","18,04","10:00 (05.05.)","10:38 (05.05.)","20,87","Rosenorter Steig;13;13503;Berlin;DE|Goethestr.;82;10623;Berlin;DE","33,83 €","18,00 Km in zone_1_km (1,10 € * 18,03 km) + 14,00 € PKW"
|
||||
"22015334","17,11","0.00","18,02","Johannesstift Diakonie Services GmbH","Westhafenstr. 1","13353, 10785","5,91","10:00 (05.05.)","10:27 (05.05.)","20,87","Westhafenstr.;1;13353;Berlin;DE|Lützowstr.;24-26;10785;Berlin;DE","20,50 €","5,00 Km in zone_1_km (1,10 € * 5,91 km) + 14,00 € PKW"
|
||||
"22015347","17,11","0.00","18,02","Merkur Schoppe - Kundendienst","Holzhauser Str. 139","13509, 13086","12,37","10:03 (05.05.)","10:03 (05.05.)","20,87","Holzhauser Str.;139;13509;Berlin;DE|Börnestr.;5;13086;Berlin;DE","27,81 €","12,00 Km in zone_1_km (1,10 € * 12,55 km) + 14,00 € PKW"
|
||||
"22015366","17,11","0.00","18,02","Zweirad Shop Cintula","Tempelhofer Weg 3","12099, 12277","7,41","10:08 (05.05.)","11:06 (05.05.)","20,87","Tempelhofer Weg;3;12099;Berlin;DE|Zehrensdorfer Str.;9;12277;Berlin;DE","22,15 €","7,00 Km in zone_1_km (1,10 € * 7,41 km) + 14,00 € PKW"
|
||||
"22015367","17,11","0.00","18,02","Kardiologie am Ku´damm 93","Kurfürstendamm 93","10709, 10829","8,53","10:08 (05.05.)","10:08 (05.05.)","20,87","Kurfürstendamm;93;10709;Berlin;DE|Geneststr.;5;10829;Berlin;DE","23,37 €","8,00 Km in zone_1_km (1,10 € * 8,52 km) + 14,00 € PKW"
|
||||
"22015389","17,11","0.00","18,02","Dr. Christopher Topar","Clayallee 225 a","14195, 12107","11,62","10:15 (05.05.)","11:33 (05.05.)","20,87","Clayallee;225 a;14195;Berlin;DE|Göllweg;15b;12107;Berlin;DE","26,78 €","11,00 Km in zone_1_km (1,10 € * 11,62 km) + 14,00 € PKW"
|
||||
"22015425","17,11","0.00","18,02","Deutscher Franchise-Verband e. V.","Luisenstr. 41","10117, 10777","5,33","10:24 (05.05.)","10:53 (05.05.)","20,87","Luisenstr.;41;10117;Berlin;DE|Ansbacher Str.;66;10777;Berlin;DE","19,86 €","5,00 Km in zone_1_km (1,10 € * 5,33 km) + 14,00 € PKW"
|
||||
"22015439","17,11","0.00","18,02","DAT Deutsche Aufzugstechnik GmbH","Flottenstr. 28-42","13407, 13583","15,92","10:27 (05.05.)","11:09 (05.05.)","20,87","Flottenstr.;28-42;13407;Berlin;DE|Kandeler Weg;1;13583;Berlin;DE","31,51 €","15,00 Km in zone_1_km (1,10 € * 15,92 km) + 14,00 € PKW"
|
||||
"22015461","17,11","0.00","18,02","KÖNIGSDRUCK","Alt-Reinickendorf 28","13407, 10997","14,52","10:35 (05.05.)","12:25 (05.05.)","20,87","Alt-Reinickendorf;28;13407;Berlin;DE|Skalitzer Str.;68;10997;Berlin;DE","29,97 €","14,00 Km in zone_1_km (1,10 € * 14,52 km) + 14,00 € PKW"
|
||||
"22015494","17,11","0.00","18,02","Bohle Innenausbau GmbH","Kienhorststr. 55","13403, 10999","13,7","10:42 (05.05.)","12:26 (05.05.)","20,87","Kienhorststr.;55;13403;Berlin;DE|Oranienstr.;183;10999;Berlin;DE","29,07 €","13,00 Km in zone_1_km (1,10 € * 13,70 km) + 14,00 € PKW"
|
||||
"22015509","17,11","0.00","18,02","JODISCH GmbH","Am Eulenhorst 11","13505, 13503","3,78","10:45 (05.05.)","11:09 (05.05.)","20,87","Am Eulenhorst;11;13505;Berlin;DE|An der Schneise;72;13503;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,77 km) + 14,00 € PKW"
|
||||
"22015530","17,11","0.00","18,02","Beck Trockenbau GmbH","An der Wuhlheide 232","12459, 10245","9,01","10:48 (05.05.)","11:06 (05.05.)","20,87","An der Wuhlheide;232;12459;Berlin;DE|Sonntagstr.;24;10245;Berlin;DE","23,91 €","9,00 Km in zone_1_km (1,10 € * 9,01 km) + 14,00 € PKW"
|
||||
"22015557","17,11","0.00","18,02","Dipl.-Ing. Matthias Ahnefeld","Geisbergstr. 39","10777, 13187","12,84","10:54 (05.05.)","11:18 (05.05.)","20,87","Geisbergstr.;39;10777;Berlin;DE|Mühlenstr.;77;13187;Berlin;DE","26,96 €","11,00 Km in zone_1_km (1,10 € * 11,78 km) + 14,00 € PKW"
|
||||
"22015559","17,11","0.00","18,02","Aktiv Zulassungsdienst","Heimstr. 9a","10965, 13509","20,8","10:55 (05.05.)","11:13 (05.05.)","20,87","Heimstr.;9a;10965;Berlin;DE|Wittestr.;69;13509;Berlin;DE","32,06 €","16,00 Km in zone_1_km (1,10 € * 16,42 km) + 14,00 € PKW"
|
||||
"22015582","17,11","0.00","18,02","hb fahrzeugtechnik","Juliusstr. 5","12051, 12161","9,29","11:01 (05.05.)","13:32 (05.05.)","20,87","Juliusstr.;5;12051;Berlin;DE|Rheinstr.;29;12161;Berlin;DE","23,97 €","9,00 Km in zone_1_km (1,10 € * 9,06 km) + 14,00 € PKW"
|
||||
"22015625","17,11","0.00","18,02","Bst.","Börnestr. 5","13086, 13509","11,97","11:14 (05.05.)","11:14 (05.05.)","20,87","Börnestr.;5;13086;Berlin;DE|Holzhauser Str.;139;13509;Berlin;DE","27,16 €","12,00 Km in zone_1_km (1,10 € * 11,96 km) + 14,00 € PKW"
|
||||
"22015650","17,11","0.00","18,02","Weißhaupt","Fürstenbrunner Weg 54","14059, 10437","13,21","11:21 (05.05.)","11:25 (05.05.)","20,87","Fürstenbrunner Weg;54;14059;Berlin;DE|Pappelallee;59;10437;Berlin;DE","28,52 €","13,00 Km in zone_1_km (1,10 € * 13,20 km) + 14,00 € PKW"
|
||||
"22015691","17,11","0.00","18,02","laurent.tax Steuerberatungs-","Malteserstr. 170-172","12277, 14057","15,08","11:31 (05.05.)","11:31 (05.05.)","20,87","Malteserstr.;170-172;12277;Berlin;DE|Bredtschneiderstr.;5;14057;Berlin;DE","30,58 €","15,00 Km in zone_1_km (1,10 € * 15,07 km) + 14,00 € PKW"
|
||||
"22015692","17,11","0.00","18,02","CVK, Personalleitung","Augustenburger Platz 1","13353, 10961","8,91","11:31 (05.05.)","12:15 (05.05.)","20,87","Augustenburger Platz;1;13353;Berlin;DE|Fürbringerstraße;19;10961;Berlin;DE","22,94 €","8,00 Km in zone_1_km (1,10 € * 8,13 km) + 14,00 € PKW"
|
||||
"22015695","17,11","0.00","18,02","St. Joseph-Krankenhaus","Wüsthoffstr. 15","12101, 12203","9,37","11:32 (05.05.)","12:36 (05.05.)","20,87","Wüsthoffstr.;15;12101;Berlin;DE|Hindenburgdamm;30a;12203;Berlin;DE","24,70 €","9,00 Km in zone_1_km (1,10 € * 9,73 km) + 14,00 € PKW"
|
||||
"22015715","17,11","0.00","18,02","Eckard Kanold GmbH &","Bessemerstr. 24-26","12103, 10365","17,08","11:40 (05.05.)","12:07 (05.05.)","20,87","Bessemerstr.;24-26;12103;Berlin;DE|Herzbergstr.;127;10365;Berlin;DE","30,30 €","14,00 Km in zone_1_km (1,10 € * 14,82 km) + 14,00 € PKW"
|
||||
"22015738","17,11","0.00","18,02","Wilhelm Frese GmbH","Genter Str. 18","13353, 10783","7,6","11:46 (05.05.)","12:41 (05.05.)","20,87","Genter Str.;18;13353;Berlin;DE|Kulmer Str.;20A;10783;Berlin;DE","22,35 €","7,00 Km in zone_1_km (1,10 € * 7,59 km) + 14,00 € PKW"
|
||||
"22015754","17,11","0.00","18,02","Guenter Kaiser GmbH","Carl-Schurz-Str. 31","13597, 10717","15,93","11:53 (05.05.)","12:07 (05.05.)","20,87","Carl-Schurz-Str.;31;13597;Berlin;DE|Bundesallee;185;10717;Berlin;DE","30,92 €","15,00 Km in zone_1_km (1,10 € * 15,38 km) + 14,00 € PKW"
|
||||
"22015764","17,11","0.00","18,02","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 10557","11,06","11:55 (05.05.)","12:36 (05.05.)","20,87","Gradestr.;46-50;12347;Berlin;DE|Washingtonplatz;1;10557;Berlin;DE","26,17 €","11,00 Km in zone_1_km (1,10 € * 11,06 km) + 14,00 € PKW"
|
||||
"22015769","17,11","0.00","18,02","Merkur Schoppe - Geschäftsbereich","Holzhauser Str. 139","13509, 10629","13,99","11:56 (05.05.)","11:56 (05.05.)","20,87","Holzhauser Str.;139;13509;Berlin;DE|Giesebrechtstr.;20;10629;Berlin;DE","29,39 €","14,00 Km in zone_1_km (1,10 € * 13,99 km) + 14,00 € PKW"
|
||||
"22015770","17,11","0.00","18,02","Stadge Metall u. Kunststoffb.","Müggelseedamm 70","12587, 12681","13,59","11:56 (05.05.)","11:57 (05.05.)","20,87","Müggelseedamm;70;12587;Berlin;DE|Rhinstr.;134;12681;Berlin;DE","28,94 €","13,00 Km in zone_1_km (1,10 € * 13,58 km) + 14,00 € PKW"
|
||||
"22015818","17,11","0.00","18,02","CVK, Personalleitung","Augustenburger Platz 1","13353, 13351","1,24","12:15 (05.05.)","12:15 (05.05.)","20,87","Augustenburger Platz;1;13353;Berlin;DE|Senegalstr.;16;13351;Berlin;DE","19,50 € [M]","1,00 Km in zone_1_km (1,10 € * 1,23 km) + 14,00 € PKW"
|
||||
"22015823","17,11","0.00","18,02","BEDO Innenausbausysteme und Bau","Hermann-Blankenstein-Str. 50","10249, 12524","17,05","12:16 (05.05.)","12:17 (05.05.)","20,87","Hermann-Blankenstein-Str.;50;10249;Berlin;DE|Bohnsdorfer Weg;99;12524;Berlin;DE","32,78 €","17,00 Km in zone_1_km (1,10 € * 17,07 km) + 14,00 € PKW"
|
||||
"22015874","17,11","0.00","18,02","KS Automobile","Puderstr. 8","12435, 12683","11,87","12:31 (05.05.)","12:50 (05.05.)","20,87","Puderstr.;8;12435;Berlin;DE|Am Gewerbepark;5;12683;Berlin;DE","27,05 €","11,00 Km in zone_1_km (1,10 € * 11,86 km) + 14,00 € PKW"
|
||||
"22015878","17,11","0.00","18,02","Parkett Hinterseer GmbH","Kaiserin-Augusta-Allee 16-24","10553, 10623","3,52","12:35 (05.05.)","12:34 (05.05.)","20,87","Kaiserin-Augusta-Allee;16-24;10553;Berlin;DE|Kantstr.;143;10623;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,28 km) + 14,00 € PKW"
|
||||
"22015891","17,11","0.00","18,02","BORSIG Process Heat Exchanger","Egellsstr. 21","13507, 10623","13,2","12:38 (05.05.)","12:39 (05.05.)","20,87","Egellsstr.;21;13507;Berlin;DE|Fasanenstr.;85;10623;Berlin;DE","28,47 €","13,00 Km in zone_1_km (1,10 € * 13,15 km) + 14,00 € PKW"
|
||||
"22015900","17,11","0.00","18,02","AW Hygiene-Service","Marienfelder Allee 135","12277, 10589","19,48","12:42 (05.05.)","12:42 (05.05.)","20,87","Marienfelder Allee;135;12277;Berlin;DE|Max-Dohrn-Str.;8-10;10589;Berlin;DE","35,59 €","19,00 Km in zone_1_km (1,10 € * 19,63 km) + 14,00 € PKW"
|
||||
"22015938","17,11","0.00","18,02","HTF Hoch-Tiefbau in Friedrichshain","Weinbergstr. 18-20","12555, 12627","12,19","12:53 (05.05.)","13:09 (05.05.)","20,87","Weinbergstr.;18-20;12555;Berlin;DE|Zerbster Str.;60;12627;Berlin;DE","27,71 €","12,00 Km in zone_1_km (1,10 € * 12,46 km) + 14,00 € PKW"
|
||||
"22015967","17,11","0.00","18,02","AWO Bundesverband e. V.","Bluecherstr. 62","10961, 14193","13,4","13:09 (05.05.)","13:24 (05.05.)","20,87","Bluecherstr.;62;10961;Berlin;DE|Bismarckallee;46-48;14193;Berlin;DE","28,83 €","13,00 Km in zone_1_km (1,10 € * 13,48 km) + 14,00 € PKW"
|
||||
"22016013","17,11","0.00","18,02","Rechtsanwältin Natalija Milosevic","Sybelstr. 63","10629, 12353","19,26","13:28 (05.05.)","13:35 (05.05.)","20,87","Sybelstr.;63;10629;Berlin;DE|Joachim-Gottschalk-Weg;21;12353;Berlin;DE","33,45 €","17,00 Km in zone_1_km (1,10 € * 17,68 km) + 14,00 € PKW"
|
||||
"22016015","17,11","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Holzhauser Str. 62-68","13509, 13409","5,13","13:29 (05.05.)","13:29 (05.05.)","20,87","Holzhauser Str.;62-68;13509;Berlin;DE|Emmentaler Str.;138;13409;Berlin;DE","19,64 €","5,00 Km in zone_1_km (1,10 € * 5,13 km) + 14,00 € PKW"
|
||||
"22016047","17,11","0.00","18,02","lantz-immo.com","Elisenstr. 5","12169, 10245","17,21","13:41 (05.05.)","13:50 (05.05.)","20,87","Elisenstr.;5;12169;Berlin;DE|Alt-Stralau;52-53;10245;Berlin;DE","32,56 €","16,00 Km in zone_1_km (1,10 € * 16,87 km) + 14,00 € PKW"
|
||||
"22015949","17,11","0.00","18,02","Familie Franke","Selerweg 14","12169, 10117","9,03","14:00 (05.05.)","13:33 (05.05.)","20,87","Selerweg;14;12169;Berlin;DE|Leipziger Platz;11;10117;Berlin;DE","23,93 €","9,00 Km in zone_1_km (1,10 € * 9,03 km) + 14,00 € PKW"
|
||||
"22016024","17,11","0.00","18,02","Krankenhaus Friedrichshain","Landsberger Allee 49","10249, 12621","11,88","14:15 (05.05.)","13:41 (05.05.)","20,87","Landsberger Allee;49;10249;Berlin;DE|Myslowitzer Str.;45;12621;Berlin;DE","27,07 €","11,00 Km in zone_1_km (1,10 € * 11,88 km) + 14,00 € PKW"
|
||||
"22016055","17,11","0.00","18,02","Praxis Gonsch","Gleimstraße 39","10437, 10829","0","14:30 (05.05.)","14:04 (05.05.)","20,87","Gleimstraße;39;10437;Berlin;DE|Reichartstr.;2;10829;Berlin;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22016433","17,11","0.00","18,02","SYNLAB Logistics GmbH","Lützowstr. 24-26","10785, 10829","0","15:56 (05.05.)","16:13 (05.05.)","20,87","Lützowstr.;24-26;10785;Berlin;DE|Reichartstr.;2;10829;Berlin;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22016452","17,11","0.00","18,02","Heinz Hammer GmbH","Ollenhauerstr. 116-117","13403, 13156","7,41","16:04 (05.05.)","16:19 (05.05.)","20,87","Ollenhauerstr.;116-117;13403;Berlin;DE|Blankenburger Str.;85-105;13156;Berlin;DE","22,18 €","7,00 Km in zone_1_km (1,10 € * 7,44 km) + 14,00 € PKW"
|
||||
"22016359","17,11","0.00","18,02","R + S Aufzugbau GmbH","Herzbergstr. 87-99","10365, 12161","20,73","06:55 (06.05.)","15:32 (05.05.)","20,87","Herzbergstr.;87-99;10365;Berlin;DE|Südwestkorso;15a;12161;Berlin;DE","34,17 €","18,00 Km in zone_1_km (1,10 € * 18,34 km) + 14,00 € PKW"
|
||||
"22016057","17,11","0.00","18,02","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 10623","11,49","07:00 (06.05.)","07:39 (06.05.)","20,87","Gradestr.;46-50;12347;Berlin;DE|Kantstr.;165;10623;Berlin;DE","28,95 €","13,00 Km in zone_1_km (1,10 € * 13,59 km) + 14,00 € PKW"
|
||||
"22016541","17,11","0.00","18,02","PROSOL Lacke + Farben GmbH","Gaußstr. 17","10589, 14109","21,25","07:00 (06.05.)","06:31 (06.05.)","20,87","Gaußstr.;17;10589;Berlin;DE|Kohlhasenbrücker Straße;3;14109;Berlin;DE","37,38 €","21,00 Km in zone_1_km (1,10 € * 21,25 km) + 14,00 € PKW"
|
||||
"22016672","17,11","0.00","18,02","Brillux GmbH & Co. KG","Am Steinberg 15","13086, 10117","8,9","07:06 (06.05.)","08:44 (06.05.)","20,87","Am Steinberg;15;13086;Berlin;DE|Stresemannstr.;128;10117;Berlin;DE","24,44 €","9,00 Km in zone_1_km (1,10 € * 9,49 km) + 14,00 € PKW"
|
||||
"22016675","17,11","0.00","18,02","Schöne Transportbänder GmbH","Waldemarstr. 33","10999, 12357","13,49","07:10 (06.05.)","09:36 (06.05.)","20,87","Waldemarstr.;33;10999;Berlin;DE|Kanalstr.;139;12357;Berlin;DE","28,84 €","13,00 Km in zone_1_km (1,10 € * 13,49 km) + 14,00 € PKW"
|
||||
"22016691","17,11","0.00","18,02","GBAV","Gradestr. 83","12347, 12489","9,4","07:16 (06.05.)","12:21 (06.05.)","20,87","Gradestr.;83;12347;Berlin;DE|Justus-von-Liebig-Str.;4;12489;Berlin;DE","24,34 €","9,00 Km in zone_1_km (1,10 € * 9,40 km) + 14,00 € PKW"
|
||||
"22016699","17,11","0.00","18,02","MAN Truck & Bus Deutschland","Tempelhofer Weg 5","12099, 12277","6,7","07:19 (06.05.)","07:23 (06.05.)","20,87","Tempelhofer Weg;5;12099;Berlin;DE|Richard-Tauber-Damm;20;12277;Berlin;DE","21,37 €","6,00 Km in zone_1_km (1,10 € * 6,70 km) + 14,00 € PKW"
|
||||
"22016714","17,11","0.00","18,02","Femto Messtechnik GmbH","Klosterstr. 64","10179, 13435","13,41","07:23 (06.05.)","10:53 (06.05.)","20,87","Klosterstr.;64;10179;Berlin;DE|Luebarser Str.;40-46;13435;Berlin;DE","28,75 €","13,00 Km in zone_1_km (1,10 € * 13,41 km) + 14,00 € PKW"
|
||||
"22016763","17,11","0.00","18,02","JOP Handels- GmbH & Co. KG","Ringbahnstr. 10","12099, 12524","","07:41 (06.05.)","","20,87","Ringbahnstr.;10;12099;Berlin;DE|Weidenweg;4;12524;Berlin;DE","32,30 €","16,00 Km in zone_1_km (1,10 € * 15,11 km) + zone_2_km (1,10 € * 1,53 km) + 14,00 € PKW"
|
||||
"22015809","17,11","0.00","18,02","ZTB-CCM","Luisenstr. 7","10117, 12203","13,25","08:00 (06.05.)","09:40 (06.05.)","20,87","Luisenstr.;7;10117;Berlin;DE|Hindenburgdamm;30;12203;Berlin;DE","28,72 €","13,00 Km in zone_1_km (1,10 € * 13,38 km) + 14,00 € PKW"
|
||||
"22016825","17,11","0.00","18,02","Promess Fertigung GmbH","Nunsdorfer Ring 25","12277, 10969","12,55","08:05 (06.05.)","09:46 (06.05.)","20,87","Nunsdorfer Ring;25;12277;Berlin;DE|Gitschiner Str.;20-22;10969;Berlin;DE","27,79 €","12,00 Km in zone_1_km (1,10 € * 12,54 km) + 14,00 € PKW"
|
||||
"22016847","17,11","0.00","18,02","FR. Riepl, Birgitt","Dunckerstr. 80a","10437, 10179","4,63","08:14 (06.05.)","08:15 (06.05.)","20,87","Dunckerstr.;80a;10437;Berlin;DE|Littenstr.;12-17;10179;Berlin;DE","19,50 € [M]","4,00 Km in zone_1_km (1,10 € * 4,62 km) + 14,00 € PKW"
|
||||
"22016867","17,11","0.00","18,02","VBE Berlin-Mechanik GmbH","Lahnstr. 58","12055, 12099","4,36","08:18 (06.05.)","09:47 (06.05.)","20,87","Lahnstr.;58;12055;Berlin;DE|Rohdestraße;17;12099;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,47 km) + 14,00 € PKW"
|
||||
"22016914","17,11","0.00","18,02","CVK, Personalleitung","Augustenburger Platz 1","13353, 10557","3,47","08:28 (06.05.)","08:46 (06.05.)","20,87","Augustenburger Platz;1;13353;Berlin;DE|Klopstockstr.;14;10557;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,47 km) + 14,00 € PKW"
|
||||
"22016921","17,11","0.00","18,02","Brodersen & Schacht Berlin GmbH","Beusselstr. 44 n-q","10553, 10178","8,25","08:31 (06.05.)","11:08 (06.05.)","20,87","Beusselstr.;44 n-q;10553;Berlin;DE|Karl-Marx-Allee;31;10178;Berlin;DE","23,06 €","8,00 Km in zone_1_km (1,10 € * 8,24 km) + 14,00 € PKW"
|
||||
"22016961","17,11","0.00","18,02","Senatsverw. fuer Stadtentwicklung","Am Koellnischen Park 3","10179, 12101","5,21","08:43 (06.05.)","11:37 (06.05.)","20,87","Am Koellnischen Park;3;10179;Berlin;DE|Tempelhofer Damm;45;12101;Berlin;DE","19,72 €","5,00 Km in zone_1_km (1,10 € * 5,20 km) + 14,00 € PKW"
|
||||
"22016987","17,11","0.00","18,02","Fries Holz- und Bodensysteme GmbH","Waldstr. 16","13403, 13127","8,89","08:48 (06.05.)","08:49 (06.05.)","20,87","Waldstr.;16;13403;Berlin;DE|Marienstr.;7;13127;Berlin;DE","23,44 €","8,00 Km in zone_1_km (1,10 € * 8,58 km) + 14,00 € PKW"
|
||||
"22017006","17,11","0.00","18,02","Bst. AAS Aufzüge","Manfred-von-Richthofen-Str. 11","12101, 13359","","08:52 (06.05.)","12:25 (06.05.)","20,87","Manfred-von-Richthofen-Str.;11;12101;Berlin;DE|Osloer Str.;1;13359;Berlin;DE","25,45 €","10,00 Km in zone_1_km (1,10 € * 10,41 km) + 14,00 € PKW"
|
||||
"22017013","17,11","0.00","18,02","MAN Truck & Bus Deutschland GmbH","Nonnendammallee 1","13599, 13597","6,22","08:53 (06.05.)","09:56 (06.05.)","20,87","Nonnendammallee;1;13599;Berlin;DE|Freiheit;7;13597;Berlin;DE","20,83 €","6,00 Km in zone_1_km (1,10 € * 6,21 km) + 14,00 € PKW"
|
||||
"22017059","17,11","0.00","18,02","CVK, Personalleitung","Augustenburger Platz 1","13353, 13351","1,24","09:06 (06.05.)","09:06 (06.05.)","20,87","Augustenburger Platz;1;13353;Berlin;DE|Senegalstr.;16;13351;Berlin;DE","19,50 € [M]","1,00 Km in zone_1_km (1,10 € * 1,23 km) + 14,00 € PKW"
|
||||
"22017065","17,11","0.00","18,02","Irena Juskovic-Sacharowitz","Rönnestr. 5","14057, 10409","12,41","09:07 (06.05.)","11:03 (06.05.)","20,87","Rönnestr.;5;14057;Berlin;DE|Prenzlauer Allee;170;10409;Berlin;DE","27,64 €","12,00 Km in zone_1_km (1,10 € * 12,40 km) + 14,00 € PKW"
|
||||
"22017081","17,11","0.00","18,02","Dr. med. John Hartung","Schlossstr. 88","12163, 14057","7,91","09:10 (06.05.)","09:14 (06.05.)","20,87","Schlossstr.;88;12163;Berlin;DE|Kaiserdamm;31;14057;Berlin;DE","22,70 €","7,00 Km in zone_1_km (1,10 € * 7,91 km) + 14,00 € PKW"
|
||||
"22017118","17,11","0.00","18,02","Auto-Lack Center Moabit","Lise-Meitner-Str. 2","10589, 12203","18,09","09:20 (06.05.)","09:38 (06.05.)","20,87","Lise-Meitner-Str.;2;10589;Berlin;DE|Karwendelstr.;28c;12203;Berlin;DE","33,89 €","18,00 Km in zone_1_km (1,10 € * 18,08 km) + 14,00 € PKW"
|
||||
"22017120","17,11","0.00","18,02","Friedrich Niemann GmbH & Co. KG","Dederingstr. 4-6","12107, 10243","13,2","09:20 (06.05.)","10:53 (06.05.)","20,87","Dederingstr.;4-6;12107;Berlin;DE|Am Wriezener Bahnhof;1;10243;Berlin;DE","28,51 €","13,00 Km in zone_1_km (1,10 € * 13,19 km) + 14,00 € PKW"
|
||||
"22017144","17,11","0.00","18,02","Daimler Truck","Neudecker Weg 8","12355, 13627","","09:23 (06.05.)","09:23 (06.05.)","20,87","Neudecker Weg;8;12355;Berlin;DE|Saatwinkler Damm;19-21;13627;Berlin;DE","44,84 €","28,00 Km in zone_1_km (1,10 € * 28,04 km) + 14,00 € PKW"
|
||||
"22016356","17,11","0.00","18,02","M + K Dalink Stoffe GmbH","Brunsbuetteler Damm 175-177","13581, 14197","","09:30 (06.05.)","","20,87","Brunsbuetteler Damm;175-177;13581;Berlin;DE|Ruedesheimer Str.;4;14197;Berlin;DE","30,37 €","14,00 Km in zone_1_km (1,10 € * 14,88 km) + 14,00 € PKW"
|
||||
"22016988","17,11","0.00","18,02","traumhaft... schöne Dessous,","Reichsstr. 102","14052, 10409","14,49","09:30 (06.05.)","11:50 (06.05.)","20,87","Reichsstr.;102;14052;Berlin;DE|Ostseestr.;109;10409;Berlin;DE","29,79 €","14,00 Km in zone_1_km (1,10 € * 14,35 km) + 14,00 € PKW"
|
||||
"22017185","17,11","0.00","18,02","Illmann und Illmann","Gartenfelder Str. 27-33","13599, 10117","12,38","09:40 (06.05.)","10:06 (06.05.)","20,87","Gartenfelder Str.;27-33;13599;Berlin;DE|Glinkastr.;4;10117;Berlin;DE","27,61 €","12,00 Km in zone_1_km (1,10 € * 12,37 km) + 14,00 € PKW"
|
||||
"22017194","17,11","0.00","18,02","Klinikum Am Urban","Dieffenbachstr. 1","10967, 12157","","09:42 (06.05.)","","20,87","Dieffenbachstr.;1;10967;Berlin;DE|Rubensstr.;125;12157;Berlin;DE","24,60 €","9,00 Km in zone_1_km (1,10 € * 9,64 km) + 14,00 € PKW"
|
||||
"22017208","17,11","0.00","18,02","Baustelle","Trelleborger Str. 19","13189, 13509","10,22","09:47 (06.05.)","09:50 (06.05.)","20,87","Trelleborger Str.;19;13189;Berlin;DE|Wittestr.;30;13509;Berlin;DE","25,23 €","10,00 Km in zone_1_km (1,10 € * 10,21 km) + 14,00 € PKW"
|
||||
"22017218","17,11","0.00","18,02","BORSIG Process Heat Exchanger","Egellsstr. 21","13507, 10623","13,2","09:49 (06.05.)","10:06 (06.05.)","20,87","Egellsstr.;21;13507;Berlin;DE|Fasanenstr.;85;10623;Berlin;DE","28,47 €","13,00 Km in zone_1_km (1,10 € * 13,15 km) + 14,00 € PKW"
|
||||
"22011134","17,11","0.00","18,02","Caritasverband Berlin e. V.","Residenzstr. 90","13409, 13353","2,17","09:50 (06.05.)","09:22 (06.05.)","20,87","Residenzstr.;90;13409;Berlin;DE|Müllerstr.;146;13353;Berlin;DE","19,50 € [M]","2,00 Km in zone_1_km (1,10 € * 2,17 km) + 14,00 € PKW"
|
||||
"22017240","17,11","0.00","18,02","Frau Preiss","Rüdersdorfer Str. 40","10243, 10719","9,82","09:55 (06.05.)","11:31 (06.05.)","20,87","Rüdersdorfer Str.;40;10243;Berlin;DE|Knesebeckstr.;61;10719;Berlin;DE","25,62 €","10,00 Km in zone_1_km (1,10 € * 10,56 km) + 14,00 € PKW"
|
||||
"22017253","17,11","0.00","18,02","Seidlereisen","Gitschiner Straße 91","10969, 12099","8,57","09:58 (06.05.)","11:35 (06.05.)","20,87","Gitschiner Straße;91;10969;Berlin;DE|Colditzstr.;38-42;12099;Berlin;DE","23,43 €","8,00 Km in zone_1_km (1,10 € * 8,57 km) + 14,00 € PKW"
|
||||
"22013034","17,11","0.00","18,02","Beumer & Lutum GmbH Bio-Bäckerei","Zossener Str. 34","10961, 10787","","10:00 (06.05.)","","20,87","Zossener Str.;34;10961;Berlin;DE|Ahornstr.;5;10787;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,75 km) + 14,00 € PKW"
|
||||
"22015991","17,11","0.00","18,02","S + H Schaltanlagenbau GmbH","Lauenburger Str. 85","12169, 13353","19,67","10:00 (06.05.)","12:05 (06.05.)","20,87","Lauenburger Str.;85;12169;Berlin;DE|Fennstr.;22;13353;Berlin;DE","27,37 €","12,00 Km in zone_1_km (1,10 € * 12,15 km) + 14,00 € PKW"
|
||||
"22014566","17,11","0.00","18,02","Print Seven","Schöneberger Str. 13","12163, 10243","16,96","10:10 (06.05.)","13:55 (06.05.)","20,87","Schöneberger Str.;13;12163;Berlin;DE|Mühlenstr.;13-19;10243;Berlin;DE","27,37 €","12,00 Km in zone_1_km (1,10 € * 12,15 km) + 14,00 € PKW"
|
||||
"22017304","17,11","0.00","18,02","Fenster Durchblick GmbH","Eichborndamm 59","13403, 10787","12,91","10:12 (06.05.)","10:28 (06.05.)","20,87","Eichborndamm;59;13403;Berlin;DE|Budapester Str.;31;10787;Berlin;DE","31,77 €","16,00 Km in zone_1_km (1,10 € * 16,15 km) + 14,00 € PKW"
|
||||
"22017330","17,11","0.00","18,02","Reifenbestellung24 GmbH","Storkower Str. 145a","10407, 12203","18,42","10:20 (06.05.)","12:36 (06.05.)","20,87","Storkower Str.;145a;10407;Berlin;DE|Duererstr.;7;12203;Berlin;DE","34,53 €","18,00 Km in zone_1_km (1,10 € * 18,66 km) + 14,00 € PKW"
|
||||
"22017343","17,11","0.00","18,02","Museumstechnik Berlin","Kärntener Str. 21","10827, 14195","7,78","10:23 (06.05.)","13:01 (06.05.)","20,87","Kärntener Str.;21;10827;Berlin;DE|Im Schwarzen Grund;1;14195;Berlin;DE","22,56 €","7,00 Km in zone_1_km (1,10 € * 7,78 km) + 14,00 € PKW"
|
||||
"22017357","17,11","0.00","18,02","BV","Marienfelder Chaussee 171","12349, 12099","6,26","10:27 (06.05.)","10:29 (06.05.)","20,87","Marienfelder Chaussee;171;12349;Berlin;DE|Gottlieb-Dunkel-Str.;20-22;12099;Berlin;DE","20,89 €","6,00 Km in zone_1_km (1,10 € * 6,26 km) + 14,00 € PKW"
|
||||
"22017363","17,11","0.00","18,02","bito Depot Köpenick","Seelenbinderstraße 112-124","12555, 12437","9,54","10:30 (06.05.)","13:58 (06.05.)","20,87","Seelenbinderstraße;112-124;12555;Berlin;DE|Köpenicker Landstr.;151;12437;Berlin;DE","24,48 €","9,00 Km in zone_1_km (1,10 € * 9,53 km) + 14,00 € PKW"
|
||||
"22017398","17,11","0.00","18,02","FOTOREKLAME Gesellschaft für","Blomberger Weg 4 a","13437, 13086","12,44","10:38 (06.05.)","10:44 (06.05.)","20,87","Blomberger Weg;4 a;13437;Berlin;DE|Lehderstr.;39;13086;Berlin;DE","27,81 €","12,00 Km in zone_1_km (1,10 € * 12,55 km) + 14,00 € PKW"
|
||||
"22017410","17,11","0.00","18,02","PROSOL Lacke + Farben GmbH","Gaußstr. 17","10589, 14163","15,87","10:41 (06.05.)","10:51 (06.05.)","20,87","Gaußstr.;17;10589;Berlin;DE|Forststr.;7;14163;Berlin;DE","31,45 €","15,00 Km in zone_1_km (1,10 € * 15,86 km) + 14,00 € PKW"
|
||||
"22017416","17,11","0.00","18,02","Gallery Print","Nunsdorfer Ring 13","12277, 10785","13,05","10:43 (06.05.)","10:55 (06.05.)","20,87","Nunsdorfer Ring;13;12277;Berlin;DE|Potsdamer Str.;81E;10785;Berlin;DE","28,36 €","13,00 Km in zone_1_km (1,10 € * 13,05 km) + 14,00 € PKW"
|
||||
"22017440","17,11","0.00","18,02","Dipl.-Kfm. SUSANNE BIEK Steuer-","Bundesallee 110","12161, 14052","7,72","10:48 (06.05.)","14:09 (06.05.)","20,87","Bundesallee;110;12161;Berlin;DE|Heerstr.;18-20;14052;Berlin;DE","22,49 €","7,00 Km in zone_1_km (1,10 € * 7,72 km) + 14,00 € PKW"
|
||||
"22017444","17,11","0.00","18,02","Friedrich Niemann GmbH & Co. KG","Dederingstr. 4-6","12107, 12167","5,59","10:49 (06.05.)","14:27 (06.05.)","20,87","Dederingstr.;4-6;12107;Berlin;DE|Albrechtstr.;22-26;12167;Berlin;DE","20,15 €","5,00 Km in zone_1_km (1,10 € * 5,59 km) + 14,00 € PKW"
|
||||
"22017461","17,11","0.00","18,02","Günther Stern oHG","Ebersstr. 15a","10827, 10789","3,23","10:56 (06.05.)","11:54 (06.05.)","20,87","Ebersstr.;15a;10827;Berlin;DE|Tauentzienstr;21;10789;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,23 km) + 14,00 € PKW"
|
||||
"22017463","17,11","0.00","18,02","Robusta-Gaukel GmbH & Co. KG","Rohdestr. 19","12099, 10557","12,67","10:56 (06.05.)","14:13 (06.05.)","20,87","Rohdestr.;19;12099;Berlin;DE|Alt-Moabit;1;10557;Berlin;DE","27,94 €","12,00 Km in zone_1_km (1,10 € * 12,67 km) + 14,00 € PKW"
|
||||
"22017464","17,11","0.00","18,02","Kondius AG","Koenigsberger Str. 24","12207, 10707","11,21","10:57 (06.05.)","11:17 (06.05.)","20,87","Koenigsberger Str.;24;12207;Berlin;DE|Fehrbelliner Platz;2;10707;Berlin;DE","26,32 €","11,00 Km in zone_1_km (1,10 € * 11,20 km) + 14,00 € PKW"
|
||||
"22017478","17,11","0.00","18,02","braent GmbH","Plauener Str. 163-165","13053, 13156","12,56","10:59 (06.05.)","11:39 (06.05.)","20,87","Plauener Str.;163-165;13053;Berlin;DE|Schloßallee;9B;13156;Berlin;DE","27,82 €","12,00 Km in zone_1_km (1,10 € * 12,56 km) + 14,00 € PKW"
|
||||
"22017484","17,11","0.00","18,02","Friedrich Rohwedder Baumaschinen","Sachsenhauser Str. 12","12099, 14197","","11:00 (06.05.)","","20,87","Sachsenhauser Str.;12;12099;Berlin;DE|Mecklenburgische Str.;32;14197;Berlin;DE","22,58 €","7,00 Km in zone_1_km (1,10 € * 7,80 km) + 14,00 € PKW"
|
||||
"22017504","17,11","0.00","18,02","Zollamt Marzahn","Hellersdorfer Weg 35","12689, 12623","12,65","11:05 (06.05.)","11:13 (06.05.)","20,87","Hellersdorfer Weg;35;12689;Berlin;DE|Landsberger Str.;249;12623;Berlin;DE","27,92 €","12,00 Km in zone_1_km (1,10 € * 12,65 km) + 14,00 € PKW"
|
||||
"22017566","17,11","0.00","18,02","GA-Tec Gebäude- und Anlagen-","Lorenzweg 5","12099, 10719","11,79","11:27 (06.05.)","13:11 (06.05.)","20,87","Lorenzweg;5;12099;Berlin;DE|Uhlandstr.;30;10719;Berlin;DE","26,97 €","11,00 Km in zone_1_km (1,10 € * 11,79 km) + 14,00 € PKW"
|
||||
"22017588","17,11","0.00","18,02","Deubzer Architekten","Knesebeckstr. 77","10623, 10585","3,19","11:33 (06.05.)","11:33 (06.05.)","20,87","Knesebeckstr.;77;10623;Berlin;DE|Kaiser-Friedrich-Str.;4 a;10585;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,18 km) + 14,00 € PKW"
|
||||
"22017628","17,11","0.00","18,02","R + S Aufzugbau GmbH","Herzbergstr. 87-99","10365, 10777","15,36","11:45 (06.05.)","13:00 (06.05.)","20,87","Herzbergstr.;87-99;10365;Berlin;DE|Bamberger Str.;58;10777;Berlin;DE","31,06 €","15,00 Km in zone_1_km (1,10 € * 15,51 km) + 14,00 € PKW"
|
||||
"22017647","17,11","0.00","18,02","OBI GmbH & Co. Deutschland KG","Blankenburger Str. 86-92","13156, 13469","9,7","11:49 (06.05.)","14:03 (06.05.)","20,87","Blankenburger Str.;86-92;13156;Berlin;DE|Waidmannsluster Damm;190;13469;Berlin;DE","24,67 €","9,00 Km in zone_1_km (1,10 € * 9,70 km) + 14,00 € PKW"
|
||||
"22015894","17,11","0.00","18,02","IHK","Fasanenstr. 85","10623, 13507","12,06","12:00 (06.05.)","11:46 (06.05.)","20,87","Fasanenstr.;85;10623;Berlin;DE|Egellsstr.;21;13507;Berlin;DE","27,27 €","12,00 Km in zone_1_km (1,10 € * 12,06 km) + 14,00 € PKW"
|
||||
"22017685","17,11","0.00","18,02","Harry Gerlach Wohnungs-","Berliner Str. 120","10713, 12107","13,83","12:01 (06.05.)","12:11 (06.05.)","20,87","Berliner Str.;120;10713;Berlin;DE|Körtingstr.;61;12107;Berlin;DE","29,20 €","13,00 Km in zone_1_km (1,10 € * 13,82 km) + 14,00 € PKW"
|
||||
"22017700","17,11","0.00","18,02","bito aktiengesellschaft","Rudolf-Spitzley-Str. 14","13089, 13156","6,4","12:07 (06.05.)","12:49 (06.05.)","20,87","Rudolf-Spitzley-Str.;14;13089;Berlin;DE|Beuthstr.;38;13156;Berlin;DE","21,05 €","6,00 Km in zone_1_km (1,10 € * 6,41 km) + 14,00 € PKW"
|
||||
"22017705","17,11","0.00","18,02","Lindenblatt & Gottzmann","Quickborner Str. 40","13439, 13189","5,99","12:10 (06.05.)","12:11 (06.05.)","20,87","Quickborner Str.;40;13439;Berlin;DE|Berliner Str.;42;13189;Berlin;DE","20,58 €","6,00 Km in zone_1_km (1,10 € * 5,98 km) + 14,00 € PKW"
|
||||
"22017751","17,11","0.00","18,02","GBAV","Gradestr. 83","12347, 12489","","12:24 (06.05.)","","20,87","Gradestr.;83;12347;Berlin;DE|Justus-von-Liebig-Str.;4;12489;Berlin;DE","24,34 €","9,00 Km in zone_1_km (1,10 € * 9,40 km) + 14,00 € PKW"
|
||||
"22017758","17,11","0.00","18,02","JOP Handels- GmbH & Co.KG","Ringbahnstr. 10-14","12099, 10625","","12:28 (06.05.)","","20,87","Ringbahnstr.;10-14;12099;Berlin;DE|Kantstr.;131;10625;Berlin;DE","24,25 €","9,00 Km in zone_1_km (1,10 € * 9,32 km) + 14,00 € PKW"
|
||||
"22017761","17,11","0.00","18,02","Booh!Outfit GmbH","Paradiesstr. 214-218","12526, 10437","22,06","12:29 (06.05.)","14:34 (06.05.)","20,87","Paradiesstr.;214-218;12526;Berlin;DE|Cantianstr.;24;10437;Berlin;DE","38,26 €","22,00 Km in zone_1_km (1,10 € * 22,05 km) + 14,00 € PKW"
|
||||
"22017800","17,11","0.00","18,02","HKL Baumaschinen GmbH","Säntisstr. 61","12277, 12049","10,41","12:42 (06.05.)","12:59 (06.05.)","20,87","Säntisstr.;61;12277;Berlin;DE|Karlsgartenstr.;12;12049;Berlin;DE","25,44 €","10,00 Km in zone_1_km (1,10 € * 10,40 km) + 14,00 € PKW"
|
||||
"22017771","17,11","0.00","18,02","Berliner Schrauben GmbH","Prinzenstr. 86","10969, 12167","11,26","12:45 (06.05.)","13:10 (06.05.)","20,87","Prinzenstr.;86;10969;Berlin;DE|Albrechtstr.;19;12167;Berlin;DE","26,29 €","11,00 Km in zone_1_km (1,10 € * 11,17 km) + 14,00 € PKW"
|
||||
"22017689","17,11","0.00","18,02","Robert Karst GmbH & Co. KG","Motzener Str. 22","12277, 12359","11,53","13:05 (06.05.)","15:01 (06.05.)","20,87","Motzener Str.;22;12277;Berlin;DE|Woermannkehre;2;12359;Berlin;DE","26,68 €","11,00 Km in zone_1_km (1,10 € * 11,53 km) + 14,00 € PKW"
|
||||
"22017913","17,11","0.00","18,02","Dr. med. John Hartung","Schlossstr. 88","12163, 14057","","13:22 (06.05.)","","20,87","Schlossstr.;88;12163;Berlin;DE|Kaiserdamm;31;14057;Berlin;DE","22,70 €","7,00 Km in zone_1_km (1,10 € * 7,91 km) + 14,00 € PKW"
|
||||
"22016241","17,11","0.00","18,02","Trabrennbahn","Mariendorfer Damm 222-298","12107, 10997","0","13:30 (06.05.)","15:23 (06.05.)","20,87","Mariendorfer Damm;222-298;12107;Berlin;DE|Wrangelstr.;100;10997;Berlin;DE","ERROR","Adresse in 1. Station nicht ok"
|
||||
"22018087","17,11","0.00","18,02","CVK, Personalleitung","Augustenburger Platz 1","13353, 13507","7,78","14:18 (06.05.)","15:45 (06.05.)","20,87","Augustenburger Platz;1;13353;Berlin;DE|Eisenhammerweg;9;13507;Berlin;DE","22,56 €","7,00 Km in zone_1_km (1,10 € * 7,78 km) + 14,00 € PKW"
|
||||
"22018143","17,11","0.00","18,02","Praxis Dr. Eichhorn-Sens","Invalidenstr. 112","10115, 13509","9,97","14:44 (06.05.)","15:11 (06.05.)","20,87","Invalidenstr.;112;10115;Berlin;DE|Am Nordgraben;2;13509;Berlin;DE","24,97 €","10,00 Km in zone_1_km (1,10 € * 9,97 km) + 14,00 € PKW"
|
||||
"22018154","17,11","0.00","18,02","Blumen Insel","Suarezstr. 5","14057, 10625","1,1","14:47 (06.05.)","14:51 (06.05.)","20,87","Suarezstr.;5;14057;Berlin;DE|Bismarckstr.;99;10625;Berlin;DE","19,50 € [M]","1,00 Km in zone_1_km (1,10 € * 1,10 km) + 14,00 € PKW"
|
||||
"22017269","17,11","0.00","18,02","TU 9","Invalidenstr. 112","10115, 12681","15,66","16:00 (06.05.)","13:30 (06.05.)","20,87","Invalidenstr.;112;10115;Berlin;DE|Poelchaustr.;2;12681;Berlin;DE","31,23 €","15,00 Km in zone_1_km (1,10 € * 15,66 km) + 14,00 € PKW"
|
||||
"22017898","17,11","0.00","18,02","August Storck KG","Waldstr. 27","13403, 13507","2,85","17:00 (06.05.)","15:36 (06.05.)","20,87","Waldstr.;27;13403;Berlin;DE|Am Borsigturm;1;13507;Berlin;DE","19,50 € [M]","2,00 Km in zone_1_km (1,10 € * 2,84 km) + 14,00 € PKW"
|
||||
"22018410","17,11","0.00","18,02","Praxis Taskin","Neuendorfer Str. 100","13585 , 10829","0","17:03 (06.05.)","17:11 (06.05.)","20,87","Neuendorfer Str.;100;13585;Berlin;DE|Reichartstr.;2;10829;Berlin;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22015032","17,11","0.00","18,02","Krankenhaus Maria Heimsuchung","Breite Str. 46-47","13187, 13353","8,53","07:00 (07.05.)","08:11 (07.05.)","20,87","Breite Str.;46-47;13187;Berlin;DE|Sylter Str.;2;13353;Berlin;DE","22,71 €","7,00 Km in zone_1_km (1,10 € * 7,92 km) + 14,00 € PKW"
|
||||
"22016168","17,11","0.00","18,02","Humboldt-Klinikum","Am Nordgraben 2","13509, 10789","17,91","07:00 (07.05.)","16:24 (06.05.)","20,87","Am Nordgraben;2;13509;Berlin;DE|Rankestr.;34;10789;Berlin;DE","33,70 €","17,00 Km in zone_1_km (1,10 € * 17,91 km) + 14,00 € PKW"
|
||||
"22017839","17,11","0.00","18,02","WSK Andreas Klein","Am Gewerbepark 5","12683, 10178","12,57","07:00 (07.05.)","10:09 (07.05.)","20,87","Am Gewerbepark;5;12683;Berlin;DE|Keibelstr.;36;10178;Berlin;DE","27,83 €","12,00 Km in zone_1_km (1,10 € * 12,57 km) + 14,00 € PKW"
|
||||
"22018343","17,11","0.00","18,02","PROSOL Lacke + Farben GmbH","Gaußstr. 17","10589, 13403","7,27","07:00 (07.05.)","08:04 (07.05.)","20,87","Gaußstr.;17;10589;Berlin;DE|Waldstraße;27;13403;Berlin;DE","22,00 €","7,00 Km in zone_1_km (1,10 € * 7,27 km) + 14,00 € PKW"
|
||||
"22018359","17,11","0.00","18,02","Wohnort Fahrer",". .","12627, 12681","0","07:00 (07.05.)","16:29 (06.05.)","20,87",".;.;12627;Berlin;DE|Boxberger Str.;3;12681;Berlin;DE","ERROR","Adresse in 1. Station nicht ok"
|
||||
"22018535","17,11","0.00","18,02","Dachdecker-Einkauf Ost eG","Ostpreußendamm 143","12207, 12043","15,91","07:04 (07.05.)","07:36 (07.05.)","20,87","Ostpreußendamm;143;12207;Berlin;DE|Kirchgasse;62;12043;Berlin;DE","30,54 €","15,00 Km in zone_1_km (1,10 € * 15,04 km) + 14,00 € PKW"
|
||||
"22018546","17,11","0.00","18,02","bito aktiengesellschaft","Rudolf-Spitzley-Str. 14","13089, 10999","10,77","07:12 (07.05.)","07:45 (07.05.)","20,87","Rudolf-Spitzley-Str.;14;13089;Berlin;DE|Reichenberger Str.;114;10999;Berlin;DE","25,86 €","10,00 Km in zone_1_km (1,10 € * 10,78 km) + 14,00 € PKW"
|
||||
"22018557","17,11","0.00","18,02","Sandschulz","Kienhorststr. 55","13403, 10785","10,41","07:16 (07.05.)","07:16 (07.05.)","20,87","Kienhorststr.;55;13403;Berlin;DE|Sigismundstr.;7-8;10785;Berlin;DE","25,44 €","10,00 Km in zone_1_km (1,10 € * 10,40 km) + 14,00 € PKW"
|
||||
"22018332","17,11","0.00","18,02","Friedrich Niemann GmbH & Co. KG","Dederingstr. 4-6","12107, 14197","13,85","07:30 (07.05.)","08:11 (07.05.)","20,87","Dederingstr.;4-6;12107;Berlin;DE|Mecklenburgische Str.;32;14197;Berlin;DE","25,77 €","10,00 Km in zone_1_km (1,10 € * 10,70 km) + 14,00 € PKW"
|
||||
"22018607","17,11","0.00","18,02","MAN Truck & Bus Deutschland","Tempelhofer Weg 5","12099, 12277","6,7","07:35 (07.05.)","08:25 (07.05.)","20,87","Tempelhofer Weg;5;12099;Berlin;DE|Richard-Tauber-Damm;20;12277;Berlin;DE","21,37 €","6,00 Km in zone_1_km (1,10 € * 6,70 km) + 14,00 € PKW"
|
||||
"22018621","17,11","0.00","18,02","Harry Brot GmbH","Wolfener Str. 14","12681, 13088","7,65","07:39 (07.05.)","07:41 (07.05.)","20,87","Wolfener Str.;14;12681;Berlin;DE|An der Industriebahn;5;13088;Berlin;DE","22,42 €","7,00 Km in zone_1_km (1,10 € * 7,65 km) + 14,00 € PKW"
|
||||
"22018634","17,11","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Industriestr. 15","12099, 12057","8,72","07:44 (07.05.)","07:45 (07.05.)","20,87","Industriestr.;15;12099;Berlin;DE|Nobelstr.;1;12057;Berlin;DE","21,60 €","6,00 Km in zone_1_km (1,10 € * 6,91 km) + 14,00 € PKW"
|
||||
"22017362","17,11","0.00","18,02","Sperling Reinigungstechnik GmbH","General-Pape-Str. 2","12101, 10559","16,59","08:00 (07.05.)","09:19 (07.05.)","20,87","General-Pape-Str.;2;12101;Berlin;DE|Quitzowstr.;33;10559;Berlin;DE","23,77 €","8,00 Km in zone_1_km (1,10 € * 8,88 km) + 14,00 € PKW"
|
||||
"22017977","17,11","0.00","18,02","Sanierungsservice Klamann","Landsberger Str. 230","12623, 13086","17,07","08:00 (07.05.)","08:03 (07.05.)","20,87","Landsberger Str.;230;12623;Berlin;DE|Strasse 206 Nr.;14;13086;Berlin;DE","32,78 €","17,00 Km in zone_1_km (1,10 € * 17,07 km) + 14,00 € PKW"
|
||||
"22018304","17,11","0.00","18,02","Fa. Liftmode Brandenburg","Schmalenbach Str. 12","12057, 14052","18,55","08:00 (07.05.)","08:34 (07.05.)","20,87","Schmalenbach Str.;12;12057;Berlin;DE|Reichsstr.;53;14052;Berlin;DE","36,56 €","20,00 Km in zone_1_km (1,10 € * 20,51 km) + 14,00 € PKW"
|
||||
"22018747","17,11","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Coppistr. 5","10365, 10997","","08:19 (07.05.)","","20,87","Coppistr.;5;10365;Berlin;DE|Muskauerstraße;10;10997;Berlin;DE","19,82 €","5,00 Km in zone_1_km (1,10 € * 5,29 km) + 14,00 € PKW"
|
||||
"22018766","17,11","0.00","18,02","Mosaik - Berlin","Askanierring 155","13585, 13587","","08:25 (07.05.)","","20,87","Askanierring;155;13585;Berlin;DE|Rauchstr.;42 b;13587;Berlin;DE","19,50 € [M]","4,00 Km in zone_1_km (1,10 € * 4,37 km) + 14,00 € PKW"
|
||||
"22018767","17,11","0.00","18,02","Fuhrbetrieb Karlheinz Fröhlich","Kärntener Str. 15-16","10827, 10969","5,52","08:25 (07.05.)","08:39 (07.05.)","20,87","Kärntener Str.;15-16;10827;Berlin;DE|Hedemannstr.;13;10969;Berlin;DE","20,06 €","5,00 Km in zone_1_km (1,10 € * 5,51 km) + 14,00 € PKW"
|
||||
"22018799","17,11","0.00","18,02","Vivantes Humbolt-Klinikum","Am Nordgraben 2","13509, 10115","9,99","08:32 (07.05.)","08:33 (07.05.)","20,87","Am Nordgraben;2;13509;Berlin;DE|Invalidenstr.;112;10115;Berlin;DE","25,45 €","10,00 Km in zone_1_km (1,10 € * 10,41 km) + 14,00 € PKW"
|
||||
"22018811","17,11","0.00","18,02","Galvanisierung Karl Kunze","Boppstr. 6","10967, 13407","14,78","08:34 (07.05.)","08:35 (07.05.)","20,87","Boppstr.;6;10967;Berlin;DE|Roedernallee;8;13407;Berlin;DE","30,25 €","14,00 Km in zone_1_km (1,10 € * 14,77 km) + 14,00 € PKW"
|
||||
"22018822","17,11","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Wiebestr. 12-18","10553, 12207","20,89","08:37 (07.05.)","09:18 (07.05.)","20,87","Wiebestr.;12-18;10553;Berlin;DE|Wismarer Str.;19;12207;Berlin;DE","36,97 €","20,00 Km in zone_1_km (1,10 € * 20,88 km) + 14,00 € PKW"
|
||||
"22018849","17,11","0.00","18,02","röber","Genter Str. 10","13353, 10717","13,27","08:44 (07.05.)","09:05 (07.05.)","20,87","Genter Str.;10;13353;Berlin;DE|Pfalzburger Str;43-44;10717;Berlin;DE","28,54 €","13,00 Km in zone_1_km (1,10 € * 13,22 km) + 14,00 € PKW"
|
||||
"22018853","17,11","0.00","18,02","GMT Kundendienst GmbH","Werdauer Weg 18","10829, 13353","","08:45 (07.05.)","","20,87","Werdauer Weg;18;10829;Berlin;DE|Tegeler Str.;28 a;13353;Berlin;DE","23,92 €","9,00 Km in zone_1_km (1,10 € * 9,02 km) + 14,00 € PKW"
|
||||
"22018884","17,11","0.00","18,02","Blumen Hübner am Bayerischen Platz","Bayerischer Platz 6","10779, 14169","10,64","08:52 (07.05.)","08:55 (07.05.)","20,87","Bayerischer Platz;6;10779;Berlin;DE|Riemeisterstr.;45;14169;Berlin;DE","25,69 €","10,00 Km in zone_1_km (1,10 € * 10,63 km) + 14,00 € PKW"
|
||||
"22018906","17,11","0.00","18,02","Frisch & Faust Tiefbau GmbH","Buchholzer Str. 32","13156, 10407","8,38","08:59 (07.05.)","09:02 (07.05.)","20,87","Buchholzer Str.;32;13156;Berlin;DE|Bernhard-Lichtenberg-Straße;16;10407;Berlin;DE","23,55 €","8,00 Km in zone_1_km (1,10 € * 8,68 km) + 14,00 € PKW"
|
||||
"22018078","17,11","0.00","18,02","Caritasverband Berlin e. V.","Residenzstr. 90","13409, 10707","12,93","09:00 (07.05.)","08:41 (07.05.)","20,87","Residenzstr.;90;13409;Berlin;DE|Brandenburgische Str.;36;10707;Berlin;DE","28,22 €","12,00 Km in zone_1_km (1,10 € * 12,93 km) + 14,00 € PKW"
|
||||
"22018650","17,11","0.00","18,02","Hans Timm Fensterbau GmbH &","Motzener Str. 10","12277, 10405","","09:00 (07.05.)","","20,87","Motzener Str.;10;12277;Berlin;DE|Prenzlauer Allee;7b;10405;Berlin;DE","31,63 €","16,00 Km in zone_1_km (1,10 € * 16,03 km) + 14,00 € PKW"
|
||||
"22018932","17,11","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Wiebestr. 12-18","10553, 10787","3,91","09:06 (07.05.)","09:07 (07.05.)","20,87","Wiebestr.;12-18;10553;Berlin;DE|Landgrafenstr.;3;10787;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,90 km) + 14,00 € PKW"
|
||||
"22018944","17,11","0.00","18,02","ERCO Leuchten GmbH","Reichenberger Str. 113a","10999, 10997","2,35","09:10 (07.05.)","11:12 (07.05.)","20,87","Reichenberger Str.;113a;10999;Berlin;DE|Schlesische Str.;27;10997;Berlin;DE","19,50 € [M]","2,00 Km in zone_1_km (1,10 € * 2,35 km) + 14,00 € PKW"
|
||||
"22018945","17,11","0.00","18,02","CVK, Personalleitung","Augustenburger Platz 1","13353, 13351","1,24","09:11 (07.05.)","09:49 (07.05.)","20,87","Augustenburger Platz;1;13353;Berlin;DE|Senegalstr.;16;13351;Berlin;DE","19,50 € [M]","1,00 Km in zone_1_km (1,10 € * 1,23 km) + 14,00 € PKW"
|
||||
"22018949","17,11","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Wiebestr. 12-18","10553, 12099","18,79","09:12 (07.05.)","09:14 (07.05.)","20,87","Wiebestr.;12-18;10553;Berlin;DE|Industriestr.;15;12099;Berlin;DE","34,66 €","18,00 Km in zone_1_km (1,10 € * 18,78 km) + 14,00 € PKW"
|
||||
"22018968","17,11","0.00","18,02","Inventory Systems GmbH","Theodor-Heuss-Platz 8","14052, 10963","8,89","09:16 (07.05.)","09:17 (07.05.)","20,87","Theodor-Heuss-Platz;8;14052;Berlin;DE|Bernburger Str.;32;10963;Berlin;DE","23,77 €","8,00 Km in zone_1_km (1,10 € * 8,88 km) + 14,00 € PKW"
|
||||
"22019029","17,11","0.00","18,02","Nordberliner Werkgemeinschaft gGmbH","Triftstr. 36","13127, 13347","10,46","09:27 (07.05.)","13:17 (07.05.)","20,87","Triftstr.;36;13127;Berlin;DE|Hochstädter Str.;1;13347;Berlin;DE","25,51 €","10,00 Km in zone_1_km (1,10 € * 10,46 km) + 14,00 € PKW"
|
||||
"22019053","17,11","0.00","18,02","OTEK GmbH","Köpenicker Str. 147","10997, 13407","11,7","09:32 (07.05.)","11:27 (07.05.)","20,87","Köpenicker Str.;147;10997;Berlin;DE|Roedernallee;174-175;13407;Berlin;DE","26,87 €","11,00 Km in zone_1_km (1,10 € * 11,70 km) + 14,00 € PKW"
|
||||
"22019091","17,11","0.00","18,02","SSP Informationssysteme GmbH","Nicolaistr. 9-11","12247, 10115","14,13","09:42 (07.05.)","11:02 (07.05.)","20,87","Nicolaistr.;9-11;12247;Berlin;DE|Bergstr.;63;10115;Berlin;DE","29,53 €","14,00 Km in zone_1_km (1,10 € * 14,12 km) + 14,00 € PKW"
|
||||
"22019123","17,11","0.00","18,02","Cantas Fördertechnik GmbH","Waldemarstr. 33","10999, 10117","2,91","09:49 (07.05.)","11:13 (07.05.)","20,87","Waldemarstr.;33;10999;Berlin;DE|Charlottenstrasse;33/33a;10117;Berlin;DE","19,50 € [M]","2,00 Km in zone_1_km (1,10 € * 2,91 km) + 14,00 € PKW"
|
||||
"22019126","17,11","0.00","18,02","Lücking Innenausbau","Holzstr. 6","13359, 10365","10,46","09:49 (07.05.)","09:58 (07.05.)","20,87","Holzstr.;6;13359;Berlin;DE|Josef-Orlopp-Str.;54;10365;Berlin;DE","25,50 €","10,00 Km in zone_1_km (1,10 € * 10,45 km) + 14,00 € PKW"
|
||||
"22017391","17,11","0.00","18,02","Bacco Bäckerei","Annenstr. 48","10179, 10249","4,85","09:50 (07.05.)","09:27 (07.05.)","20,87","Annenstr.;48;10179;Berlin;DE|Hermann-Blankenstein-Str.;30;10249;Berlin;DE","19,50 € [M]","4,00 Km in zone_1_km (1,10 € * 4,82 km) + 14,00 € PKW"
|
||||
"22019131","17,11","0.00","18,02","Europa Gewürze","Neuköllnische Allee 104","12057, 14052","16,94","09:52 (07.05.)","10:19 (07.05.)","20,87","Neuköllnische Allee;104;12057;Berlin;DE|Heerstr.;24;14052;Berlin;DE","32,65 €","17,00 Km in zone_1_km (1,10 € * 16,95 km) + 14,00 € PKW"
|
||||
"22018276","17,11","0.00","18,02","Plan B Pflegeschule des","Borkumstr. 2","13189, 10559","7,49","10:00 (07.05.)","10:51 (07.05.)","20,87","Borkumstr.;2;13189;Berlin;DE|Turmstr.;21;10559;Berlin;DE","22,24 €","7,00 Km in zone_1_km (1,10 € * 7,49 km) + 14,00 € PKW"
|
||||
"22019138","17,11","0.00","18,02","AWO Kreisverband","Hochstädter Str. 1","13347, 14057","9,86","10:00 (07.05.)","09:57 (07.05.)","20,87","Hochstädter Str.;1;13347;Berlin;DE|Kaiserdamm;3;14057;Berlin;DE","24,84 €","9,00 Km in zone_1_km (1,10 € * 9,85 km) + 14,00 € PKW"
|
||||
"22019174","17,11","0.00","18,02","Media Markt TV-Hifi-Elektro GmbH","Grunerstr. 20","10179, 13051","8,78","10:00 (07.05.)","12:15 (07.05.)","20,87","Grunerstr.;20;10179;Berlin;DE|Prerower Platz;1;13051;Berlin;DE","23,65 €","8,00 Km in zone_1_km (1,10 € * 8,77 km) + 14,00 € PKW"
|
||||
"22019180","17,11","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Wiebestr. 12-18","10553, 10629","4,54","10:01 (07.05.)","10:03 (07.05.)","20,87","Wiebestr.;12-18;10553;Berlin;DE|Droysenstr.;13;10629;Berlin;DE","19,50 € [M]","4,00 Km in zone_1_km (1,10 € * 4,53 km) + 14,00 € PKW"
|
||||
"22019193","17,11","0.00","18,02","BORSIG Process Heat Exchanger","Egellsstr. 21","13507, 10623","13,2","10:04 (07.05.)","10:38 (07.05.)","20,87","Egellsstr.;21;13507;Berlin;DE|Fasanenstr.;85;10623;Berlin;DE","28,47 €","13,00 Km in zone_1_km (1,10 € * 13,15 km) + 14,00 € PKW"
|
||||
"22019206","17,11","0.00","18,02","culture4life GmbH","Rotherstr. 20","10245, 14055","22,69","10:08 (07.05.)","10:10 (07.05.)","20,87","Rotherstr.;20;10245;Berlin;DE|Eichkampstr.;155;14055;Berlin;DE","34,71 €","18,00 Km in zone_1_km (1,10 € * 18,83 km) + 14,00 € PKW"
|
||||
"22019247","17,11","0.00","18,02","Wollenberg Sicherheits- und Fenster","Wupperstr. 10","14167, 10709","0","10:21 (07.05.)","10:40 (07.05.)","20,87","Wupperstr.;10;14167;Berlin;DE|Hochmeisterplatz;1;10709;Berlin;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22019252","17,11","0.00","18,02","B. Braun Melsungen AG","Sieversufer 8","12359, 10965","7,55","10:22 (07.05.)","10:54 (07.05.)","20,87","Sieversufer;8;12359;Berlin;DE|Heimstr.;9;10965;Berlin;DE","20,88 €","6,00 Km in zone_1_km (1,10 € * 6,25 km) + 14,00 € PKW"
|
||||
"22019280","17,11","0.00","18,02","minimum einrichten GmbH","Kantstr. 17","10623, 10969","5,97","10:31 (07.05.)","10:34 (07.05.)","20,87","Kantstr.;17;10623;Berlin;DE|Friedrichstr.;23a;10969;Berlin;DE","20,57 €","6,00 Km in zone_1_km (1,10 € * 5,97 km) + 14,00 € PKW"
|
||||
"22019362","17,11","0.00","18,02","Erich Weit GmbH","Colditzstr. 38-42","12099, 10589","17,42","10:54 (07.05.)","12:13 (07.05.)","20,87","Colditzstr.;38-42;12099;Berlin;DE|Tauroggener Straße;41;10589;Berlin;DE","29,24 €","13,00 Km in zone_1_km (1,10 € * 13,85 km) + 14,00 € PKW"
|
||||
"22019371","17,11","0.00","18,02","Erich Weit GmbH","Colditzstr. 38-42","12099, 10589","","10:56 (07.05.)","","20,87","Colditzstr.;38-42;12099;Berlin;DE|Tauroggener Straße;41;10589;Berlin;DE","29,24 €","13,00 Km in zone_1_km (1,10 € * 13,85 km) + 14,00 € PKW"
|
||||
"22018434","17,11","0.00","18,02","Juwelier Fidan","Behrenstr. 28","10117, 13347","3,73","11:00 (07.05.)","14:20 (07.05.)","20,87","Behrenstr.;28;10117;Berlin;DE|Reinickendorfer Str.;11;13347;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,73 km) + 14,00 € PKW"
|
||||
"22019388","17,11","0.00","18,02","Palm","Ringbahnstr. 50","12099, 14167","13,37","11:00 (07.05.)","12:48 (07.05.)","20,87","Ringbahnstr.;50;12099;Berlin;DE|Goerzallee;309;14167;Berlin;DE","28,70 €","13,00 Km in zone_1_km (1,10 € * 13,36 km) + 14,00 € PKW"
|
||||
"22019441","17,11","0.00","18,02","Berliner Schrauben GmbH","Prinzenstr. 86","10969, 12524","","11:30 (07.05.)","","20,87","Prinzenstr.;86;10969;Berlin;DE|Bohnsdorfer Weg;105-119;12524;Berlin;DE","32,03 €","16,00 Km in zone_1_km (1,10 € * 16,39 km) + 14,00 € PKW"
|
||||
"22019517","17,11","0.00","18,02","Neubauer Holz & Baustoffe","Mariendorfer Damm 162","12107, 10559","12,19","11:35 (07.05.)","11:43 (07.05.)","20,87","Mariendorfer Damm;162;12107;Berlin;DE|Alt-Moabit;19;10559;Berlin;DE","27,40 €","12,00 Km in zone_1_km (1,10 € * 12,18 km) + 14,00 € PKW"
|
||||
"22019536","17,11","0.00","18,02","Harry Gerlach Wohnungs-","Berliner Str. 120","10713, 12049","12,13","11:42 (07.05.)","11:42 (07.05.)","20,87","Berliner Str.;120;10713;Berlin;DE|Hermannstr.;73;12049;Berlin;DE","26,42 €","11,00 Km in zone_1_km (1,10 € * 11,29 km) + 14,00 € PKW"
|
||||
"22019572","17,11","0.00","18,02","Fritz Bergmann Reprografie GmbH","Schloßstr. 66","12165, 10407","14,19","11:55 (07.05.)","12:20 (07.05.)","20,87","Schloßstr.;66;12165;Berlin;DE|Käthe-Niederkirchner-Str.;34;10407;Berlin;DE","30,05 €","14,00 Km in zone_1_km (1,10 € * 14,59 km) + 14,00 € PKW"
|
||||
"22017221","17,11","0.00","18,02","IHK BERLIN","Fasanenstr. 85","10623, 13507","12,06","12:00 (07.05.)","11:32 (07.05.)","20,87","Fasanenstr.;85;10623;Berlin;DE|Egellsstr.;21;13507;Berlin;DE","27,27 €","12,00 Km in zone_1_km (1,10 € * 12,06 km) + 14,00 € PKW"
|
||||
"22019605","17,11","0.00","18,02","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 12555","15,68","12:06 (07.05.)","13:45 (07.05.)","20,87","Gradestr.;46-50;12347;Berlin;DE|Bahnhofstr.;33-38;12555;Berlin;DE","31,24 €","15,00 Km in zone_1_km (1,10 € * 15,67 km) + 14,00 € PKW"
|
||||
"22019624","17,11","0.00","18,02","W&L Jordan","Sophie-Charlotten-Straße 4b","14059, 13353","7,08","12:14 (07.05.)","12:34 (07.05.)","20,87","Sophie-Charlotten-Straße;4b;14059;Berlin;DE|Seestraße;13;13353;Berlin;DE","21,79 €","7,00 Km in zone_1_km (1,10 € * 7,08 km) + 14,00 € PKW"
|
||||
"22019470","17,11","0.00","18,02","Prosol Lacke+Farben GmbH","Nalepastraße 208","12459, 10367","9,45","12:30 (07.05.)","12:55 (07.05.)","20,87","Nalepastraße;208;12459;Berlin;DE|Vulkanstr.;13;10367;Berlin;DE","24,38 €","9,00 Km in zone_1_km (1,10 € * 9,44 km) + 14,00 € PKW"
|
||||
"22019759","17,11","0.00","18,02","Strahlfix Lackiererei GmbH","Treptower Str. 40","12059, 12526","15,54","13:02 (07.05.)","15:34 (07.05.)","20,87","Treptower Str.;40;12059;Berlin;DE|Alexander-Meißner-Str.;36;12526;Berlin;DE","30,21 €","14,00 Km in zone_1_km (1,10 € * 14,74 km) + 14,00 € PKW"
|
||||
"22019767","17,11","0.00","18,02","Arnold Kuthe Managementservice","Brunsbütteler Damm 138","13581, 10785","16,5","13:04 (07.05.)","13:04 (07.05.)","20,87","Brunsbütteler Damm;138;13581;Berlin;DE|Potsdamer Str.;96;10785;Berlin;DE","34,68 €","18,00 Km in zone_1_km (1,10 € * 18,80 km) + 14,00 € PKW"
|
||||
"22019768","17,11","0.00","18,02","Futura GmbH","Ruhlebener Str. 128","13597, 13599","5,72","13:05 (07.05.)","13:36 (07.05.)","20,87","Ruhlebener Str.;128;13597;Berlin;DE|Olga-Tschechowa-Str.;10;13599;Berlin;DE","20,29 €","5,00 Km in zone_1_km (1,10 € * 5,72 km) + 14,00 € PKW"
|
||||
"22019781","17,11","0.00","18,02","Stadtbote Berlin","Colditzstr. 33","12099, 13627","16,75","13:09 (07.05.)","14:09 (07.05.)","20,87","Colditzstr.;33;12099;Berlin;DE|Wirmerzeile;1;13627;Berlin;DE","32,59 €","16,00 Km in zone_1_km (1,10 € * 16,90 km) + 14,00 € PKW"
|
||||
"22019703","17,11","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Industriestr. 15","12099, 14195","13,89","13:30 (07.05.)","13:29 (07.05.)","20,87","Industriestr.;15;12099;Berlin;DE|Bitterstr.;24;14195;Berlin;DE","29,27 €","13,00 Km in zone_1_km (1,10 € * 13,88 km) + 14,00 € PKW"
|
||||
"22019384","17,11","0.00","18,02","KC Immobilien","Ansbacher Str. 39","10777, 14193","","13:45 (07.05.)","13:18 (07.05.)","20,87","Ansbacher Str.;39;10777;Berlin;DE|Höhmannstr.;4;14193;Berlin;DE","21,44 €","6,00 Km in zone_1_km (1,10 € * 6,76 km) + 14,00 € PKW"
|
||||
"22019892","17,11","0.00","18,02","W. & L. Jordan GmbH","Sophie-Charlotten-Str. 4b","14059, 13581","","13:45 (07.05.)","","20,87","Sophie-Charlotten-Str.;4b;14059;Berlin;DE|Prisdorfer Str.;22;13581;Berlin;DE","24,95 €","10,00 Km in zone_1_km (1,10 € * 9,95 km) + 14,00 € PKW"
|
||||
"22019937","17,11","0.00","18,02","NORDSEE GmbH","Schloßstr. 23","12163, 10178","13,7","13:57 (07.05.)","13:58 (07.05.)","20,87","Schloßstr.;23;12163;Berlin;DE|Spandauer Str.;4;10178;Berlin;DE","29,07 €","13,00 Km in zone_1_km (1,10 € * 13,70 km) + 14,00 € PKW"
|
||||
"22019873","17,11","0.00","18,02","Martin-Luther-Krankenhaus-","Caspar-Theyß-Str. 33","14193, 13589","19,06","14:45 (07.05.)","15:40 (07.05.)","20,87","Caspar-Theyß-Str.;33;14193;Berlin;DE|Stadtrandstr.;555;13589;Berlin;DE","32,68 €","17,00 Km in zone_1_km (1,10 € * 16,98 km) + 14,00 € PKW"
|
||||
"22019454","17,11","0.00","18,02","MAN Truck & Bus Deutschland","Nonnendammallee 1","13599, 13627","3,67","15:00 (07.05.)","11:18 (07.05.)","20,87","Nonnendammallee;1;13599;Berlin;DE|Nikolaus-Gross-Weg;2;13627;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,67 km) + 14,00 € PKW"
|
||||
"22020195","17,11","0.00","18,02","Optik","Benzstr. 40-46","12277, 10435","15,74","15:23 (07.05.)","16:43 (07.05.)","20,87","Benzstr.;40-46;12277;Berlin;DE|Sredzkistr.;23;10435;Berlin;DE","31,60 €","16,00 Km in zone_1_km (1,10 € * 16,00 km) + 14,00 € PKW"
|
||||
"22002153","17,11","0.00","18,02","Metropolitan Aesthetics","Charlottenstr. 62","10117, 10365","8,22","16:00 (07.05.)","15:30 (07.05.)","20,87","Charlottenstr.;62;10117;Berlin;DE|Fanninger Str.;32;10365;Berlin;DE","23,19 €","8,00 Km in zone_1_km (1,10 € * 8,35 km) + 14,00 € PKW"
|
||||
"22012940","16,77","0.00","18","Raab Karcher Baustoffhandel","Liebermannstraße 3","13088, 10557","11,19","10:00 (05.05.)","11:08 (05.05.)","20,45","Liebermannstraße;3;13088;Berlin;DE|Calvinstr.;22;10557;Berlin;DE","26,16 €","11,00 Km in zone_1_km (1,10 € * 11,05 km) + 14,00 € PKW"
|
||||
"22015422","16,77","0.00","18","Remmers Service Center Berlin","Buchholzer Str. 47","13156, 13357","6,17","11:30 (05.05.)","11:19 (05.05.)","20,45","Buchholzer Str.;47;13156;Berlin;DE|Pankstr.;49;13357;Berlin;DE","20,79 €","6,00 Km in zone_1_km (1,10 € * 6,17 km) + 14,00 € PKW"
|
||||
"22016870","16,77","0.00","18","Raab Karcher Baustoffhandel","Kanalstr. 55","12357, 12487","3,73","08:20 (06.05.)","10:42 (06.05.)","20,45","Kanalstr.;55;12357;Berlin;DE|Groß-Berliner-Damm;84;12487;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,73 km) + 14,00 € PKW"
|
||||
"22018162","16,77","0.00","18","Raab Karcher - Zentral-Dispo","Kanalstr. 55","12357, 12047","10,25","08:00 (07.05.)","10:40 (07.05.)","20,45","Kanalstr.;55;12357;Berlin;DE|Reuterstr.;40;12047;Berlin;DE","24,93 €","9,00 Km in zone_1_km (1,10 € * 9,94 km) + 14,00 € PKW"
|
||||
"22013923","16,6","0.00","17,98","VereinsService GbR","Bismarckstr. 99","10625, 13407","7,98","10:00 (05.05.)","10:01 (05.05.)","20,24","Bismarckstr.;99;10625;Berlin;DE|Rütlistr.;17;13407;Berlin;DE","22,78 €","8,00 Km in zone_1_km (1,10 € * 7,98 km) + 14,00 € PKW"
|
||||
"22018673","16,6","0.00","17,98","Wolanski GmbH","Am Stichkanal 24","14167, 12277","9,24","07:59 (07.05.)","08:25 (07.05.)","20,24","Am Stichkanal;24;14167;Berlin;DE|Fritz-Werner-Str.;74;12277;Berlin;DE","24,16 €","9,00 Km in zone_1_km (1,10 € * 9,24 km) + 14,00 € PKW"
|
||||
"22015571","16,12","0.00","18,01","Mercedes-Benz AG","Salzufer 1","10587, 13405","6,86","10:57 (05.05.)","12:07 (05.05.)","19,66","Salzufer;1;10587;Berlin;DE|Scharnweberstr.;14;13405;Berlin;DE","21,55 €","6,00 Km in zone_1_km (1,10 € * 6,86 km) + 14,00 € PKW"
|
||||
"22020280","16,12","0.00","18,01","Mercedes-Benz AG","Seeburger Str. 27","13581, 10587","12,9","15:56 (07.05.)","15:58 (07.05.)","19,66","Seeburger Str.;27;13581;Berlin;DE|Salzufer;1;10587;Berlin;DE","28,18 €","12,00 Km in zone_1_km (1,10 € * 12,89 km) + 14,00 € PKW"
|
||||
"22020302","16,12","0.00","18,01","Mercedes-Benz AG","Holzhauser Str. 11-19","13509, 13581","12,4","16:07 (07.05.)","16:34 (07.05.)","19,66","Holzhauser Str.;11-19;13509;Berlin;DE|Seeburger Str.;27;13581;Berlin;DE","27,64 €","12,00 Km in zone_1_km (1,10 € * 12,40 km) + 14,00 € PKW"
|
||||
"22019631","15,79","0.00","18,02","Lutze Garten-, Landschafts- und","Plessower Hauptstr. 39","14542, 13627","","12:15 (07.05.)","12:15 (07.05.)","19,26","Plessower Hauptstr.;39;14542;Werder (Havel);DE|Heinickeweg;2a;13627;Berlin;DE","65,92 €","47,00 Km in ausserhalb_km (1,10 € * 7,87 km) + zone_2_km (1,10 € * 26,78 km) + zone_1_km (1,10 € * 12,55 km) + 14,00 € PKW"
|
||||
"22019013","15,66","0.00","18,01","MEGA e. G.","Sickingenstr. 22-28","10553, 12681","15,89","09:23 (07.05.)","09:25 (07.05.)","19,1","Sickingenstr.;22-28;10553;Berlin;DE|Meeraner Str.;11;12681;Berlin;DE","31,48 €","15,00 Km in zone_1_km (1,10 € * 15,89 km) + 14,00 € PKW"
|
||||
"22019412","16,04","0.00","12,01","HubSpot Germany GmbH","Am Postbahnhof 17 17 .","10243, 10557","7,17","12:45 (07.05.)","12:10 (07.05.)","18,23","Am Postbahnhof 17 17;.;10243;Berlin;DE|Europaplatz;.;10557;Berlin;DE","21,88 €","7,00 Km in zone_1_km (1,10 € * 7,16 km) + 14,00 € PKW"
|
||||
"22018798","14,77","0.00","17,99","Bär & Ollenroth KG Brandenburg","Mittenwalder Str. 8","15834, 13469","59,32","08:32 (07.05.)","11:13 (07.05.)","18,01","Mittenwalder Str.;8;15834;Rangsdorf - Groß Machnow;DE|Zehntwerderweg;46;13469;Berlin;DE","85,01 €","64,00 Km in ausserhalb_km (1,10 € * 1,55 km) + zone_2_km (1,10 € * 35,82 km) + zone_1_km (1,10 € * 27,18 km) + 14,00 € PKW"
|
||||
"22019119","13,05","0.00","17,98","Mega e. G.","Ullsteinstr. 85","12109, 12045","","09:48 (07.05.)","13:02 (07.05.)","15,91","Ullsteinstr.;85;12109;Berlin;DE|Weserstr.;182;12045;Berlin;DE","21,54 €","6,00 Km in zone_1_km (1,10 € * 6,85 km) + 14,00 € PKW"
|
||||
"22014027","10,82","0.00","18,03","Hausanschluss Lager","Waldstr. 60","13156, 13051","11,78","06:30 (05.05.)","06:47 (05.05.)","13,2","Waldstr.;60;13156;Berlin;DE|Kyllburger Weg;20;13051;Berlin;DE","27,65 €","12,00 Km in zone_1_km (1,10 € * 12,41 km) + 14,00 € PKW"
|
||||
"22016032","8,35","0.00","21,96","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 13125","","13:33 (05.05.)","13:39 (05.05.)","10,7","Hindenburgdamm;30a;12203;Berlin;DE|Schwanebecker Chaussee;50;13125;Berlin;DE","48,80 €","31,00 Km in zone_1_km (1,10 € * 31,64 km) + 14,00 € PKW"
|
||||
"22016453","8,77","0.00","18,04","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 16303","","16:04 (05.05.)","16:04 (05.05.)","10,7","Hindenburgdamm;30a;12203;Berlin;DE|Auguststr.;23;16303;Schwedt /Oder;DE","143,39 €","118,00 Km in ausserhalb_km (1,10 € * 65,62 km) + zone_1_km (1,10 € * 32,09 km) + zone_2_km (1,10 € * 19,92 km) + 14,00 € PKW"
|
||||
"22016740","8,77","0.00","18,04","TK Aufzüge GmbH","Pohlstr. 20","10785, 15344","43,41","07:33 (06.05.)","07:33 (06.05.)","10,7","Pohlstr.;20;10785;Berlin;DE|Hans-Beimler-Ring;1-5;15344;Strausberg;DE","61,76 €","43,00 Km in zone_1_km (1,10 € * 19,13 km) + zone_2_km (1,10 € * 24,29 km) + 14,00 € PKW"
|
||||
"22017306","8,77","0.00","18,04","Raab Karcher - Bereich Lager","Teilestr. 9-10","12099, 12047","","10:14 (06.05.)","12:52 (06.05.)","10,7","Teilestr.;9-10;12099;Berlin;DE|Reuterstr.;40;12047;Berlin;DE","20,22 €","5,00 Km in zone_1_km (1,10 € * 5,65 km) + 14,00 € PKW"
|
||||
"22019756","8,77","0.00","18,04","NORDSEE GmbH","Spandauer Str. 4","10178, 10178","0","13:01 (07.05.)","13:35 (07.05.)","10,7","Spandauer Str.;4;10178;Berlin;DE|Spandauer Str.;4;10178;Berlin;DE","19,50 € [M]","1,00 Km + 14,00 € PKW"
|
||||
,
|
||||
|
@@ -0,0 +1,595 @@
|
||||
"Nr.","Frachtverg.","Man. Frachtverg."," BSG [%]","Firma","Startadresse","PLZn","KM","Auftragszeit","Annahme","Preis",,
|
||||
"22012882","624,44","0.00","12","CO.DON GmbH","Warthestr. 21","14513, AT_1220","","08:00 (05.05.)","","709,59","Warthestr.;21;14513;Teltow;DE|Langobardenstrabe;122;1220;Wien;AT","758,40 €","675,00 Km in ausserhalb_km (1,10 € * 639,29 km) + zone_2_km (1,10 € * 36,13 km), Anfahrt in zone_2_eap (0,55 € * 2,62 km) + 14,00 € Kombi"
|
||||
"22014215","624,44","0.00","12","CO.DON GmbH","Warthestr. 21","14513, AT_1220","675,49","08:00 (05.05.)","13:35 (02.05.)","709,59","Warthestr.;21;14513;Teltow;DE|Langobardenstrabe;122;1220;Wien;AT","758,40 €","675,00 Km in ausserhalb_km (1,10 € * 639,29 km) + zone_2_km (1,10 € * 36,13 km), Anfahrt in zone_2_eap (0,55 € * 2,62 km) + 14,00 € Kombi"
|
||||
"22014609","598,49","569.99","14","CO.DON GmbH - 3.OG Empfang","Warthestr. 21 .","14513, AT_1220","","08:00 (05.05.)","00:00 (00.00.00)","695,92","Warthestr. 21;.;14513;Teltow;DE|Langobardenstrabe 122;.;1220;Wien;AT","758,40 €","675,00 Km in ausserhalb_km (1,10 € * 639,29 km) + zone_2_km (1,10 € * 36,13 km), Anfahrt in zone_2_eap (0,55 € * 2,62 km) + 14,00 € Kombi"
|
||||
"22016537","533,9","0.00","18","Easy Jet","Wolfgang-von-Gronau-Allee 2","12529, 60549","0","16:57 (05.05.)","17:08 (05.05.)","651,1","Wolfgang-von-Gronau-Allee;2;12529;Schönefeld;DE|Cargoring Nord Tor 26;.;60549;Frankfurt am Main;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22019730","315,13","0.00","18","STADTBOTE, Proj. Flash","Colditzstr. 33","12099, 25541","375,16","12:50 (07.05.)","12:54 (07.05.)","384,3","Colditzstr.;33;12099;Berlin;DE|Fritz-Staiger-Str.;15;25541;Brunsbüttel;DE","428,81 €","377,00 Km in ausserhalb_km (1,10 € * 325,66 km) + zone_1_km (1,10 € * 28,72 km) + zone_2_km (1,10 € * 22,72 km) + 14,00 € Kombi"
|
||||
"22015513","274,35","0.00","18","Schach zu Dritt Gesellschaft für","Schinkestr. 9","12047, 20357","297,79","11:00 (05.05.)","10:46 (05.05.)","334,57","Schinkestr.;9;12047;Berlin;DE|Messeplatz;1;20357;Hamburg;DE","337,19 €","294,00 Km in ausserhalb_km (1,10 € * 243,40 km) + zone_1_km (1,10 € * 18,16 km) + zone_2_km (1,10 € * 32,25 km) + 14,00 € Kombi"
|
||||
"22015024","171,09","0.00","18","SYNLAB MVZ (BER_07)","Reichartstr. 2","10829, .","0","10:00 (05.05.)","08:50 (05.05.)","208,65","Reichartstr.;2;10829;Berlin;DE|.;.;.;.;DE","ERROR","Adresse in 1. Station nicht ok"
|
||||
"22016934","171,09","0.00","18","SYNLAB MVZ (BER_14)","Reichartstr. 2","10829, .","0","10:00 (06.05.)","09:00 (06.05.)","208,65","Reichartstr.;2;10829;Berlin;DE|.;.;.;.;DE","ERROR","Adresse in 1. Station nicht ok"
|
||||
"22017293","161,08","0.00","22","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 17291","159,39","10:09 (06.05.)","10:13 (06.05.)","206,51","Hindenburgdamm;30a;12203;Berlin;DE|Stettiner Str.;121;17291;Prenzlau;DE","157,53 €","130,00 Km in ausserhalb_km (1,10 € * 78,47 km) + zone_1_km (1,10 € * 32,09 km) + zone_2_km (1,10 € * 19,92 km) + 14,00 € Kombi"
|
||||
"22020407","160,96","150.43","22,06","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 17291","159,39","20:08 (07.05.)","20:09 (07.05.)","206,51","Hindenburgdamm;30a;12203;Berlin;DE|Stettiner Str.;121;17291;Prenzlau;DE","157,53 €","130,00 Km in ausserhalb_km (1,10 € * 78,47 km) + zone_1_km (1,10 € * 32,09 km) + zone_2_km (1,10 € * 19,92 km) + 14,00 € Kombi"
|
||||
"22018496","165,39","0.00","18","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, ...","0","07:30 (07.05.)","07:00 (07.05.)","201,7","Hindenburgdamm;30a;12203;Berlin;DE|...;...;...;...;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22016381","148","138.32","22,29","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 16303","146,55","15:35 (05.05.)","15:39 (05.05.)","190,46","Hindenburgdamm;30a;12203;Berlin;DE|Auguststr.;23;16303;Schwedt /Oder;DE","143,39 €","118,00 Km in ausserhalb_km (1,10 € * 65,62 km) + zone_1_km (1,10 € * 32,09 km) + zone_2_km (1,10 € * 19,92 km) + 14,00 € Kombi"
|
||||
"22020420","148","138.32","22,29","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 16303","146,55","23:55 (07.05.)","00:28 (08.05.)","190,46","Hindenburgdamm;30a;12203;Berlin;DE|Auguststr.;23;16303;Schwedt /Oder;DE","143,39 €","118,00 Km in ausserhalb_km (1,10 € * 65,62 km) + zone_1_km (1,10 € * 32,09 km) + zone_2_km (1,10 € * 19,92 km) + 14,00 € Kombi"
|
||||
"22017288","72,32","0.00","55","LGI Deutschland GmbH / Lager Buderus","Am Magna Park 8","14542, 14979","53,61","10:08 (06.05.)","11:03 (06.05.)","160,7","Am Magna Park;8;14542;Werder (Havel);DE|Rebhuhnweg;12;14979;Großbeeren;DE","90,24 €","58,00 Km in ausserhalb_km (1,10 € * 42,25 km) + zone_2_km (1,10 € * 16,41 km), Anfahrt in zone_2_eap (0,55 € * 21,30 km) + 14,00 € Kombi"
|
||||
"22020406","116,43","0.00","22","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 16321","76,48","20:08 (07.05.)","20:09 (07.05.)","149,27","Hindenburgdamm;30a;12203;Berlin;DE|Ladeburger Str.;13-17;16321;Bernau;DE","66,33 €","47,00 Km in zone_1_km (1,10 € * 32,09 km) + zone_2_km (1,10 € * 15,48 km) + 14,00 € Kombi"
|
||||
"22018168","116,18","0.00","18","Handwerkskammer Berlin","Mehringdamm 14","10961, 13189, 10317, 15344, 15517","96,34","09:00 (07.05.)","08:37 (07.05.)","141,69","Mehringdamm;14;10961;Berlin;DE|Berliner Str.;94;13189;Berlin;DE|Margaretenstr.;26;10317;Berlin;DE|Am Annatal;60;15344;Strausberg;DE|Seelower Str.;16;15517;Fürstenwalde /Spree;DE","143,12 €","98,00 Km in ausserhalb_km (1,10 € * 15,40 km) + zone_1_km (1,10 € * 30,80 km) + zone_2_km (1,10 € * 52,09 km) + 14,00 € Kombi + 7,00 € pro 3 weitere Adresse(n)"
|
||||
"22015579","111,43","0.00","18","A & K Anschlagmittel u. Hebezeuge","Otisstr. 49","13403, 39307","120,79","11:01 (05.05.)","11:01 (05.05.)","135,89","Otisstr.;49;13403;Berlin;DE|Am Werder;3;39307;Genthin;DE","146,86 €","121,00 Km in ausserhalb_km (1,10 € * 83,45 km) + zone_1_km (1,10 € * 22,46 km) + zone_2_km (1,10 € * 14,87 km) + 14,00 € Kombi"
|
||||
"22014665","101,62","94.97","22,15","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 17268","100,63","05:45 (05.05.)","02:10 (05.05.)","130,54","Hindenburgdamm;30a;12203;Berlin;DE|Robert-Koch-Str.;24;17268;Templin;DE","124,85 €","101,00 Km in ausserhalb_km (1,10 € * 54,87 km) + zone_1_km (1,10 € * 28,56 km) + zone_2_km (1,10 € * 17,34 km) + 14,00 € Kombi"
|
||||
"22015792","101,01","94.40","22,62","Krankenhaus Templin","Robert-Koch-Str. 24","17268, 12203","100,02","12:02 (05.05.)","12:08 (05.05.)","130,54","Robert-Koch-Str.;24;17268;Templin;DE|Hindenburgdamm;30a;12203;Berlin;DE","124,00 €","100,00 Km in ausserhalb_km (1,10 € * 53,72 km) + zone_2_km (1,10 € * 18,52 km) + zone_1_km (1,10 € * 27,76 km) + 14,00 € Kombi"
|
||||
"22016612","101,62","94.97","22,15","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 17268","100,63","21:34 (05.05.)","21:37 (05.05.)","130,54","Hindenburgdamm;30a;12203;Berlin;DE|Robert-Koch-Str.;24;17268;Templin;DE","124,85 €","101,00 Km in ausserhalb_km (1,10 € * 54,87 km) + zone_1_km (1,10 € * 28,56 km) + zone_2_km (1,10 € * 17,34 km) + 14,00 € Kombi"
|
||||
"22020281","105,29","0.00","18","Dirk Schuppenhauer","Im Winkel 4","16562, 15834","92,65","17:30 (07.05.)","16:45 (07.05.)","128,4","Im Winkel;4;16562;Bergfelde;DE|Goethestr.;15;15834;Rangsdorf;DE","115,90 €","92,00 Km in zone_2_km (1,10 € * 87,57 km) + zone_1_km (1,10 € * 5,07 km) + 14,00 € Kombi"
|
||||
"22018446","98,9","0.00","22","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 14929","64,81","18:52 (06.05.)","18:53 (06.05.)","126,8","Hindenburgdamm;30a;12203;Berlin;DE|Johanniterstr.;68;14929;Treuenbrietzen;DE","85,29 €","64,00 Km in ausserhalb_km (1,10 € * 39,71 km) + zone_1_km (1,10 € * 4,84 km) + zone_2_km (1,10 € * 20,26 km) + 14,00 € Kombi"
|
||||
"22012847","92,56","0.00","18","Hansetrans-Lager","Colditzstr. 33","12099, 16831","97,77","06:30 (05.05.)","06:16 (05.05.)","112,88","Colditzstr.;33;12099;Berlin;DE|Ringstr.;10;16831;Rheinsberg;DE","121,70 €","97,00 Km in ausserhalb_km (1,10 € * 51,85 km) + zone_1_km (1,10 € * 28,72 km) + zone_2_km (1,10 € * 17,34 km) + 14,00 € Kombi"
|
||||
"22014773","89,93","0.00","18,01","Ev. Waldkrankenhaus","Stadtrandstr. 555","13589, 15377","99,83","07:31 (05.05.)","07:31 (05.05.)","109,68","Stadtrandstr.;555;13589;Berlin;DE|Lindenstr.;68-70;15377;Buckow (Märkische Schweiz);DE","120,70 €","97,00 Km in ausserhalb_km (1,10 € * 13,99 km) + zone_1_km (1,10 € * 13,04 km) + zone_2_km (1,10 € * 69,97 km) + 14,00 € Kombi"
|
||||
"22018314","86,84","0.00","18,01","Tiefbauhandel GmbH","Groß-Berliner-Damm 85","12487, 16816","92,19","07:00 (07.05.)","16:33 (06.05.)","105,91","Groß-Berliner-Damm;85;12487;Berlin;DE|Heinrich-Rau-Str.;3;16816;Neuruppin;DE","115,81 €","92,00 Km in ausserhalb_km (1,10 € * 31,43 km) + zone_1_km (1,10 € * 38,40 km) + zone_2_km (1,10 € * 22,72 km) + 14,00 € Kombi"
|
||||
"22016526","77,23","72.18","22,39","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 16321","76,48","16:47 (05.05.)","16:50 (05.05.)","99,51","Hindenburgdamm;30a;12203;Berlin;DE|Ladeburger Str.;13-17;16321;Bernau;DE","66,33 €","47,00 Km in zone_1_km (1,10 € * 32,09 km) + zone_2_km (1,10 € * 15,48 km) + 14,00 € Kombi"
|
||||
"22019095","75,94","70.97","22,01","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 15526","75,2","09:43 (07.05.)","09:44 (07.05.)","97,37","Hindenburgdamm;30a;12203;Berlin;DE|Pieskower Str.;33;15526;Bad Saarow;DE","102,43 €","80,00 Km in ausserhalb_km (1,10 € * 28,87 km) + zone_1_km (1,10 € * 4,84 km) + zone_2_km (1,10 € * 46,68 km) + 14,00 € Kombi"
|
||||
"22019267","75,9","0.00","18","Tepper Aufzüge GmbH","Herzbergstr. 50","10365, 14959","55,78","10:27 (07.05.)","10:28 (07.05.)","92,56","Herzbergstr.;50;10365;Berlin;DE|Ahornstr.;21;14959;Trebbin - Thyrow;DE","75,33 €","55,00 Km in ausserhalb_km (1,10 € * 5,80 km) + zone_1_km (1,10 € * 19,37 km) + zone_2_km (1,10 € * 30,58 km) + 14,00 € Kombi"
|
||||
"22015607","75,46","0.00","18","Tulip Cocoa GB GmbH + Co. KG","Kakaostrasse 1","16833, 12489","66,75","11:09 (05.05.)","11:09 (05.05.)","92,02","Kakaostrasse;1;16833;Fehrbellin;DE|Wagner-R?geny-Str.;8;12489;Berlin;DE","87,41 €","66,00 Km in ausserhalb_km (1,10 € * 19,75 km) + zone_2_km (1,10 € * 41,34 km) + zone_1_km (1,10 € * 5,65 km) + 14,00 € Kombi"
|
||||
"22018341","71,02","66.37","22,82","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 13125","70,32","16:06 (06.05.)","16:26 (06.05.)","92,02","Hindenburgdamm;30a;12203;Berlin;DE|Schwanebecker Chaussee;50;13125;Berlin;DE","48,80 €","31,00 Km in zone_1_km (1,10 € * 31,64 km) + 14,00 € Kombi"
|
||||
"22020381","71,03","66.38","22,81","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 15562","70,33","17:52 (07.05.)","18:00 (07.05.)","92,02","Hindenburgdamm;30a;12203;Berlin;DE|Seebad;82-83;15562;Ruedersdorf;DE","96,96 €","75,00 Km in zone_1_km (1,10 € * 4,84 km) + zone_2_km (1,10 € * 70,58 km) + 14,00 € Kombi"
|
||||
"22014891","73,26","0.00","18,01","Eckert & Ziegler Radiopharma","Robert-Rössle-Str. 10","13125, 10589, 12489, 13125","78,86","12:15 (05.05.)","09:01 (05.05.)","89,35","Robert-Rössle-Str.;10;13125;Berlin;DE|Max-Dohrn-Strasse;8-10;10589;Berlin;DE|Volmerstrasse;7a;12489;Berlin;DE|Robert-Rössle-Str.;10;13125;Berlin;DE","113,98 €","78,00 Km in zone_1_km (1,10 € * 69,95 km) + zone_2_km (1,10 € * 8,21 km) + 14,00 € Kombi + 7,00 € pro 2 weitere Adresse(n)"
|
||||
"22017727","70,73","0.00","17,99","Schulz Baubedarf GmbH","Löwenbrucher Ring 16","14974, 10559, 13587","45,02","12:17 (06.05.)","12:20 (06.05.)","86,25","Löwenbrucher Ring;16;14974;Ludwigsfelde;DE|Rathenower Str.;16;10559;Berlin;DE|Rauchstr.;34;13587;Berlin;DE","83,03 €","56,00 Km in zone_2_km (1,10 € * 23,39 km) + zone_1_km (1,10 € * 33,00 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018518","69,61","0.00","18,01","Minimax GmbH / Lager","Gottlieb-Dunkel-Str. 20-21","12099, 15537, 12099","96,94","06:56 (07.05.)","09:47 (07.05.)","84,9","Gottlieb-Dunkel-Str.;20-21;12099;Berlin;DE|Ahornstr.;6 D;15537;Grünheide / OT Freienbrink;DE|Gottlieb-Dunkel-Str.;20-21;12099;Berlin;DE","121,85 €","91,00 Km in zone_1_km (1,10 € * 24,34 km) + zone_2_km (1,10 € * 67,34 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22020096","67,12","0.00","18,01","Tepper Aufzüge GmbH","Herzbergstr. 50","10365, 15831","30,1","14:46 (07.05.)","14:46 (07.05.)","81,86","Herzbergstr.;50;10365;Berlin;DE|Akazienstr.;5;15831;Blankenfelde-Mahlow - Mahlow;DE","47,96 €","30,00 Km in zone_1_km (1,10 € * 20,16 km) + zone_2_km (1,10 € * 10,71 km) + 14,00 € Kombi"
|
||||
"22016709","66,31","0.00","17,99","MAN Truck + Bus Deutschland","Siegfriedstr. 49-51","10365, 12681, 15366, 16356","47,75","07:21 (06.05.)","07:58 (06.05.)","80,86","Siegfriedstr.;49-51;10365;Berlin;DE|Nordring;5;12681;Berlin;DE|Gewerbestr.;23;15366;Hoppegarten - Dahlwitz-Hoppegarten;DE|Alte Hirschfelder Str.;6;16356;Werneuchen;DE","82,54 €","49,00 Km in zone_1_km (1,10 € * 20,74 km) + zone_2_km (1,10 € * 28,84 km) + 14,00 € Kombi + 7,00 € pro 2 weitere Adresse(n)"
|
||||
"21988338","65,81","0.00","17,99","Ev. Johannesstift Wichernkran-","Schoenwalder Allee 26","13587, 13585, 13587","6,14","11:15 (05.05.)","11:44 (05.05.)","80,25","Schoenwalder Allee;26;13587;Berlin;DE|Neue Bergstr.;6;13585;Berlin;DE|Schoenwalder Allee;26;13587;Berlin;DE","27,75 €","6,00 Km in zone_1_km (1,10 € * 6,14 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018004","65,81","0.00","17,99","Friedrich Niemann GmbH & Co. KG","Am Wall 9","14979, 15370","64,87","13:52 (06.05.)","13:53 (06.05.)","80,25","Am Wall;9;14979;Großbeeren;DE|Heideweg;6;15370;Fredersdorf-Vogelsdorf - Vogelsdorf;DE","88,34 €","64,00 Km in zone_2_km (1,10 € * 64,87 km), Anfahrt in zone_2_eap (0,55 € * 5,43 km) + 14,00 € Kombi"
|
||||
"22016078","65,81","0.00","17,99","Ev. Johannesstift Wichernkran-","Schoenwalder Allee 26","13587, 13585, 13587","6,14","11:15 (07.05.)","16:24 (06.05.)","80,25","Schoenwalder Allee;26;13587;Berlin;DE|Neue Bergstr.;6;13585;Berlin;DE|Schoenwalder Allee;26;13587;Berlin;DE","27,75 €","6,00 Km in zone_1_km (1,10 € * 6,14 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015606","65,37","0.00","18","Tulip Cocoa GB GmbH + Co. KG","Kakaostrasse 1","16833, 13347","56,18","08:00 (06.05.)","16:36 (05.05.)","79,72","Kakaostrasse;1;16833;Fehrbellin;DE|Oudenarder Str.;16;13347;Berlin;DE","75,85 €","56,00 Km in ausserhalb_km (1,10 € * 19,75 km) + zone_2_km (1,10 € * 22,86 km) + zone_1_km (1,10 € * 13,62 km) + 14,00 € Kombi"
|
||||
"22018704","63,92","0.00","18,01","EKZ Werder Park","Auf dem Strengfeld 6","14542, 12347","49,62","08:08 (07.05.)","08:11 (07.05.)","77,96","Auf dem Strengfeld;6;14542;Werder;DE|Gradestr.;46-50;12347;Berlin;DE","68,57 €","49,00 Km in ausserhalb_km (1,10 € * 0,16 km) + zone_2_km (1,10 € * 24,76 km) + zone_1_km (1,10 € * 24,69 km) + 14,00 € Kombi"
|
||||
"22015666","63,63","0.00","18","STARK Deutschland GmbH","Liebermannstr. 3-15","13088, 15517","79,92","11:25 (05.05.)","11:27 (05.05.)","77,6","Liebermannstr.;3-15;13088;Berlin;DE|Lindenstr.;49a;15517;Fürstenwalde;DE","101,90 €","79,00 Km in ausserhalb_km (1,10 € * 28,66 km) + zone_1_km (1,10 € * 5,71 km) + zone_2_km (1,10 € * 45,54 km) + 14,00 € Kombi"
|
||||
"22018460","60,09","0.00","22","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 15711","39,23","21:13 (06.05.)","21:18 (06.05.)","77,04","Hindenburgdamm;30a;12203;Berlin;DE|Koepenicker Str.;29;15711;Koenigs Wusterhausen;DE","62,86 €","44,00 Km in zone_1_km (1,10 € * 4,84 km) + zone_2_km (1,10 € * 39,58 km) + 14,00 € Kombi"
|
||||
"22020399","60,09","0.00","22","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 15711","39,23","19:13 (07.05.)","19:19 (07.05.)","77,04","Hindenburgdamm;30a;12203;Berlin;DE|Köpenicker Str.;29;15711;Königs Wusterhausen;DE","62,86 €","44,00 Km in zone_1_km (1,10 € * 4,84 km) + zone_2_km (1,10 € * 39,58 km) + 14,00 € Kombi"
|
||||
"22017465","58,53","54.70","22,96","Johanniter KH im Flaeming gGmbH","Johanniterstr. 68","14929, 12203","","10:57 (06.05.)","","75,97","Johanniterstr.;68;14929;Treuenbrietzen;DE|Hindenburgdamm;30a;12203;Berlin;DE","77,58 €","57,00 Km in ausserhalb_km (1,10 € * 33,49 km) + zone_2_km (1,10 € * 14,33 km) + zone_1_km (1,10 € * 9,98 km) + 14,00 € Kombi"
|
||||
"22019076","60,1","0.00","18,01","Weber Energie und Umwelt Service","Schkopauer Ring 17","12681, 14542","88,76","09:38 (07.05.)","09:39 (07.05.)","73,3","Schkopauer Ring;17;12681;Berlin;DE|Phöbener Chaussee;12;14542;Werder (Havel);DE","111,63 €","88,00 Km in ausserhalb_km (1,10 € * 0,70 km) + zone_1_km (1,10 € * 8,00 km) + zone_2_km (1,10 € * 80,05 km) + 14,00 € Kombi"
|
||||
"22014695","59,22","0.00","18,01","MAN Truck&Bus Deutschland GmbH","autofocus 4","15517, 12099","58,83","06:40 (05.05.)","06:40 (05.05.)","72,23","autofocus;4;15517;Fürstenwalde;DE|Tempelhofer Weg;5;12099;Berlin;DE","78,70 €","58,00 Km in ausserhalb_km (1,10 € * 23,28 km) + zone_2_km (1,10 € * 24,20 km) + zone_1_km (1,10 € * 11,34 km) + 14,00 € Kombi"
|
||||
"22016496","58,82","0.00","18,01","Blumen Insel","Suarezstr. 5","14057, 14193, 14057","9,64","10:00 (06.05.)","16:34 (05.05.)","71,74","Suarezstr.;5;14057;Berlin;DE|Fontanestr.;8;14193;Berlin;DE|Suarezstr.;5;14057;Berlin;DE","31,60 €","9,00 Km in zone_1_km (1,10 € * 9,64 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018039","58,79","0.00","17,99","Tepper Aufzüge GmbH","Herzbergstr. 50","10365, 13435","16,49","14:03 (06.05.)","14:03 (06.05.)","71,69","Herzbergstr.;50;10365;Berlin;DE|Senftenberger Ring;76;13435;Berlin;DE","32,14 €","16,00 Km in zone_1_km (1,10 € * 16,49 km) + 14,00 € Kombi"
|
||||
"22014475","56,67","52.96","19,99","Asklepios Klinik Birkenwerder","Hubertusstr. 12-22","16547, 12203","38,4","17:00 (05.05.)","11:46 (05.05.)","70,83","Hubertusstr.;12-22;16547;Birkenwerder;DE|Hindenburgdamm;30a;12203;Berlin;DE","55,90 €","38,00 Km in zone_2_km (1,10 € * 10,33 km) + zone_1_km (1,10 € * 27,76 km) + 14,00 € Kombi"
|
||||
"22016568","56,67","52.96","19,99","Asklepios Klinik Birkenwerder","Hubertusstr. 12-22","16547, 12203","38,4","17:00 (06.05.)","11:46 (06.05.)","70,83","Hubertusstr.;12-22;16547;Birkenwerder;DE|Hindenburgdamm;30a;12203;Berlin;DE","55,90 €","38,00 Km in zone_2_km (1,10 € * 10,33 km) + zone_1_km (1,10 € * 27,76 km) + 14,00 € Kombi"
|
||||
"22018430","56,67","52.96","19,99","Asklepios Klinik Birkenwerder","Hubertusstr. 12-22","16547, 12203","38,4","17:00 (07.05.)","08:01 (07.05.)","70,83","Hubertusstr.;12-22;16547;Birkenwerder;DE|Hindenburgdamm;30a;12203;Berlin;DE","55,90 €","38,00 Km in zone_2_km (1,10 € * 10,33 km) + zone_1_km (1,10 € * 27,76 km) + 14,00 € Kombi"
|
||||
"22018360","55,64","0.00","18","OTIS GmbH & Co. oHG","Otisstr. 33","13507, 10785","10,46","16:19 (06.05.)","16:19 (06.05.)","67,85","Otisstr.;33;13507;Berlin;DE|Potsdamer Platz;3;10785;Berlin;DE","25,64 €","10,00 Km in zone_1_km (1,10 € * 10,58 km) + 14,00 € Kombi"
|
||||
"22018830","54,84","0.00","18","Hans Timm Fensterbau GmbH &","Motzener Str. 10","12277, 15758","38,19","08:40 (07.05.)","08:44 (07.05.)","66,88","Motzener Str.;10;12277;Berlin;DE|Gunterstr.;18;15758;Zernsdorf;DE","56,01 €","38,00 Km in ausserhalb_km (1,10 € * 2,52 km) + zone_1_km (1,10 € * 4,92 km) + zone_2_km (1,10 € * 30,75 km) + 14,00 € Kombi"
|
||||
"22013596","54,4","0.00","18","Senatsverw. f. Umwelt, Verkehr u. Klimaschutz","Columbiadamm 10","12101, 12101, 12101, 10179, 10179, 12101, 12101","13,99","09:00 (05.05.)","13:54 (02.05.)","66,34","Columbiadamm;10;12101;Berlin;DE|Tempelhofer Damm;45;12101;Berlin;DE|Tempelhofer Damm;9;12101;Berlin;DE|Am Koellnischen Park;3;10179;Berlin;DE|Brueckenstr.;6;10179;Berlin;DE|Tempelhofer Damm;45;12101;Berlin;DE|Columbiadamm;10;12101;Berlin;DE","64,47 €","14,00 Km in zone_1_km (1,10 € * 14,06 km) + 14,00 € Kombi + 7,00 € pro 5 weitere Adresse(n)"
|
||||
"22015360","54,4","0.00","18","Senatsverw. f. Umwelt, Verkehr u. Klimaschutz","Columbiadamm 10","12101, 12101, 12101, 10179, 10179, 12101, 12101","","09:00 (06.05.)","11:34 (05.05.)","66,34","Columbiadamm;10;12101;Berlin;DE|Tempelhofer Damm;45;12101;Berlin;DE|Tempelhofer Damm;9;12101;Berlin;DE|Am Koellnischen Park;3;10179;Berlin;DE|Brueckenstr.;6;10179;Berlin;DE|Tempelhofer Damm;45;12101;Berlin;DE|Columbiadamm;10;12101;Berlin;DE","64,47 €","14,00 Km in zone_1_km (1,10 € * 14,06 km) + 14,00 € Kombi + 7,00 € pro 5 weitere Adresse(n)"
|
||||
"22017249","54,4","0.00","18","Senatsverw. f. Umwelt, Verkehr u. Klimaschutz","Columbiadamm 10","12101, 12101, 12101, 10179, 10179, 12101, 12101","13,99","09:00 (07.05.)","07:11 (07.05.)","66,34","Columbiadamm;10;12101;Berlin;DE|Tempelhofer Damm;45;12101;Berlin;DE|Tempelhofer Damm;9;12101;Berlin;DE|Am Koellnischen Park;3;10179;Berlin;DE|Brueckenstr.;6;10179;Berlin;DE|Tempelhofer Damm;45;12101;Berlin;DE|Columbiadamm;10;12101;Berlin;DE","64,47 €","14,00 Km in zone_1_km (1,10 € * 14,06 km) + 14,00 € Kombi + 7,00 € pro 5 weitere Adresse(n)"
|
||||
"22018465","58,15","0.00","12","Buchhaltungs- und Büroservice Nitz","Jühnsdorfer Straße 20 .","15834, 13591","54,83","14:00 (07.05.)","12:20 (07.05.)","66,08","Jühnsdorfer Straße 20;.;15834;Rangsdorf;DE|Heerstraße 575;.;13591;Berlin;DE","79,89 €","59,00 Km in zone_2_km (1,10 € * 37,29 km) + zone_1_km (1,10 € * 22,61 km) + 14,00 € Kombi"
|
||||
"22017544","50,02","0.00","18","Humboldt-Klinikum","Am Nordgraben 2","13509, 12351, 13509","56,31","11:18 (06.05.)","11:21 (06.05.)","61","Am Nordgraben;2;13509;Berlin;DE|Kormoranweg;45;12351;Berlin;DE|Am Nordgraben;2;13509;Berlin;DE","83,14 €","56,00 Km in zone_1_km (1,10 € * 56,49 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22019740","49,57","0.00","18,01","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 14542","49,27","12:53 (07.05.)","13:24 (07.05.)","60,46","Gradestr.;46-50;12347;Berlin;DE|Auf dem Strengfeld;6;14542;Werder;DE","68,30 €","49,00 Km in ausserhalb_km (1,10 € * 0,24 km) + zone_1_km (1,10 € * 24,78 km) + zone_2_km (1,10 € * 24,34 km) + 14,00 € Kombi"
|
||||
"22020212","49,57","0.00","18,01","Carsystem Farberlin GmbH","Heerstr. 330","13593, 14542","","15:29 (07.05.)","15:41 (07.05.)","60,46","Heerstr.;330;13593;Berlin;DE|Berliner Str.;105;14542;Werder (Havel);DE","60,51 €","42,00 Km in ausserhalb_km (1,10 € * 11,22 km) + zone_1_km (1,10 € * 4,25 km) + zone_2_km (1,10 € * 26,81 km) + 14,00 € Kombi"
|
||||
"22016555","48,26","0.00","17,99","Tepper Aufzüge GmbH","Herzbergstr. 50","10365, 12167","21,25","17:08 (05.05.)","17:08 (05.05.)","58,85","Herzbergstr.;50;10365;Berlin;DE|Albrechtstr.;54;12167;Berlin;DE","36,03 €","20,00 Km in zone_1_km (1,10 € * 20,03 km) + 14,00 € Kombi"
|
||||
"22011289","46,5","0.00","18,02","G-ELIT Präzisionswerk GmbH","Lengeder Str. 29-35","13407, 12689, 13407","","08:00 (06.05.)","","56,72","Lengeder Str.;29-35;13407;Berlin;DE|Hellersdorfer Weg;35;12689;Berlin;DE|Lengeder Str.;29-35;13407;Berlin;DE","62,48 €","37,00 Km in zone_1_km (1,10 € * 37,71 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22011380","46,5","0.00","18,02","G-ELIT Präzisionswerk GmbH","Lengeder Str. 29-35","13407, 12689, 13407","37,34","08:00 (06.05.)","07:08 (05.05.)","56,72","Lengeder Str.;29-35;13407;Berlin;DE|Hellersdorfer Weg;35;12689;Berlin;DE|Lengeder Str.;29-35;13407;Berlin;DE","62,48 €","37,00 Km in zone_1_km (1,10 € * 37,71 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018800","45,62","0.00","18,01","Brillux GmbH & Co. KG","Gewerbepark 24","15745, 15562","36,9","08:32 (07.05.)","09:06 (07.05.)","55,64","Gewerbepark;24;15745;Wildau;DE|Altenaer Str.;17;15562;Rüdersdorf b Berlin;DE","63,54 €","36,00 Km in zone_2_km (1,10 € * 36,90 km), Anfahrt in zone_2_eap (0,55 € * 16,28 km) + 14,00 € Kombi"
|
||||
"22019775","42,46","39.68","22,19","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 14547","42,04","13:06 (07.05.)","13:12 (07.05.)","54,57","Hindenburgdamm;30a;12203;Berlin;DE|Paracelsusring;6a;14547;Beelitz, Mark;DE","66,42 €","47,00 Km in ausserhalb_km (1,10 € * 22,55 km) + zone_1_km (1,10 € * 4,84 km) + zone_2_km (1,10 € * 20,26 km) + 14,00 € Kombi"
|
||||
"22015745","44,32","0.00","18","FSM Syscomp GmbH","August-Conrad-Str. 40","16761, 12489","41,19","11:48 (05.05.)","11:49 (05.05.)","54,05","August-Conrad-Str.;40;16761;Hennigsdorf;DE|Barbara-McClintock-Str.;11;12489;Berlin;DE","59,58 €","41,00 Km in zone_2_km (1,10 € * 2,77 km) + zone_1_km (1,10 € * 38,67 km) + 14,00 € Kombi"
|
||||
"22015913","44,31","0.00","18,01","Flowster Selution GMbh","Rigaer Str. 44","10247, 14641","68,73","12:47 (05.05.)","12:48 (05.05.)","54,04","Rigaer Str.;44;10247;Berlin;DE|Dr.-Kron-Weg;12;14641;Nauen;DE","89,60 €","68,00 Km in ausserhalb_km (1,10 € * 3,59 km) + zone_1_km (1,10 € * 16,22 km) + zone_2_km (1,10 € * 48,92 km) + 14,00 € Kombi"
|
||||
"22019183","44,31","0.00","18,01","Eckert & Ziegler Radiopharma","Robert-Rössle-Str. 10","13125, 10589, 12489","51,11","12:05 (07.05.)","10:09 (07.05.)","54,04","Robert-Rössle-Str.;10;13125;Berlin;DE|Max-Dohrn-Strasse;8-10;10589;Berlin;DE|Volmerstrasse;7a;12489;Berlin;DE","76,46 €","50,00 Km in zone_1_km (1,10 € * 50,42 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22016082","43,87","0.00","18","Tepper Aufzüge GmbH","Herzbergstr. 50","10365, 10315","4,16","13:50 (05.05.)","13:50 (05.05.)","53,5","Herzbergstr.;50;10365;Berlin;DE|Allee der Kosmonauten;18;10315;Berlin;DE","19,50 € [M]","4,00 Km in zone_1_km (1,10 € * 4,16 km) + 14,00 € Kombi"
|
||||
"22017435","43,87","0.00","18","Tepper Aufzüge GmbH","Herzbergstr. 50","10365, 10587","14,95","10:47 (06.05.)","10:51 (06.05.)","53,5","Herzbergstr.;50;10365;Berlin;DE|Loschmidtstr.;19;10587;Berlin;DE","30,43 €","14,00 Km in zone_1_km (1,10 € * 14,94 km) + 14,00 € Kombi"
|
||||
"22019626","43,87","0.00","18","GROEGER Bauaufzüge + Hebetechnik","Industriestr. 5","15370, 13589","70,93","12:14 (07.05.)","12:25 (07.05.)","53,5","Industriestr.;5;15370;Fredersdorf-Vogelsdorf;DE|Radelandstr.;181;13589;Berlin;DE","92,01 €","70,00 Km in zone_2_km (1,10 € * 59,31 km) + zone_1_km (1,10 € * 11,61 km) + 14,00 € Kombi"
|
||||
"22020374","43,87","0.00","18","Tepper Aufzüge GmbH","Herzbergstr. 50","10365, 13353","14,5","17:24 (07.05.)","17:24 (07.05.)","53,5","Herzbergstr.;50;10365;Berlin;DE|Westhafenstr.;1;13353;Berlin;DE","29,94 €","14,00 Km in zone_1_km (1,10 € * 14,49 km) + 14,00 € Kombi"
|
||||
"22015541","42,99","0.00","18","AUCOTEAM GmbH","Josef-Orlopp-Str. 58","10365, 14478","45,76","10:52 (05.05.)","10:58 (05.05.)","52,43","Josef-Orlopp-Str.;58;10365;Berlin;DE|Verkehrshof;9;14478;Potsdam;DE","61,37 €","43,00 Km in zone_1_km (1,10 € * 32,36 km) + zone_2_km (1,10 € * 10,70 km) + 14,00 € Kombi"
|
||||
"22017443","42,99","0.00","18","Nico Garz Malereibetrieb GmbH","Bahnhofspassage 1","16348, 16348, 16348","50,61","10:49 (06.05.)","11:06 (06.05.)","52,43","Bahnhofspassage;1;16348;Wandlitz - Schönwalde;DE|Ahornweg;9a;16348;Wandlitz - Schönwalde;DE|Bahnhofspassage;1;16348;Wandlitz - Schönwalde;DE","79,14 €","50,00 Km in ausserhalb_km (1,10 € * 22,65 km) + zone_2_km (1,10 € * 27,94 km), Anfahrt in zone_2_eap (0,55 € * 4,52 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018670","42,99","0.00","18","Lusche Seil- und Hebetechnik GmbH","Bucher Weg 2b","16356, 10243, 10719","23,48","07:57 (07.05.)","08:02 (07.05.)","52,43","Bucher Weg;2b;16356;Ahrensfelde / OT Lindenberg;DE|Lange Str.;25;10243;Berlin;DE|Lietzenburger Str.;80;10719;Berlin;DE","46,82 €","23,00 Km in zone_2_km (1,10 € * 1,81 km) + zone_1_km (1,10 € * 21,66 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015101","42,56","0.00","18,01","KERAMUNDO - Welt der Fliesen","Teilestr. 9-10","12099, 16515","44,51","09:10 (05.05.)","09:29 (05.05.)","51,91","Teilestr.;9-10;12099;Berlin;DE|Havelkorso;21;16515;Oranienburg - Lehnitz;DE","63,13 €","44,00 Km in zone_1_km (1,10 € * 28,02 km) + zone_2_km (1,10 € * 16,64 km) + 14,00 € Kombi"
|
||||
"22016859","42,55","0.00","18,02","TK Aufzüge GmbH","Pohlstr. 20","10785, 15344","43,41","08:17 (06.05.)","08:27 (06.05.)","51,9","Pohlstr.;20;10785;Berlin;DE|Hans-Beimler-Ring;1-5;15344;Strausberg;DE","61,76 €","43,00 Km in zone_1_km (1,10 € * 19,13 km) + zone_2_km (1,10 € * 24,29 km) + 14,00 € Kombi"
|
||||
"22017175","42,12","0.00","17,99","Sven Walter Logistik e.K.","Sterckmannweg 11","12685, 12103, 12685","46,82","08:15 (07.05.)","07:45 (07.05.)","51,36","Sterckmannweg;11;12685;Berlin;DE|Alt-Tempelhof;37-41;12103;Berlin;DE|Sterckmannweg;11;12685;Berlin;DE","66,87 €","41,00 Km in zone_1_km (1,10 € * 41,70 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015534","41,68","0.00","18","Berliner Schrauben GmbH","Industriestr. 3","15366, 14109","52,65","11:15 (05.05.)","10:50 (05.05.)","50,83","Industriestr.;3;15366;Hoppegarten - Dahlwitz-Hoppegarten;DE|Golfweg;22;14109;Berlin;DE","113,09 €","90,00 Km in zone_2_km (1,10 € * 86,05 km) + zone_1_km (1,10 € * 4,03 km) + 14,00 € Kombi"
|
||||
"22019929","41,68","0.00","18","GEFEG mbH","Storkower Str. 207","10369, 15712","51,25","13:54 (07.05.)","15:09 (07.05.)","50,83","Storkower Str.;207;10369;Berlin;DE|Fontanestr.;14;15712;Königs Wusterhausen / OT Kablow;DE","70,30 €","51,00 Km in ausserhalb_km (1,10 € * 7,85 km) + zone_1_km (1,10 € * 11,97 km) + zone_2_km (1,10 € * 31,36 km) + 14,00 € Kombi"
|
||||
"22016611","39,13","36.57","22,19","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 16547","38,74","06:00 (06.05.)","21:31 (05.05.)","50,29","Hindenburgdamm;30a;12203;Berlin;DE|Hubertusstr.;12-22;16547;Birkenwerder;DE","56,77 €","38,00 Km in zone_1_km (1,10 € * 28,56 km) + zone_2_km (1,10 € * 10,32 km) + 14,00 € Kombi"
|
||||
"22018459","39,13","36.57","22,19","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 16547","38,4","06:30 (07.05.)","20:44 (06.05.)","50,29","Hindenburgdamm;30a;12203;Berlin;DE|Hubertusstr.;12-22;16547;Birkenwerder;DE","56,77 €","38,00 Km in zone_1_km (1,10 € * 28,56 km) + zone_2_km (1,10 € * 10,32 km) + 14,00 € Kombi"
|
||||
"22014347","39,92","0.00","18,01","R + S Aufzugbau GmbH","Herzbergstr. 87-99","10365, 12587, 12247","49,56","06:55 (05.05.)","13:20 (04.05.)","48,69","Herzbergstr.;87-99;10365;Berlin;DE|Josef-Nawrocki-Str.;36;12587;Berlin;DE|Nicolaistr.;5;12247;Berlin;DE","72,74 €","47,00 Km in zone_1_km (1,10 € * 42,88 km) + zone_2_km (1,10 € * 4,16 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22016132","39,92","0.00","18,01","Kieback & Peter GmbH & Co. KG","Dahmestr. 18-19","15749, 12357","22,33","14:06 (05.05.)","15:34 (05.05.)","48,69","Dahmestr.;18-19;15749;Mittenwalde;DE|Mistelweg;2-6;12357;Berlin;DE","38,56 €","22,00 Km in ausserhalb_km (1,10 € * 3,39 km) + zone_2_km (1,10 € * 13,43 km) + zone_1_km (1,10 € * 5,51 km) + 14,00 € Kombi"
|
||||
"22017273","39,92","0.00","18,01","WeGo Systembaustoffe GmbH","Gottlieb-Dunkel-Str. 20-22","12099, 15749","31,41","10:05 (06.05.)","10:10 (06.05.)","48,69","Gottlieb-Dunkel-Str.;20-22;12099;Berlin;DE|Dahmestr.;21;15749;Mittenwalde;DE","46,08 €","29,00 Km in ausserhalb_km (1,10 € * 3,94 km) + zone_1_km (1,10 € * 12,23 km) + zone_2_km (1,10 € * 12,99 km) + 14,00 € Kombi"
|
||||
"22011598","39,48","0.00","18,01","Institut für Arbeits- und Wohn-","Spreebordstr. 5","15537, 13088","","09:00 (05.05.)","","48,15","Spreebordstr.;5;15537;Gosen-Neu Zittau;DE|An der Industriebahn;5;13088;Berlin;DE","64,26 €","45,00 Km in zone_2_km (1,10 € * 40,23 km) + zone_1_km (1,10 € * 5,46 km) + 14,00 € Kombi"
|
||||
"22017272","39,48","0.00","18,01","BEDO Innenausbausysteme und Bau","Hermann-Blankenstein-Str. 50","10249, 14558","40,01","10:03 (06.05.)","10:56 (06.05.)","48,15","Hermann-Blankenstein-Str.;50;10249;Berlin;DE|Nudower Dorfstr.;34;14558;Nuthetal - Nudow;DE","58,00 €","40,00 Km in zone_1_km (1,10 € * 26,86 km) + zone_2_km (1,10 € * 13,14 km) + 14,00 € Kombi"
|
||||
"22017275","39,04","0.00","18,02","Jalousien-Boettcher GmbH","Assmannstr. 54","12587, 15344","25,56","10:04 (06.05.)","10:40 (06.05.)","47,62","Assmannstr.;54;12587;Berlin;DE|Berliner Str.;101;15344;Strausberg;DE","42,12 €","25,00 Km in zone_1_km (1,10 € * 4,09 km) + zone_2_km (1,10 € * 21,47 km) + 14,00 € Kombi"
|
||||
"22018827","39,04","0.00","18,02","Kaulich IT-Systems GmbH","Berliner Str. 101","15344, 12587","26,48","08:39 (07.05.)","08:39 (07.05.)","47,62","Berliner Str.;101;15344;Strausberg;DE|Assmannstr.;54;12587;Berlin;DE","43,13 €","26,00 Km in zone_2_km (1,10 € * 22,79 km) + zone_1_km (1,10 € * 3,69 km) + 14,00 € Kombi"
|
||||
"22016448","38,61","0.00","17,99","GROEGER Bauaufzüge + Hebetechnik","Industriestr. 5","15370, 13467","45,91","07:00 (06.05.)","16:52 (05.05.)","47,08","Industriestr.;5;15370;Fredersdorf-Vogelsdorf;DE|Berliner Str.;26;13467;Berlin;DE","64,48 €","45,00 Km in zone_2_km (1,10 € * 39,98 km) + zone_1_km (1,10 € * 5,91 km) + 14,00 € Kombi"
|
||||
"22014656","40,96","0.00","12,01","Berlin Hbf (tief), SP","Europaplatz .","10557, 14476","45,5","17:00 (05.05.)","13:28 (05.05.)","46,55","Europaplatz;.;10557;Berlin;DE|Am Mühlenberg 13;.;14476;Potsdam;DE","64,20 €","45,00 Km in zone_1_km (1,10 € * 22,74 km) + zone_2_km (1,10 € * 22,90 km) + 14,00 € Kombi"
|
||||
"22017518","38,17","0.00","18","Baustelle","Unter den Eichen 27","14478, 13509","40,37","11:09 (06.05.)","11:09 (06.05.)","46,55","Unter den Eichen;27;14478;Potsdam;DE|Holzhauser Str.;139;13509;Berlin;DE","53,66 €","36,00 Km in zone_2_km (1,10 € * 13,15 km) + zone_1_km (1,10 € * 22,90 km) + 14,00 € Kombi"
|
||||
"22018447","36,31","0.00","22","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 13509","23,27","18:53 (06.05.)","18:55 (06.05.)","46,55","Hindenburgdamm;30a;12203;Berlin;DE|Am Nordgraben;2;13509;Berlin;DE","39,76 €","23,00 Km in zone_1_km (1,10 € * 23,42 km) + 14,00 € Kombi"
|
||||
"22017353","38,17","0.00","18","Dr.-Ing. Rainer Heyer","Barbara-McClintock-Str. 11","12489, 16761","42,47","07:15 (07.05.)","16:37 (06.05.)","46,55","Barbara-McClintock-Str.;11;12489;Berlin;DE|August-Conrad-Str.;40;16761;Hennigsdorf;DE","59,88 €","41,00 Km in zone_1_km (1,10 € * 38,89 km) + zone_2_km (1,10 € * 2,82 km) + 14,00 € Kombi"
|
||||
"22019840","38,17","0.00","18","OBI GmbH & Co. Deutschland KG","Waidmannsluster Damm 190","13469, 14469","","13:29 (07.05.)","","46,55","Waidmannsluster Damm;190;13469;Berlin;DE|Am Raubfang;3;14469;Potsdam - Bornim;DE","62,97 €","44,00 Km in zone_1_km (1,10 € * 26,32 km) + zone_2_km (1,10 € * 18,20 km) + 14,00 € Kombi"
|
||||
"22020415","36,31","0.00","22","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 13509","23,27","21:37 (07.05.)","21:39 (07.05.)","46,55","Hindenburgdamm;30a;12203;Berlin;DE|Am Nordgraben;2;13509;Berlin;DE","39,76 €","23,00 Km in zone_1_km (1,10 € * 23,42 km) + 14,00 € Kombi"
|
||||
"22014458","37,73","0.00","18","Edelstahl-Haese","Rüdersdorfer Str. 55","15569, 10117","31,81","09:00 (05.05.)","16:25 (04.05.)","46,01","Rüdersdorfer Str.;55;15569;Woltersdorf;DE|Behrenstr.;72;10117;Berlin;DE","48,98 €","31,00 Km in zone_2_km (1,10 € * 14,55 km) + zone_1_km (1,10 € * 17,25 km) + 14,00 € Kombi"
|
||||
"22015673","37,73","0.00","18","sto_Kst. Kunde","Ullsteinstr. 98-106","12109, 16321","75,14","11:28 (05.05.)","11:30 (05.05.)","46,01","Ullsteinstr.;98-106;12109;Berlin;DE|Johann-Friedrich-A.-Borsig-Str.;.;16321;Bernau bei Berlin - Bernau;DE","60,77 €","42,00 Km in zone_1_km (1,10 € * 28,93 km) + zone_2_km (1,10 € * 13,59 km) + 14,00 € Kombi"
|
||||
"22018445","37,51","0.00","17,99","Humboldt-Klinikum","Am Nordgraben 2","13509, 12351","28,28","21:00 (06.05.)","18:59 (06.05.)","45,74","Am Nordgraben;2;13509;Berlin;DE|Kormoranweg;45;12351;Berlin;DE","45,08 €","28,00 Km in zone_1_km (1,10 € * 28,25 km) + 14,00 € Kombi"
|
||||
"22017701","37,44","0.00","18","Minimax GmbH/ Lager","Gottlieb-Dunkel-Str. 20-21","12099, 14974","0","07:00 (07.05.)","06:33 (07.05.)","45,66","Gottlieb-Dunkel-Str.;20-21;12099;Berlin;DE|An der Eichspitze;Süd;14974;Ludwigsfelde;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22016754","37,29","0.00","18,01","Seka AG","Werkstättenweg 4-5","14055, 16515","38,88","07:38 (06.05.)","08:40 (06.05.)","45,48","Werkstättenweg;4-5;14055;Berlin;DE|Adolf-Dechert-Str.;1;16515;Oranienburg;DE","53,53 €","36,00 Km in zone_1_km (1,10 € * 18,85 km) + zone_2_km (1,10 € * 17,09 km) + 14,00 € Kombi"
|
||||
"22017314","35,47","0.00","22,01","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 16321","","10:16 (06.05.)","","45,48","Hindenburgdamm;30a;12203;Berlin;DE|Ladeburger Str.;13-17;16321;Bernau;DE","66,33 €","47,00 Km in zone_1_km (1,10 € * 32,09 km) + zone_2_km (1,10 € * 15,48 km) + 14,00 € Kombi"
|
||||
"22014664","35,05","0.00","22,01","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 13585","23,05","00:09 (05.05.)","00:34 (05.05.)","44,94","Hindenburgdamm;30a;12203;Berlin;DE|Neue Bergstr.;6;13585;Berlin;DE","37,50 €","21,00 Km in zone_1_km (1,10 € * 21,36 km) + 14,00 € Kombi"
|
||||
"22014668","35,05","0.00","22,01","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 13585","23,05","04:47 (05.05.)","04:51 (05.05.)","44,94","Hindenburgdamm;30a;12203;Berlin;DE|Neue Bergstr.;6;13585;Berlin;DE","37,50 €","21,00 Km in zone_1_km (1,10 € * 21,36 km) + 14,00 € Kombi"
|
||||
"22016621","35,05","0.00","22,01","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 13585","23,05","02:31 (06.05.)","04:38 (06.05.)","44,94","Hindenburgdamm;30a;12203;Berlin;DE|Neue Bergstr.;6;13585;Berlin;DE","37,50 €","21,00 Km in zone_1_km (1,10 € * 21,36 km) + 14,00 € Kombi"
|
||||
"22014849","36,85","0.00","18","Rausch Straßen- und Tiefbau","Chemnitzer Str. 19","14612, 12489","39,35","08:00 (06.05.)","07:17 (06.05.)","44,94","Chemnitzer Str.;19;14612;Falkensee;DE|Rudower Chaussee;48;12489;Berlin;DE","57,37 €","39,00 Km in zone_2_km (1,10 € * 7,13 km) + zone_1_km (1,10 € * 32,30 km) + 14,00 € Kombi"
|
||||
"22017672","36,85","0.00","18","Ferrum Lasercut","Bruno-Buergel-Weg 142-144","12439, 14612","43,23","09:00 (07.05.)","10:17 (07.05.)","44,94","Bruno-Buergel-Weg;142-144;12439;Berlin;DE|Straße der Einheit;102;14612;Falkensee;DE","57,78 €","39,00 Km in zone_1_km (1,10 € * 34,64 km) + zone_2_km (1,10 € * 5,16 km) + 14,00 € Kombi"
|
||||
"22017945","35,97","0.00","18,03","KÖNIGSDRUCK","Alt-Reinickendorf 28","13407, 10243, 12099","20,91","13:35 (06.05.)","13:33 (06.05.)","43,88","Alt-Reinickendorf;28;13407;Berlin;DE|Mühlenstr.;9-10;10243;Berlin;DE|Tempelhofer Damm;165;12099;Berlin;DE","44,09 €","21,00 Km in zone_1_km (1,10 € * 20,99 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22016779","35,97","0.00","18,01","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 16761","34,21","07:48 (06.05.)","09:13 (06.05.)","43,87","Gradestr.;46-50;12347;Berlin;DE|Walter-Kleinow-Ring;6;16761;Hennigsdorf;DE","51,80 €","34,00 Km in zone_1_km (1,10 € * 30,47 km) + zone_2_km (1,10 € * 3,89 km) + 14,00 € Kombi"
|
||||
"22017810","35,97","0.00","18,01","A & K Anschlagmittel u. Hebezeuge","Otisstr. 49","13403, 15370","64,96","12:45 (06.05.)","14:05 (06.05.)","43,87","Otisstr.;49;13403;Berlin;DE|Fredersdorfer Str.;31;15370;Fredersdorf-Vogelsdorf - Vogelsdorf;DE","85,45 €","65,00 Km in zone_1_km (1,10 € * 13,49 km) + zone_2_km (1,10 € * 51,46 km) + 14,00 € Kombi"
|
||||
"22014948","35,53","0.00","18,02","MSK Werkzeughandel","Königin-Elisabeth-Str. 9a","14059, 15745","39,71","09:00 (05.05.)","08:50 (05.05.)","43,34","Königin-Elisabeth-Str.;9a;14059;Berlin;DE|Dorfaue;15;15745;Wildau;DE","57,77 €","39,00 Km in zone_1_km (1,10 € * 24,15 km) + zone_2_km (1,10 € * 15,64 km) + 14,00 € Kombi"
|
||||
"22015319","35,53","0.00","18,02","Seyer & Brosch Mobility Service","Berliner Str. 19a","13189, 15831","58,1","09:56 (05.05.)","09:57 (05.05.)","43,34","Berliner Str.;19a;13189;Berlin;DE|Otto-Porath-Platz;2-3;15831;Blankenfelde-Mahlow - Groß Kienitz;DE","107,16 €","84,00 Km in zone_1_km (1,10 € * 15,33 km) + zone_2_km (1,10 € * 69,36 km) + 14,00 € Kombi"
|
||||
"22014473","32,1","30.00","25,93","Treskow Apotheke","Ehrenfelsstr. 46","10318, .","0","17:00 (05.05.)","15:35 (05.05.)","43,34","Ehrenfelsstr.;46;10318;Berlin;DE|.;.;.;.;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22016579","32,1","30.00","25,93","Treskow Apotheke","Ehrenfelsstr. 46","10318, .","","17:00 (06.05.)","15:21 (06.05.)","43,34","Ehrenfelsstr.;46;10318;Berlin;DE|.;.;.;.;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22018435","32,1","30.00","25,93","Treskow Apotheke","Ehrenfelsstr. 46","10318, .","0","17:00 (07.05.)","16:00 (07.05.)","43,34","Ehrenfelsstr.;46;10318;Berlin;DE|.;.;.;.;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22015975","35,1","0.00","18,01","AGAPLESION BETHANIEN DIAKONIE","Dieffenbachstr. 40","10967, 13581, 13589","29,07","13:12 (05.05.)","13:16 (05.05.)","42,81","Dieffenbachstr.;40;10967;Berlin;DE|Spandauer Burgwall;29;13581;Berlin;DE|Radelandstr.;199-205;13589;Berlin;DE","52,97 €","29,00 Km in zone_1_km (1,10 € * 29,06 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22016547","35,1","0.00","17,99","Tepper Aufzüge GmbH","Herzbergstr. 50","10365, 10587","14,95","17:04 (05.05.)","17:04 (05.05.)","42,8","Herzbergstr.;50;10365;Berlin;DE|Loschmidtstr.;19;10587;Berlin;DE","30,43 €","14,00 Km in zone_1_km (1,10 € * 14,94 km) + 14,00 € Kombi"
|
||||
"22010296","35,1","0.00","17,99","Martin-Luther-Krankenhaus-","Caspar-Theyss-Str. 33","14193, 10585, 10713, 14193","12,02","07:45 (06.05.)","07:04 (06.05.)","42,8","Caspar-Theyss-Str.;33;14193;Berlin;DE|Otto-Suhr-Allee;100;10585;Berlin;DE|Hohenzollerndamm;.;10713;Berlin;DE|Caspar-Theyss-Str.;33;14193;Berlin;DE","41,23 €","12,00 Km in zone_1_km (1,10 € * 12,03 km) + 14,00 € Kombi + 7,00 € pro 2 weitere Adresse(n)"
|
||||
"22016270","35,1","0.00","17,99","Neuser GmbH","Parkallee 15","14974, 10365","48,66","08:00 (06.05.)","07:01 (06.05.)","42,8","Parkallee;15;14974;Ludwigsfelde - Genshagen;DE|Josef-Orlopp-Str.;58;10365;Berlin;DE","68,16 €","49,00 Km in zone_2_km (1,10 € * 29,74 km) + zone_1_km (1,10 € * 19,50 km) + 14,00 € Kombi"
|
||||
"22018007","35,1","0.00","17,99","IWAM GmbH","Boxberger Straße 10","12681, 15831","70,44","13:53 (06.05.)","13:54 (06.05.)","42,8","Boxberger Straße;10;12681;Berlin;DE|Otto-Porath-Platz;2;15831;Groß Kienitz;DE","91,47 €","70,00 Km in zone_1_km (1,10 € * 4,75 km) + zone_2_km (1,10 € * 65,68 km) + 14,00 € Kombi"
|
||||
"22007945","34,66","0.00","18","Kantine Partyservice","Chausseestr. 3","15745, 10557","35,35","08:00 (05.05.)","16:24 (04.05.)","42,27","Chausseestr.;3;15745;Wildau;DE|Europaplatz;1;10557;Berlin;DE","53,12 €","35,00 Km in zone_2_km (1,10 € * 14,03 km) + zone_1_km (1,10 € * 21,53 km) + 14,00 € Kombi"
|
||||
"22017277","34,66","0.00","18","WeGo Systembaustoffe GmbH","Gottlieb-Dunkel-Str. 20-22","12099, 14974","19,98","10:10 (06.05.)","10:14 (06.05.)","42,27","Gottlieb-Dunkel-Str.;20-22;12099;Berlin;DE|Uferring;..;14974;Ludwigsfelde - Genshagen;DE","35,98 €","20,00 Km in zone_1_km (1,10 € * 7,60 km) + zone_2_km (1,10 € * 12,38 km) + 14,00 € Kombi"
|
||||
"22018636","34,66","0.00","18","MAN Truck + Bus Deutschland","Siegfriedstr. 49-51","10365, 12681, 13156","20,67","07:45 (07.05.)","09:31 (07.05.)","42,27","Siegfriedstr.;49-51;10365;Berlin;DE|Nordring;5;12681;Berlin;DE|Buchholzer Str.;32;13156;Berlin;DE","43,66 €","20,00 Km in zone_1_km (1,10 € * 20,60 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22019656","34,66","0.00","18","PROSOL Lacke + Farben GmbH","Gaußstr. 17","10589, 16348","50,54","12:25 (07.05.)","12:46 (07.05.)","42,27","Gaußstr.;17;10589;Berlin;DE|Ulmenstr.;19;16348;Wandlitz;DE","69,57 €","50,00 Km in zone_1_km (1,10 € * 14,36 km) + zone_2_km (1,10 € * 36,16 km) + 14,00 € Kombi"
|
||||
"22019787","34,66","0.00","18","Scania Vertrieb und Service GmbH","Ordensmeisterstr. 40","12099, 14974","20,85","13:10 (07.05.)","13:15 (07.05.)","42,27","Ordensmeisterstr.;40;12099;Berlin;DE|Kastanienweg;7;14974;Ludwigsfelde / OT Genshagen;DE","36,92 €","20,00 Km in zone_1_km (1,10 € * 7,31 km) + zone_2_km (1,10 € * 13,53 km) + 14,00 € Kombi"
|
||||
"22015044","34,44","0.00","18","Hilti Deutschland GmbH","Holzhauser Str. 152a","13509, 12487","32,02","08:54 (05.05.)","08:54 (05.05.)","42","Holzhauser Str.;152a;13509;Berlin;DE|Groß-Berliner-Damm;92-94;12487;Berlin;DE","48,35 €","31,00 Km in zone_1_km (1,10 € * 31,23 km) + 14,00 € Kombi"
|
||||
"22018408","36,82","0.00","12","CO.DON GmbH - 3.OG Empfang","Warthestr. 21 .","14513, 10557","20,38","15:00 (07.05.)","14:26 (07.05.)","41,84","Warthestr. 21;.;14513;Teltow;DE|Europaplatz;.;10557;Berlin;DE","36,41 €","20,00 Km in zone_2_km (1,10 € * 2,73 km) + zone_1_km (1,10 € * 17,64 km) + 14,00 € Kombi"
|
||||
"22012020","34,22","0.00","18,02","Hülle & Fülle GmbH","Zossener Str. 41","10961, 10623, 10178","13,72","09:30 (05.05.)","09:18 (05.05.)","41,74","Zossener Str.;41;10961;Berlin;DE|Kantstr.;17;10623;Berlin;DE|Sophienstr.;6;10178;Berlin;DE","36,33 €","13,00 Km in zone_1_km (1,10 € * 13,94 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015277","34,22","0.00","18,02","Kanzlei Sari","Turmstr. 14","10559, 12051, 10559","24,71","09:46 (05.05.)","10:08 (05.05.)","41,74","Turmstr.;14;10559;Berlin;DE|Nogatstr.;28;12051;Berlin;DE|Turmstr.;14;10559;Berlin;DE","44,39 €","21,00 Km in zone_1_km (1,10 € * 21,26 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015504","34,22","0.00","18,02","AAS Aufzüge Körner + Heiden GmbH","Stieffring 8","13627, 12279, 13627","44,87","10:44 (05.05.)","10:45 (05.05.)","41,74","Stieffring;8;13627;Berlin;DE|Stadtilmer Weg;8;12279;Berlin;DE|Stieffring;8;13627;Berlin;DE","69,65 €","44,00 Km in zone_1_km (1,10 € * 44,23 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015618","34,22","0.00","18,02","Capital Baustoffe GmbH","Bergholzstr. 4","12099, 10437, 12099","","11:13 (05.05.)","","41,74","Bergholzstr.;4;12099;Berlin;DE|Lychener Strasse;54;10437;Berlin;DE|Bergholzstr.;4;12099;Berlin;DE","52,35 €","28,00 Km in zone_1_km (1,10 € * 28,50 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015888","34,22","0.00","18,02","Kohlstock GmbH","Oberlandstr. 13-14","12099, 12349, 12307","12,52","12:37 (05.05.)","12:39 (05.05.)","41,74","Oberlandstr.;13-14;12099;Berlin;DE|Hüfnerweg;9;12349;Berlin;DE|Prinzessinnenstr.;30;12307;Berlin;DE","34,23 €","12,00 Km in zone_1_km (1,10 € * 12,03 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015947","34,22","0.00","18,02","WEIHE GmbH","Beusselstr. 44n-q","10553, 10553, 10553","4,51","12:58 (05.05.)","13:02 (05.05.)","41,74","Beusselstr.;44n-q;10553;Berlin;DE|Huttenstr.;37;10553;Berlin;DE|Beusselstr.;44n-q;10553;Berlin;DE","25,95 €","4,00 Km in zone_1_km (1,10 € * 4,50 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22016121","34,22","0.00","18,02","Kanzlei Runge & Partner","Heerstr. 616","13591, 13351, 13591","38,33","14:02 (05.05.)","14:10 (05.05.)","41,74","Heerstr.;616;13591;Berlin;DE|Togostr.;38C;13351;Berlin;DE|Heerstr.;616;13591;Berlin;DE","63,15 €","38,00 Km in zone_1_km (1,10 € * 38,32 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015965","34,22","0.00","18,02","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 10559 , 14195","36,43","07:30 (06.05.)","07:04 (06.05.)","41,74","Gradestr.;46-50;12347;Berlin;DE|Stephanstrasse;38-43;10559;Berlin;DE|Archivstrasse;12-14;14195;Berlin;DE","52,55 €","28,00 Km in zone_1_km (1,10 € * 28,68 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22016956","34,22","0.00","18,02","Eckard Kanold GmbH &","Bessemerstr. 24-26","12103, 10365, 12103","33,68","08:42 (06.05.)","10:23 (06.05.)","41,74","Bessemerstr.;24-26;12103;Berlin;DE|Herzbergstr.;127;10365;Berlin;DE|Bessemerstr.;24-26;12103;Berlin;DE","54,26 €","30,00 Km in zone_1_km (1,10 € * 30,24 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22014148","34,22","0.00","18,02","Knackpunkt Berlin Inh. Angela Kruse","Muellerstr. 163b","13353, 13509, 13353","14,48","12:00 (06.05.)","","41,74","Muellerstr.;163b;13353;Berlin;DE|Holzhauser Str.;55;13509;Berlin;DE|Muellerstr.;164;13353;Berlin;DE","37,07 €","14,00 Km in zone_1_km (1,10 € * 14,61 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018312","34,22","0.00","18,02","R + S Aufzugbau GmbH","Herzbergstr. 87-99","10365, 10318, 12559","15,97","06:55 (07.05.)","15:48 (06.05.)","41,74","Herzbergstr.;87-99;10365;Berlin;DE|Treskowallee;118;10318;Berlin;DE|Pablo-Neruda-Str.;6-7;12559;Berlin;DE","38,58 €","16,00 Km in zone_1_km (1,10 € * 15,98 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22016915","34,22","0.00","18,02","STADTBOTE GmbH NL Berlin","Colditzstr. 33","12099, 10553, 12099","37,3","09:00 (07.05.)","08:03 (07.05.)","41,74","Colditzstr.;33;12099;Berlin;DE|Ufnaustr.;6;10553;Berlin;DE|Colditzstr.;33;12099;Berlin;DE","58,42 €","34,00 Km in zone_1_km (1,10 € * 34,02 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018928","34,22","0.00","18,02","Merkur Schoppe - Kundendienst","Holzhauser Str. 139","13509, 10405, 13509","26,11","09:05 (07.05.)","09:05 (07.05.)","41,74","Holzhauser Str.;139;13509;Berlin;DE|Lilli-Henoch-Str.;3;10405;Berlin;DE|Holzhauser Str.;139;13509;Berlin;DE","48,69 €","25,00 Km in zone_1_km (1,10 € * 25,17 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018973","34,22","0.00","18,02","Bauschlosserei Karras GmbH","Osloer Str. 112","13359, 10963, 12099","12,78","09:17 (07.05.)","09:18 (07.05.)","41,74","Osloer Str.;112;13359;Berlin;DE|Obentrautstr.;72;10963;Berlin;DE|Ringbahnstr.;22-26;12099;Berlin;DE","36,25 €","13,00 Km in zone_1_km (1,10 € * 13,86 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22019018","34,22","0.00","18,02","Hasse + Wrede GmbH","Georg-Knorr-Str. 4","12681, 12689, 12681","6,46","09:25 (07.05.)","09:46 (07.05.)","41,74","Georg-Knorr-Str.;4;12681;Berlin;DE|Hellersdorfer Weg;35;12689;Berlin;DE|Georg-Knorr-Str.;4;12681;Berlin;DE","28,11 €","6,00 Km in zone_1_km (1,10 € * 6,46 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22019027","34,22","0.00","18,02","Scholz Elektrotechnik GmbH","Lauenburger Str. 85","12169, 10719, 12169","16,64","09:26 (07.05.)","09:28 (07.05.)","41,74","Lauenburger Str.;85;12169;Berlin;DE|Emser Str.;3;10719;Berlin;DE|Lauenburger Str.;85;12169;Berlin;DE","39,29 €","16,00 Km in zone_1_km (1,10 € * 16,63 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22016571","34,22","0.00","18,02","Johannesstift Diakonie gAG","Siemensdamm 50","13629, 10969, 13629","37,06","10:30 (07.05.)","12:41 (06.05.)","41,74","Siemensdamm;50;13629;Berlin;DE|Jakobikirchstr.;6;10969;Berlin;DE|Siemensdamm;50;13629;Berlin;DE","51,73 €","28,00 Km in zone_1_km (1,10 € * 27,94 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22019313","34,22","0.00","18,02","Alloheim Senioren-Residenzen Dritte","Schieritzstr. 30","10409, 12049, 10409","16,84","10:40 (07.05.)","10:41 (07.05.)","41,74","Schieritzstr.;30;10409;Berlin;DE|Hermannstr.;7-8;12049;Berlin;DE|Schieritzstr.;30;10409;Berlin;DE","39,52 €","16,00 Km in zone_1_km (1,10 € * 16,84 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22014865","34,22","0.00","18","Fa. Kindling","Ahrensfelder Chaussee 150","12689, 16761","47,8","08:08 (05.05.)","08:09 (05.05.)","41,73","Ahrensfelder Chaussee;150;12689;Berlin;DE|August-Conrad-Str.;40;16761;Hennigsdorf;DE","66,57 €","47,00 Km in zone_1_km (1,10 € * 4,87 km) + zone_2_km (1,10 € * 42,92 km) + 14,00 € Kombi"
|
||||
"22018083","33,78","0.00","18,01","Minimax GmbH / Lager","Gottlieb-Dunkel-Str. 20-21","12099, 15537","","07:00 (07.05.)","06:31 (07.05.)","41,2","Gottlieb-Dunkel-Str.;20-21;12099;Berlin;DE|Ahornstr.;6 D;15537;Grünheide / OT Freienbrink;DE","64,57 €","46,00 Km in zone_1_km (1,10 € * 12,16 km) + zone_2_km (1,10 € * 33,81 km) + 14,00 € Kombi"
|
||||
"22018540","33,78","0.00","18,01","Minimax GmbH / Lager","Gottlieb-Dunkel-Str. 20-21","12099, 15537","","07:08 (07.05.)","09:56 (07.05.)","41,2","Gottlieb-Dunkel-Str.;20-21;12099;Berlin;DE|Ahornstr.;6 D;15537;Grünheide / OT Freienbrink;DE","64,57 €","46,00 Km in zone_1_km (1,10 € * 12,16 km) + zone_2_km (1,10 € * 33,81 km) + 14,00 € Kombi"
|
||||
"22018710","33,78","0.00","18,01","Bürotechnik Krause","Werner-von-Siemens-Str. 1","15566, 13129","34,23","08:30 (07.05.)","08:45 (07.05.)","41,2","Werner-von-Siemens-Str.;1;15566;Schöneiche b. Berlin;DE|Karower Damm;9-15;13129;Berlin;DE","51,65 €","34,00 Km in zone_2_km (1,10 € * 28,71 km) + zone_1_km (1,10 € * 5,52 km) + 14,00 € Kombi"
|
||||
"22019213","33,78","0.00","18,01","Dosch Messapparate GmbH","Kamenzer Damm 85","12249, 16727","41,56","10:09 (07.05.)","10:13 (07.05.)","41,2","Kamenzer Damm;85;12249;Berlin;DE|Bahnstr.;26;16727;Velten;DE","59,71 €","41,00 Km in zone_1_km (1,10 € * 29,51 km) + zone_2_km (1,10 € * 12,04 km) + 14,00 € Kombi"
|
||||
"22019682","33,78","0.00","18,01","SSG Schrauben Scholz GmbH","Lübarser Str. 19","13435, 15827","56,19","12:34 (07.05.)","12:36 (07.05.)","41,2","Lübarser Str.;19;13435;Berlin;DE|Ludwig-Erhard-Ring;7;15827;Blankenfelde-Mahlow;DE","62,77 €","44,00 Km in zone_1_km (1,10 € * 34,25 km) + zone_2_km (1,10 € * 10,09 km) + 14,00 € Kombi"
|
||||
"22016002","35,81","0.00","11,99","WISAG Berlin-Brandenburg","Georg-Wulf-Straße 1 .","12529, 13355","","15:00 (06.05.)","12:58 (06.05.)","40,69","Georg-Wulf-Straße 1;.;12529;Schönefeld;DE|Bernauer Straße 111;.;13355;Berlin;DE","47,92 €","30,00 Km in zone_2_km (1,10 € * 7,40 km) + zone_1_km (1,10 € * 23,44 km) + 14,00 € Kombi"
|
||||
"22014837","33,34","0.00","18","Fr. Zocher - privat","Straße der Jugend 43","14974, 10439","52,7","07:59 (05.05.)","08:46 (05.05.)","40,66","Straße der Jugend;43;14974;Ludwigsfelde;DE|Isländische Str.;6;10439;Berlin;DE","67,41 €","48,00 Km in zone_2_km (1,10 € * 23,44 km) + zone_1_km (1,10 € * 25,11 km) + 14,00 € Kombi"
|
||||
"22015707","33,34","0.00","18","TK Aufzüge GmbH","Pohlstr. 20","10785, 14974","28,33","11:37 (05.05.)","11:44 (05.05.)","40,66","Pohlstr.;20;10785;Berlin;DE|Teltowkehre;25;14974;Ludwigsfelde;DE","46,41 €","29,00 Km in zone_1_km (1,10 € * 13,44 km) + zone_2_km (1,10 € * 16,02 km) + 14,00 € Kombi"
|
||||
"22016095","33,34","0.00","18","Oskar Böttcher GmbH & Co. KG","Gottlieb-Daimler-Str. 13","14974, 10117","25,78","13:53 (05.05.)","13:54 (05.05.)","40,66","Gottlieb-Daimler-Str.;13;14974;Ludwigsfelde;DE|Kronenstr.;48;10117;Berlin;DE","42,36 €","25,00 Km in zone_2_km (1,10 € * 12,31 km) + zone_1_km (1,10 € * 13,47 km) + 14,00 € Kombi"
|
||||
"22016642","33,34","0.00","18","Minimax GmbH/ Lager","Gottlieb-Dunkel-Str. 20-21","12099, 14974","0","06:28 (06.05.)","06:33 (06.05.)","40,66","Gottlieb-Dunkel-Str.;20-21;12099;Berlin;DE|An der Eichspitze;süd;14974;Ludwigsfelde;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22017769","33,34","0.00","18","Oskar Böttcher GmbH & Co. KG","Gottlieb-Daimler-Str. 13","14974, 12487","40,32","12:31 (06.05.)","14:11 (06.05.)","40,66","Gottlieb-Daimler-Str.;13;14974;Ludwigsfelde;DE|Groß-Berliner-Damm;96a;12487;Berlin;DE","58,35 €","40,00 Km in zone_2_km (1,10 € * 32,96 km) + zone_1_km (1,10 € * 7,36 km) + 14,00 € Kombi"
|
||||
"22017785","33,34","0.00","18","Oskar Böttcher GmbH & Co. KG","Gottlieb-Daimler-Str. 13","14974, 10587","37,76","12:38 (06.05.)","12:42 (06.05.)","40,66","Gottlieb-Daimler-Str.;13;14974;Ludwigsfelde;DE|Hallerstr.;1;10587;Berlin;DE","55,53 €","37,00 Km in zone_2_km (1,10 € * 21,26 km) + zone_1_km (1,10 € * 16,49 km) + 14,00 € Kombi"
|
||||
"22019142","33,34","0.00","18","Minimax GmbH / Lager","Gottlieb-Dunkel-Str. 20-21","12099, 14974","0","09:54 (07.05.)","10:03 (07.05.)","40,66","Gottlieb-Dunkel-Str.;20-21;12099;Berlin;DE|An der Eichspitze;SÜD;14974;Ludwigsfelde;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22017649","33,21","0.00","18","Deutsche Post AG - BZ 14","Ruhlsdorfer Str. 73-77","14532, 12529","27,67","11:49 (06.05.)","11:51 (06.05.)","40,5","Ruhlsdorfer Str.;73-77;14532;Stahnsdorf;DE|An den Gehren;3;12529;Schönefeld;DE","46,63 €","27,00 Km in zone_2_km (1,10 € * 27,66 km), Anfahrt in zone_2_eap (0,55 € * 4,00 km) + 14,00 € Kombi"
|
||||
"22014203","32,9","0.00","18,02","DRK Blutspendedienst gGmbH Institut Potsdam","Horstweg 8a","14482, 12203","24,95","12:30 (05.05.)","11:46 (05.05.)","40,13","Horstweg;8a;14482;Potsdam;DE|Hindenburgdamm;30a;12203;Berlin;DE","37,71 €","21,00 Km in zone_2_km (1,10 € * 11,57 km) + zone_1_km (1,10 € * 9,98 km) + 14,00 € Kombi"
|
||||
"22011260","32,9","0.00","18,02","Praxis Dr. Metzner","Luisenplatz 1","14471, 14199","27,74","14:00 (06.05.)","13:15 (06.05.)","40,13","Luisenplatz;1;14471;Potsdam;DE|Hohenzollerndamm;123;14199;Berlin;DE","44,62 €","27,00 Km in zone_2_km (1,10 € * 15,82 km) + zone_1_km (1,10 € * 12,02 km) + 14,00 € Kombi"
|
||||
"22017523","32,9","0.00","18,02","Dachdecker-Einkauf Ost eG","Freiheit 20","13597, 14471","26,25","06:30 (07.05.)","06:00 (07.05.)","40,13","Freiheit;20;13597;Berlin;DE|Geschwister-Scholl-Straße;56;14471;Potsdam;DE","42,86 €","26,00 Km in zone_1_km (1,10 € * 11,56 km) + zone_2_km (1,10 € * 14,68 km) + 14,00 € Kombi"
|
||||
"22018669","32,9","0.00","18,02","HTI Bär + Ollenroth KG","Mittenwalder Str. 8","15834, 10779","40,43","07:57 (07.05.)","07:59 (07.05.)","40,13","Mittenwalder Str.;8;15834;Rangsdorf / OT Groß Machnow;DE|Martin-Luther-Str.;48;10779;Berlin;DE","58,70 €","40,00 Km in ausserhalb_km (1,10 € * 1,55 km) + zone_2_km (1,10 € * 19,75 km) + zone_1_km (1,10 € * 19,34 km) + 14,00 € Kombi"
|
||||
"22019995","32,9","0.00","18,02","Erich Weit GmbH","Colditzstr. 38-42","12099, 14480","33,69","14:16 (07.05.)","14:27 (07.05.)","40,13","Colditzstr.;38-42;12099;Berlin;DE|Am Silbergraben;1;14480;Potsdam;DE","51,07 €","33,00 Km in zone_1_km (1,10 € * 23,85 km) + zone_2_km (1,10 € * 9,85 km) + 14,00 € Kombi"
|
||||
"22020401","31,3","0.00","22","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 13353","19,93","19:19 (07.05.)","19:19 (07.05.)","40,13","Hindenburgdamm;30a;12203;Berlin;DE|Augustenburger Platz;1;13353;Berlin;DE","36,09 €","20,00 Km in zone_1_km (1,10 € * 20,08 km) + 14,00 € Kombi"
|
||||
"22018735","32,57","0.00","18,02","Bär & Ollenroth KG","Mittenwalder Str. 8","15834, 12524","23,12","08:17 (07.05.)","10:03 (07.05.)","39,73","Mittenwalder Str.;8;15834;Rangsdorf - Groß Machnow;DE|Bruno-Taut-Str.;6;12524;Berlin;DE","39,43 €","23,00 Km in ausserhalb_km (1,10 € * 1,55 km) + zone_2_km (1,10 € * 18,42 km) + zone_1_km (1,10 € * 3,15 km) + 14,00 € Kombi"
|
||||
"22018752","32,57","0.00","18,02","BAeR & OLLENROTH KG","Mittenwalder Str. 8","15834, 12105","20,84","08:21 (07.05.)","09:01 (07.05.)","39,73","Mittenwalder Str.;8;15834;Rangsdorf / OT Gross Machnow;DE|Rathausstr.;56;12105;Berlin;DE","36,92 €","20,00 Km in ausserhalb_km (1,10 € * 1,55 km) + zone_2_km (1,10 € * 11,55 km) + zone_1_km (1,10 € * 7,74 km) + 14,00 € Kombi"
|
||||
"22018919","32,46","0.00","18,01","WNW","Lindenbahn 20","14532, 10247","36,54","09:03 (07.05.)","09:14 (07.05.)","39,59","Lindenbahn;20;14532;Kleinmachnow;DE|Mainzer Str.;14;10247;Berlin;DE","50,99 €","33,00 Km in zone_2_km (1,10 € * 3,07 km) + zone_1_km (1,10 € * 30,56 km) + 14,00 € Kombi"
|
||||
"22019219","31,59","0.00","17,99","Herr Bomann","Regattastr. 31","12527, 13509","35,11","10:13 (07.05.)","12:34 (07.05.)","38,52","Regattastr.;31;12527;Berlin;DE|Holzhauser Str.;76;13509;Berlin;DE","53,23 €","35,00 Km in zone_1_km (1,10 € * 35,66 km) + 14,00 € Kombi"
|
||||
"22017459","31,41","0.00","17,99","Mercedes-Benz AG","Seeburger Str. 27","13581, 12555","38,32","10:54 (06.05.)","11:21 (06.05.)","38,3","Seeburger Str.;27;13581;Berlin;DE|Köpenicker Str.;325;12555;Berlin;DE","56,24 €","38,00 Km in zone_1_km (1,10 € * 38,40 km) + 14,00 € Kombi"
|
||||
"22019637","31,41","0.00","17,99","Micro Precision","Köpenicker Str. 325","12555, 13581","38,48","12:19 (07.05.)","14:43 (07.05.)","38,3","Köpenicker Str.;325;12555;Berlin;DE|Seeburger Str.;27;13581;Berlin;DE","53,57 €","36,00 Km in zone_1_km (1,10 € * 35,97 km) + 14,00 € Kombi"
|
||||
"22016466","31,15","0.00","18","KNAUER Wissenschaftliche Geräte","Hegauer Weg 38","14163, 12681","31,6","07:00 (06.05.)","07:14 (06.05.)","37,99","Hegauer Weg;38;14163;Berlin;DE|Coswiger Str.;16;12681;Berlin;DE","45,58 €","28,00 Km in zone_1_km (1,10 € * 28,71 km) + 14,00 € Kombi"
|
||||
"22015491","30,71","0.00","18","WAREMA Renkhoff SE","Am Lilograben 3","14979, 13051","40,38","10:41 (05.05.)","10:42 (05.05.)","37,45","Am Lilograben;3;14979;Großbeeren;DE|Wustrower Str.;22-24;13051;Berlin;DE","58,41 €","40,00 Km in zone_2_km (1,10 € * 17,14 km) + zone_1_km (1,10 € * 23,23 km) + 14,00 € Kombi"
|
||||
"22019041","30,71","0.00","18","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 16567","37,08","09:30 (07.05.)","09:55 (07.05.)","37,45","Gradestr.;46-50;12347;Berlin;DE|Kastanienallee;32;16567;Mühlenbeck;DE","54,94 €","37,00 Km in zone_1_km (1,10 € * 28,93 km) + zone_2_km (1,10 € * 8,29 km) + 14,00 € Kombi"
|
||||
"22019935","30,71","0.00","18","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 16567","37,08","13:56 (07.05.)","13:58 (07.05.)","37,45","Gradestr.;46-50;12347;Berlin;DE|Kastanienallee;32;16567;Mühlenbeck;DE","54,94 €","37,00 Km in zone_1_km (1,10 € * 28,93 km) + zone_2_km (1,10 € * 8,29 km) + 14,00 € Kombi"
|
||||
"22014669","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","05:39 (05.05.)","05:40 (05.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € Kombi"
|
||||
"22016607","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 12159","4,33","20:56 (05.05.)","21:07 (05.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Rubensstr.;125;12159;Berlin;DE","19,50 € [M]","4,00 Km in zone_1_km (1,10 € * 4,33 km) + 14,00 € Kombi"
|
||||
"22016613","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 12351","14,66","22:03 (05.05.)","22:08 (05.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Kormoranweg;45;12351;Berlin;DE","30,10 €","14,00 Km in zone_1_km (1,10 € * 14,64 km) + 14,00 € Kombi"
|
||||
"22016620","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10967","","01:03 (06.05.)","","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Dieffenbachstr.;1;10967;Berlin;DE","27,77 €","12,00 Km in zone_1_km (1,10 € * 12,52 km) + 14,00 € Kombi"
|
||||
"22017635","30,27","0.00","18,01","Liebherr-Baumaschinen","Hermann-von-Helmholtz-Str. 1","14532, 13353","","11:45 (06.05.)","","36,92","Hermann-von-Helmholtz-Str.;1;14532;Kleinmachnow;DE|Westhafenstraße;1;13353;Berlin;DE","39,23 €","22,00 Km in zone_2_km (1,10 € * 3,19 km) + zone_1_km (1,10 € * 19,75 km) + 14,00 € Kombi"
|
||||
"22011027","30,27","0.00","18,01","IKDT GmbH","Moltkestr. 31","12203, 14050, 12203","28,14","15:00 (06.05.)","09:59 (06.05.)","36,92","Moltkestr.;31;12203;Berlin;DE|Spandauer Damm;130;14050;Berlin;DE|Moltkestr.;31;12203;Berlin;DE","50,92 €","27,00 Km in zone_1_km (1,10 € * 27,20 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018448","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 12101","8,04","18:53 (06.05.)","18:57 (06.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Baeumerplan;24;12101;Berlin;DE","22,84 €","8,00 Km in zone_1_km (1,10 € * 8,04 km) + 14,00 € Kombi"
|
||||
"22018462","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","21:38 (06.05.)","21:39 (06.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € Kombi"
|
||||
"22018463","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 12351","14,79","21:57 (06.05.)","21:58 (06.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Kormoranweg;48;12351;Berlin;DE","30,25 €","14,00 Km in zone_1_km (1,10 € * 14,77 km) + 14,00 € Kombi"
|
||||
"22018464","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","22:53 (06.05.)","22:55 (06.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € Kombi"
|
||||
"22018466","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","01:03 (07.05.)","01:07 (07.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € Kombi"
|
||||
"22020417","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10967","12,53","21:58 (07.05.)","21:58 (07.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Dieffenbachstr.;1;10967;Berlin;DE","27,77 €","12,00 Km in zone_1_km (1,10 € * 12,52 km) + 14,00 € Kombi"
|
||||
"22020421","28,79","0.00","22,02","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","23:55 (07.05.)","00:01 (08.05.)","36,92","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € Kombi"
|
||||
"22016996","29,83","0.00","18","Berliner Schrauben GmbH","Industriestr. 3","15366, 12357","17,75","09:15 (06.05.)","08:59 (06.05.)","36,38","Industriestr.;3;15366;Hoppegarten - Dahlwitz-Hoppegarten;DE|Kanalstr.;13;12357;Berlin;DE","33,51 €","17,00 Km in zone_2_km (1,10 € * 3,54 km) + zone_1_km (1,10 € * 14,20 km) + 14,00 € Kombi"
|
||||
"22017611","29,83","0.00","18","Starkloph","Tempelhofer Weg 101","12347, 15366","25,1","11:38 (06.05.)","12:42 (06.05.)","36,38","Tempelhofer Weg;101;12347;Berlin;DE|Handwerkerstr.;2;15366;Hoppegarten - Dahlwitz-Hoppegarten;DE","41,60 €","25,00 Km in zone_1_km (1,10 € * 23,11 km) + zone_2_km (1,10 € * 1,98 km) + 14,00 € Kombi"
|
||||
"22018415","29,83","0.00","18","Elektroschaltanlagenbau Gliese","Dardanellenweg 34","12109, 16656","23,8","07:00 (07.05.)","06:32 (07.05.)","36,38","Dardanellenweg;34;12109;Berlin;DE|Karower Weg;16;16656;Ahrensfelde-Lindenberg;DE","40,62 €","24,00 Km in zone_1_km (1,10 € * 23,08 km) + zone_2_km (1,10 € * 1,12 km) + 14,00 € Kombi"
|
||||
"22016581","28,17","0.00","21,99","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","18:27 (05.05.)","18:39 (05.05.)","36,11","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € Kombi"
|
||||
"22018436","28,17","0.00","21,99","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10967","12,53","18:05 (06.05.)","18:07 (06.05.)","36,11","Hindenburgdamm;30a;12203;Berlin;DE|Dieffenbachstr.;1;10967;Berlin;DE","27,77 €","12,00 Km in zone_1_km (1,10 € * 12,52 km) + 14,00 € Kombi"
|
||||
"22014879","29,39","0.00","18,02","KNAUER Wissenschaftliche Geräte","Hegauer Weg 38","14163, 13057","29","08:11 (05.05.)","09:31 (05.05.)","35,85","Hegauer Weg;38;14163;Berlin;DE|Zu den Krugwiesen;1;13057;Berlin;DE","45,75 €","28,00 Km in zone_1_km (1,10 € * 28,86 km) + 14,00 € Kombi"
|
||||
"22015351","29,39","0.00","18,02","Ociepka Chladek GBR","Wildenbruchstr. 12","12045, 14532","20,75","10:04 (05.05.)","10:05 (05.05.)","35,85","Wildenbruchstr.;12;12045;Berlin;DE|Eichenweg;9;14532;Stahnsdorf;DE","35,44 €","19,00 Km in zone_1_km (1,10 € * 18,57 km) + zone_2_km (1,10 € * 0,92 km) + 14,00 € Kombi"
|
||||
"22015434","29,39","0.00","18,02","EstriCon GmbH","Mühlenbecker Str. 8b","16348, 13503","31,18","10:26 (05.05.)","10:28 (05.05.)","35,85","Mühlenbecker Str.;8b;16348;Wandlitz / OT Schönerlinde;DE|Bekassinenweg;23;13503;Berlin;DE","48,28 €","31,00 Km in zone_2_km (1,10 € * 28,04 km) + zone_1_km (1,10 € * 3,12 km) + 14,00 € Kombi"
|
||||
"22016973","29,39","0.00","18,02","Fenster Durchblick GmbH","Eichborndamm 59","13403, 14513","29,48","08:46 (06.05.)","08:51 (06.05.)","35,85","Eichborndamm;59;13403;Berlin;DE|Rheinstr.;7 d;14513;Teltow;DE","46,42 €","29,00 Km in zone_1_km (1,10 € * 21,93 km) + zone_2_km (1,10 € * 7,54 km) + 14,00 € Kombi"
|
||||
"22019197","29,39","0.00","18,02","Starkloph","Tempelhofer Weg 101","12347, 15827","20,6","10:05 (07.05.)","10:06 (07.05.)","35,85","Tempelhofer Weg;101;12347;Berlin;DE|Ludwig-Erhard-Ring;13;15827;Blankenfelde-Mahlow / OT Dahlewitz;DE","36,65 €","20,00 Km in zone_1_km (1,10 € * 4,77 km) + zone_2_km (1,10 € * 15,82 km) + 14,00 € Kombi"
|
||||
"22019557","29,39","0.00","18,02","KAEFER Construction GmbH","Ludwig-Erhard-Ring 10","15827, 10623","43,48","11:48 (07.05.)","12:01 (07.05.)","35,85","Ludwig-Erhard-Ring;10;15827;Blankenfelde-Mahlow / OT Dahlewitz;DE|Straße des 17. Juni;112;10623;Berlin;DE","70,78 €","51,00 Km in zone_2_km (1,10 € * 35,04 km) + zone_1_km (1,10 € * 16,58 km) + 14,00 € Kombi"
|
||||
"22018795","28,52","0.00","18","Brillux GmbH & Co. KG","Bürknersfelder Str. 8b","13053, 15345","22,42","08:31 (07.05.)","08:35 (07.05.)","34,78","Bürknersfelder Str.;8b;13053;Berlin;DE|Bollensdorfer Weg;13;15345;Altlandsberg;DE","38,65 €","22,00 Km in zone_1_km (1,10 € * 6,68 km) + zone_2_km (1,10 € * 15,73 km) + 14,00 € Kombi"
|
||||
"22019009","28,52","0.00","18","DITTMANN Saniertechnik GmbH","Gewerbestr. 10","16540, 13353","20,84","09:23 (07.05.)","10:37 (07.05.)","34,78","Gewerbestr.;10;16540;Hohen Neuendorf;DE|Nordufer;21;13353;Berlin;DE","36,92 €","20,00 Km in zone_2_km (1,10 € * 6,93 km) + zone_1_km (1,10 € * 13,91 km) + 14,00 € Kombi"
|
||||
"22016174","28,08","0.00","17,99","Fliesenzentrum","Feldstr. 1","14979, 10317","36,43","07:00 (06.05.)","17:40 (05.05.)","34,24","Feldstr.;1;14979;Großbeeren;DE|Schreiberhauer Str.;2;10317;Berlin;DE","54,69 €","37,00 Km in zone_2_km (1,10 € * 19,62 km) + zone_1_km (1,10 € * 17,37 km) + 14,00 € Kombi"
|
||||
"22019434","28,08","0.00","17,99","Farberlin","Heerstraße 330","13593, 12487","28,99","11:12 (07.05.)","11:13 (07.05.)","34,24","Heerstraße;330;13593;Berlin;DE|Sportflieger Str.;9;12487;Berlin;DE","45,03 €","28,00 Km in zone_1_km (1,10 € * 28,21 km) + 14,00 € Kombi"
|
||||
"22014106","27,8","0.00","17,99","Tepper Aufzüge GmbH","Herzbergstr. 50","10365, 10629","15,39","06:45 (05.05.)","06:45 (05.05.)","33,9","Herzbergstr.;50;10365;Berlin;DE|Schlüterstr.;30;10629;Berlin;DE","31,25 €","15,00 Km in zone_1_km (1,10 € * 15,68 km) + 14,00 € Kombi"
|
||||
"22015061","27,69","0.00","18","Mercedes-Benz AG","Hans-Grade-Allee 61","12529, 13088","23,89","08:57 (05.05.)","09:31 (05.05.)","33,77","Hans-Grade-Allee;61;12529;Schönefeld;DE|Gehringstr.;51;13088;Berlin;DE","40,91 €","24,00 Km in zone_2_km (1,10 € * 0,94 km) + zone_1_km (1,10 € * 23,52 km) + 14,00 € Kombi"
|
||||
"22014817","27,64","0.00","18,01","JOP Handels- GmbH & Co. KG","Coswiger Str. 10","12681, 13587","27,77","07:50 (05.05.)","07:51 (05.05.)","33,71","Coswiger Str.;10;12681;Berlin;DE|Streitstr.;13;13587;Berlin;DE","44,54 €","27,00 Km in zone_1_km (1,10 € * 27,76 km) + 14,00 € Kombi"
|
||||
"22015259","27,64","0.00","18,01","August Storck KG","Waldstr. 27","13403, 16321","35,89","09:41 (05.05.)","09:45 (05.05.)","33,71","Waldstr.;27;13403;Berlin;DE|Enzianstr.;6;16321;Bernau bei Berlin - Bernau;DE","53,25 €","35,00 Km in zone_1_km (1,10 € * 20,80 km) + zone_2_km (1,10 € * 14,88 km) + 14,00 € Kombi"
|
||||
"22015401","27,55","0.00","18,01","FedEx Express Deutschland GmbH","Reuchlinstr. 10-11","10553, 14656","31,71","10:17 (05.05.)","10:17 (05.05.)","33,6","Reuchlinstr.;10-11;10553;Berlin;DE|Zum Wendehammer;1;14656;Brieselang - Zeestow;DE","48,87 €","31,00 Km in zone_1_km (1,10 € * 16,07 km) + zone_2_km (1,10 € * 15,63 km) + 14,00 € Kombi"
|
||||
"22015520","27,21","0.00","17,99","Wilhelm Brose GmbH","Breite Str. 23","13597, 10318","29,84","10:47 (05.05.)","12:07 (05.05.)","33,18","Breite Str.;23;13597;Berlin;DE|Blockdammweg;39-59;10318;Berlin;DE","46,90 €","29,00 Km in zone_1_km (1,10 € * 29,91 km) + 14,00 € Kombi"
|
||||
"22017284","27,2","0.00","18","Merkle Schweißtechnik Berlin GmbH","Alexander-Meißner-Str. 48","12526, 13507","37,19","10:07 (06.05.)","12:36 (06.05.)","33,17","Alexander-Meißner-Str.;48;12526;Berlin;DE|Egellsstr.;21;13507;Berlin;DE","55,31 €","37,00 Km in zone_1_km (1,10 € * 35,55 km) + zone_2_km (1,10 € * 2,00 km) + 14,00 € Kombi"
|
||||
"22017864","27,2","0.00","18","Osthavelländische Trinkwasserversorgung und Abwass","Potsdamer Str. 32-34","14612, 16761","20,53","13:04 (06.05.)","13:05 (06.05.)","33,17","Potsdamer Str.;32-34;14612;Falkensee;DE|August-Conrad-Str.;24-36;16761;Hennigsdorf;DE","37,97 €","20,00 Km in zone_2_km (1,10 € * 20,52 km), Anfahrt in zone_2_eap (0,55 € * 2,54 km) + 14,00 € Kombi"
|
||||
"22017902","27,2","0.00","18","JVA Tegel","Seidelstr. 39","13507, 12526","","13:18 (06.05.)","","33,17","Seidelstr.;39;13507;Berlin;DE|Paradiesstr.;214-218;12526;Berlin;DE","55,48 €","37,00 Km in zone_1_km (1,10 € * 35,76 km) + zone_2_km (1,10 € * 1,95 km) + 14,00 € Kombi"
|
||||
"22018726","27,2","0.00","18","Ferrum Lasercut GmbH","Bruno-Buergel-Weg 142-144","12439, 13407","33,08","08:15 (07.05.)","09:38 (07.05.)","33,17","Bruno-Buergel-Weg;142-144;12439;Berlin;DE|Roedernallee;174-175;13407;Berlin;DE","39,40 €","23,00 Km in zone_1_km (1,10 € * 23,09 km) + 14,00 € Kombi"
|
||||
"22015352","26,76","0.00","18,01","Robin Look GmbH","Bölschestr. 38","12587, 14052","33,09","10:04 (05.05.)","10:05 (05.05.)","32,64","Bölschestr.;38;12587;Berlin;DE|Theodor-Heuss-Platz;2;14052;Berlin;DE","47,28 €","30,00 Km in zone_1_km (1,10 € * 30,25 km) + 14,00 € Kombi"
|
||||
"22017585","26,76","0.00","18,01","PRo Tief-","Birkholzer Str. 1","16356, 12524","62,64","11:40 (06.05.)","11:33 (06.05.)","32,64","Birkholzer Str.;1;16356;Ahrensfelde - Blumberg;DE|Bohnsdorfer Weg;105;12524;Berlin;DE","82,89 €","62,00 Km in zone_2_km (1,10 € * 61,38 km) + zone_1_km (1,10 € * 1,25 km) + 14,00 € Kombi"
|
||||
"22018302","26,76","0.00","18,01","AWO Wohnen","Grünauer Str. 126-128","12557, 10589","31,46","08:00 (07.05.)","07:37 (07.05.)","32,64","Grünauer Str.;126-128;12557;Berlin;DE|Darwinstr.;14;10589;Berlin;DE","43,67 €","27,00 Km in zone_1_km (1,10 € * 26,97 km) + 14,00 € Kombi"
|
||||
"22015797","28,07","0.00","12,01","Kühne Nagel (AG & Co.) KG - Aerospace BER","Georg-Wulf-Straße 1 .","12529, 15827","19,61","13:45 (05.05.)","13:02 (05.05.)","31,9","Georg-Wulf-Straße 1;.;12529;Schönefeld;DE|Eschenweg 11;.;15827;Blankenfelde-Mahlow;DE","38,82 €","19,00 Km in zone_2_km (1,10 € * 19,60 km), Anfahrt in zone_2_eap (0,55 € * 5,93 km) + 14,00 € Kombi"
|
||||
"22018458","28,07","0.00","12,01","Berlin Hbf, Gepäckcenter","Europaplatz .","10557, 12489","21,81","15:30 (07.05.)","09:57 (07.05.)","31,9","Europaplatz;.;10557;Berlin;DE|Rudower Chaussee 14;.;12489;Berlin;DE","36,42 €","20,00 Km in zone_1_km (1,10 € * 20,38 km) + 14,00 € Kombi"
|
||||
"22019648","26,04","0.00","18,01","Mercedes-Benz AG","Seeburger Str. 27","13581, 12681","30,4","12:22 (07.05.)","12:42 (07.05.)","31,76","Seeburger Str.;27;13581;Berlin;DE|Nordring;6;12681;Berlin;DE","47,44 €","30,00 Km in zone_1_km (1,10 € * 30,40 km) + 14,00 € Kombi"
|
||||
"22013498","25,88","0.00","18,02","Instruclean","Nunsdorfer Ring 23","12277, 12557","16,42","06:00 (05.05.)","06:38 (05.05.)","31,57","Nunsdorfer Ring;23;12277;Berlin;DE|Gruenauer Str.;5;12557;Berlin;DE","32,17 €","16,00 Km in zone_1_km (1,10 € * 12,24 km) + zone_2_km (1,10 € * 4,28 km) + 14,00 € Kombi"
|
||||
"22015286","25,88","0.00","18,02","ContiTech Transportbandsysteme GmbH","Digitalstr. 4-6","15366, 12681","10,33","09:49 (05.05.)","09:50 (05.05.)","31,57","Digitalstr.;4-6;15366;Dahlwitz-Hoppegarten;DE|Frank-Schweitzer-Str.;3;12681;Berlin;DE","25,36 €","10,00 Km in zone_2_km (1,10 € * 1,63 km) + zone_1_km (1,10 € * 8,70 km) + 14,00 € Kombi"
|
||||
"22015331","25,88","0.00","18,02","Liebherr-Baumaschinen","Hermann-von-Helmholtz-Str. 1","14532, 14195","12,92","09:59 (05.05.)","10:05 (05.05.)","31,57","Hermann-von-Helmholtz-Str.;1;14532;Kleinmachnow;DE|Arnimallee;5;14195;Berlin;DE","27,90 €","12,00 Km in zone_2_km (1,10 € * 3,19 km) + zone_1_km (1,10 € * 9,45 km) + 14,00 € Kombi"
|
||||
"22016245","25,88","0.00","18,02","Carl Zauber Tiefbau GmbH","Kirchstr. 7","12529, 10179","22,78","14:50 (05.05.)","14:59 (05.05.)","31,57","Kirchstr.;7;12529;Schönefeld;DE|Neue Jüdenstr.;1;10179;Berlin;DE","38,48 €","22,00 Km in zone_2_km (1,10 € * 2,52 km) + zone_1_km (1,10 € * 19,73 km) + 14,00 € Kombi"
|
||||
"22014771","25,88","0.00","18,02","Instruclean","Nunsdorfer Ring 23","12277, 12557","16,42","06:00 (06.05.)","11:30 (05.05.)","31,57","Nunsdorfer Ring;23;12277;Berlin;DE|Gruenauer Str.;5;12557;Berlin;DE","32,17 €","16,00 Km in zone_1_km (1,10 € * 12,24 km) + zone_2_km (1,10 € * 4,28 km) + 14,00 € Kombi"
|
||||
"22016801","25,88","0.00","18,02","A. Habedank Handels-GmbH","An den Ritterhufen 4","14513, 10405","25,82","07:55 (06.05.)","08:40 (06.05.)","31,57","An den Ritterhufen;4;14513;Teltow;DE|Belforter Str.;8;10405;Berlin;DE","40,99 €","24,00 Km in zone_2_km (1,10 € * 4,32 km) + zone_1_km (1,10 € * 20,22 km) + 14,00 € Kombi"
|
||||
"22017645","25,88","0.00","18,02","PRO Tief- und Wasserbau GmbH & Co. KG","Birkholzer Str. 1","16356, 10557","29,84","11:55 (06.05.)","11:55 (06.05.)","31,57","Birkholzer Str.;1;16356;Ahrensfelde - Blumberg;DE|Europaplatz;0;10557;Berlin;DE","46,89 €","29,00 Km in zone_2_km (1,10 € * 9,21 km) + zone_1_km (1,10 € * 20,69 km) + 14,00 € Kombi"
|
||||
"22017626","25,88","0.00","18,02","Lusche Seil- und Hebetechnik GmbH","Bucher Weg 2b","16356, 10785","17,52","13:18 (06.05.)","13:38 (06.05.)","31,57","Bucher Weg;2b;16356;Ahrensfelde / OT Lindenberg;DE|Potsdamer Str.;50;10785;Berlin;DE","37,47 €","21,00 Km in zone_2_km (1,10 € * 1,81 km) + zone_1_km (1,10 € * 19,53 km) + 14,00 € Kombi"
|
||||
"22018018","25,88","0.00","18,02","OD-OS GmbH","Warthestr. 21","14513, 10965","18,53","13:56 (06.05.)","14:19 (06.05.)","31,57","Warthestr.;21;14513;Teltow;DE|Hagelberger Str.;43;10965;Berlin;DE","34,36 €","18,00 Km in zone_2_km (1,10 € * 2,73 km) + zone_1_km (1,10 € * 15,78 km) + 14,00 € Kombi"
|
||||
"22018031","25,88","0.00","18,02","Hauswartungen Bendyk","Gutshof 13-14","16356, 14193","61,83","14:15 (06.05.)","14:03 (06.05.)","31,57","Gutshof;13-14;16356;Ahrensfelde / OT Blumberg;DE|Cunostr.;64;14193;Berlin;DE","81,97 €","61,00 Km in zone_2_km (1,10 € * 37,76 km) + zone_1_km (1,10 € * 24,03 km) + 14,00 € Kombi"
|
||||
"22016769","25,88","0.00","18,02","Instruclean","Nunsdorfer Ring 23","12277, 12557","16,42","06:00 (07.05.)","16:27 (06.05.)","31,57","Nunsdorfer Ring;23;12277;Berlin;DE|Gruenauer Str.;5;12557;Berlin;DE","32,17 €","16,00 Km in zone_1_km (1,10 € * 12,24 km) + zone_2_km (1,10 € * 4,28 km) + 14,00 € Kombi"
|
||||
"22017724","25,88","0.00","18,02","Heckmann GmbH & Co. KG","Digitalstr. 15","15366, 12526","","06:30 (07.05.)","","31,57","Digitalstr.;15;15366;Dahlwitz-Hoppegarten;DE|Alexander-Meißner-Str.;34;12526;Berlin;DE","36,97 €","20,00 Km in zone_2_km (1,10 € * 3,87 km) + zone_1_km (1,10 € * 17,01 km) + 14,00 € Kombi"
|
||||
"22017962","25,88","0.00","18,02","Raumprojekt GmbH","Gewerbestr. 1","15366, 10365","13,16","08:00 (07.05.)","07:15 (07.05.)","31,57","Gewerbestr.;1;15366;Dahlwitz-Hoppegarten;DE|Herzbergstr.;127;10365;Berlin;DE","28,47 €","13,00 Km in zone_2_km (1,10 € * 1,88 km) + zone_1_km (1,10 € * 11,27 km) + 14,00 € Kombi"
|
||||
"22018941","25,88","0.00","18,02","LOXAM GmbH","Teilestr. 11-13","12099, 14532","16,56","09:09 (07.05.)","10:50 (07.05.)","31,57","Teilestr.;11-13;12099;Berlin;DE|Im Hagen;22;14532;Kleinmachnow;DE","32,22 €","16,00 Km in zone_1_km (1,10 € * 15,11 km) + zone_2_km (1,10 € * 1,45 km) + 14,00 € Kombi"
|
||||
"22019196","25,88","0.00","18,02","HTI Bär & Ollenroth KG","Stahnsdorfer Str. 107","14513 , 10779","17,6","10:05 (07.05.)","10:19 (07.05.)","31,57","Stahnsdorfer Str.;107;14513;Teltow;DE|Barbarossastr.;45;10779;Berlin;DE","33,35 €","17,00 Km in zone_2_km (1,10 € * 4,55 km) + zone_1_km (1,10 € * 13,04 km) + 14,00 € Kombi"
|
||||
"22019554","25,88","0.00","18,02","Hörmann KG Verkaufsges.","Industriestr. 12-14","15366, 10117","18,72","11:48 (07.05.)","12:14 (07.05.)","31,57","Industriestr.;12-14;15366;Dahlwitz-Hoppegarten;DE|Französische Str.;38;10117;Berlin;DE","34,61 €","18,00 Km in zone_2_km (1,10 € * 2,15 km) + zone_1_km (1,10 € * 16,59 km) + 14,00 € Kombi"
|
||||
"22020108","25,88","0.00","18,02","Ups Kundencenter","Industriestr. 1","15366, 12487","","14:49 (07.05.)","","31,57","Industriestr.;1;15366;Hoppegarten - Dahlwitz-Hoppegarten;DE|Sportfliegerstr.;4;12487;Berlin;DE","32,26 €","16,00 Km in zone_2_km (1,10 € * 3,82 km) + zone_1_km (1,10 € * 12,78 km) + 14,00 € Kombi"
|
||||
"22020116","24,62","0.00","22,01","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 12621","32,73","14:51 (07.05.)","15:31 (07.05.)","31,57","Hindenburgdamm;30a;12203;Berlin;DE|Myslowitzer Str.;45;12621;Berlin;DE","42,74 €","26,00 Km in zone_1_km (1,10 € * 26,13 km) + 14,00 € Kombi"
|
||||
"22016585","25,67","0.00","17,99","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 12101","8,57","18:41 (05.05.)","18:41 (05.05.)","31,3","Hindenburgdamm;30a;12203;Berlin;DE|Wüsthoffstr.;15;12101;Berlin;DE","23,43 €","8,00 Km in zone_1_km (1,10 € * 8,57 km) + 14,00 € Kombi"
|
||||
"22018454","25,67","0.00","17,99","SYNLAB Logistics GmbH","Lützowstr. 24-26","10785, 10365","10,5","19:30 (06.05.)","19:36 (06.05.)","31,3","Lützowstr.;24-26;10785;Berlin;DE|Fanninger Str.;32;10365;Berlin;DE","25,48 €","10,00 Km in zone_1_km (1,10 € * 10,44 km) + 14,00 € Kombi"
|
||||
"22020411","25,67","0.00","17,99","St. Joseph-Krankenhaus","Wüsthoffstr. 15","12101, 12203","9,37","20:52 (07.05.)","20:55 (07.05.)","31,3","Wüsthoffstr.;15;12101;Berlin;DE|Hindenburgdamm;30a;12203;Berlin;DE","24,70 €","9,00 Km in zone_1_km (1,10 € * 9,73 km) + 14,00 € Kombi"
|
||||
"22016389","23,5","21.96","24,27","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 13509","23,27","15:39 (05.05.)","15:56 (05.05.)","31,03","Hindenburgdamm;30a;12203;Berlin;DE|Am Nordgraben;2;13509;Berlin;DE","39,76 €","23,00 Km in zone_1_km (1,10 € * 23,42 km) + 14,00 € Kombi"
|
||||
"22015418","25,42","0.00","18","Hilti Deutschland GmbH","Holzhauser Str. 152a","13509, 12487","32,02","10:22 (05.05.)","12:04 (05.05.)","31","Holzhauser Str.;152a;13509;Berlin;DE|Groß-Berliner-Damm;92-94;12487;Berlin;DE","48,35 €","31,00 Km in zone_1_km (1,10 € * 31,23 km) + 14,00 € Kombi"
|
||||
"22014643","27,22","0.00","11,97","CO.DON GmbH - 3.OG Empfang","Warthestr. 21 .","14513, 10557","20,38","15:00 (05.05.)","13:05 (05.05.)","30,92","Warthestr. 21;.;14513;Teltow;DE|Europaplatz;.;10557;Berlin;DE","36,41 €","20,00 Km in zone_2_km (1,10 € * 2,73 km) + zone_1_km (1,10 € * 17,64 km) + 14,00 € Kombi"
|
||||
"22016544","27,22","0.00","11,97","CO.DON GmbH - 3.OG Empfang","Warthestr. 21 .","14513, 10557","20,38","15:00 (06.05.)","13:00 (06.05.)","30,92","Warthestr. 21;.;14513;Teltow;DE|Europaplatz;.;10557;Berlin;DE","36,41 €","20,00 Km in zone_2_km (1,10 € * 2,73 km) + zone_1_km (1,10 € * 17,64 km) + 14,00 € Kombi"
|
||||
"22015765","25,01","0.00","18","Baustelle","Rütlistr. 7","12045, 13509","25,45","11:55 (05.05.)","11:55 (05.05.)","30,5","Rütlistr.;7;12045;Berlin;DE|Holzhauser Str.;139;13509;Berlin;DE","35,96 €","20,00 Km in zone_1_km (1,10 € * 19,96 km) + 14,00 € Kombi"
|
||||
"22016329","25,01","0.00","18","Humboldt-Klinikum","Am Nordgraben 2","13509, 12351","28,28","15:15 (05.05.)","15:31 (05.05.)","30,5","Am Nordgraben;2;13509;Berlin;DE|Kormoranweg;45;12351;Berlin;DE","45,08 €","28,00 Km in zone_1_km (1,10 € * 28,25 km) + 14,00 € Kombi"
|
||||
"22016558","25,01","0.00","18","Krankenhaus Neukoelln","Kormoranweg 45","12351, 13509","28,02","17:15 (05.05.)","17:40 (05.05.)","30,5","Kormoranweg;45;12351;Berlin;DE|Am Nordgraben;2;13509;Berlin;DE","45,05 €","28,00 Km in zone_1_km (1,10 € * 28,23 km) + 14,00 € Kombi"
|
||||
"22017981","25,01","0.00","18","Humboldt-Klinikum","Am Nordgraben 2","13509, 12351","28,28","13:43 (06.05.)","14:59 (06.05.)","30,5","Am Nordgraben;2;13509;Berlin;DE|Kormoranweg;45;12351;Berlin;DE","45,08 €","28,00 Km in zone_1_km (1,10 € * 28,25 km) + 14,00 € Kombi"
|
||||
"22018241","25,01","0.00","18","Caseking GmbH","Gaußstr. 1","10589, 12627","24,62","15:16 (06.05.)","15:21 (06.05.)","30,5","Gaußstr.;1;10589;Berlin;DE|Louis-Lewin-Str.;20;12627;Berlin;DE","41,07 €","24,00 Km in zone_1_km (1,10 € * 24,61 km) + 14,00 € Kombi"
|
||||
"22018406","25,01","0.00","18","Fliesenparadies Glaeske & Sefzig","Alt-Kaulsdorf 26","12621, 10719","19,83","09:00 (07.05.)","08:47 (07.05.)","30,5","Alt-Kaulsdorf;26;12621;Berlin;DE|Fasanenstraße;61;10719;Berlin;DE","36,65 €","20,00 Km in zone_1_km (1,10 € * 20,59 km) + 14,00 € Kombi"
|
||||
"22018693","25,01","0.00","18","Steuerbuero Feger","Silvesterweg 27","13467, 12357","36,05","09:15 (07.05.)","08:45 (07.05.)","30,5","Silvesterweg;27;13467;Berlin;DE|Kanalstr.;73-79;12357;Berlin;DE","52,42 €","34,00 Km in zone_1_km (1,10 € * 34,93 km) + 14,00 € Kombi"
|
||||
"22018972","25,01","0.00","18","Krankenhaus Neukoelln","Kormoranweg 45","12351, 13509","28,02","09:17 (07.05.)","09:22 (07.05.)","30,5","Kormoranweg;45;12351;Berlin;DE|Am Nordgraben;2;13509;Berlin;DE","45,05 €","28,00 Km in zone_1_km (1,10 € * 28,23 km) + 14,00 € Kombi"
|
||||
"22016051","25","0.00","17,98","STADTBOTE GmbH NL Berlin","Colditzstr. 33","12099, 12099","","13:42 (05.05.)","","30,48","Colditzstr.;33;12099;Berlin;DE|Colditzstr.;33;12099;Berlin;DE","19,50 € [M]","1,00 Km + 14,00 € Kombi"
|
||||
"22013608","24,57","0.00","17,99","Fuerst Donnersmarck-Stiftung","Dalandweg 19","12167, 12169, 12167","4,54","08:45 (05.05.)","08:15 (05.05.)","29,96","Dalandweg;19;12167;Berlin;DE|Bergstr.;1;12169;Berlin;DE|Dalandweg;19;12167;Berlin;DE","26,32 €","4,00 Km in zone_1_km (1,10 € * 4,84 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22015033","24,57","0.00","17,99","Fuerst Donnersmarck-Stiftung","Dalandweg 19","12167, 12169, 12167","4,54","08:45 (06.05.)","08:15 (06.05.)","29,96","Dalandweg;19;12167;Berlin;DE|Bergstr.;1;12169;Berlin;DE|Dalandweg;19;12167;Berlin;DE","26,32 €","4,00 Km in zone_1_km (1,10 € * 4,84 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22017008","24,57","0.00","17,99","Fuerst Donnersmarck-Stiftung","Dalandweg 19","12167, 12169, 12167","4,54","08:45 (07.05.)","08:15 (07.05.)","29,96","Dalandweg;19;12167;Berlin;DE|Bergstr.;1;12169;Berlin;DE|Dalandweg;19;12167;Berlin;DE","26,32 €","4,00 Km in zone_1_km (1,10 € * 4,84 km) + 14,00 € Kombi + 7,00 € pro 1 weitere Adresse(n)"
|
||||
"22018033","24,51","0.00","18","KERAMUNDO - Welt der Fliesen","Alt-Mahlsdorf 81","12623, 10623","22,3","10:00 (07.05.)","09:30 (07.05.)","29,89","Alt-Mahlsdorf;81;12623;Berlin;DE|Fasanenstr.;77;10623;Berlin;DE","38,49 €","22,00 Km in zone_1_km (1,10 € * 22,26 km) + 14,00 € Kombi"
|
||||
"22016656","24,38","0.00","18,02","Mercedes-Benz AG - NL Berlin-Schöne","Hans-Grade-Allee 61","12529, 12277","17,03","06:54 (06.05.)","07:46 (06.05.)","29,74","Hans-Grade-Allee;61;12529;Schönefeld;DE|Daimlerstr.;165;12277;Berlin;DE","32,73 €","17,00 Km in zone_2_km (1,10 € * 10,27 km) + zone_1_km (1,10 € * 6,76 km) + 14,00 € Kombi"
|
||||
"22020391","26,07","0.00","12,01","Irmtraud Korittke","Dirschauer Straße 11 .","10245, 10557","9,1","20:00 (07.05.)","18:29 (07.05.)","29,63","Dirschauer Straße 11;.;10245;Berlin;DE|Europaplatz;.;10557;Berlin;DE","24,01 €","9,00 Km in zone_1_km (1,10 € * 9,10 km) + 14,00 € Kombi"
|
||||
"22019088","23,69","0.00","18","KiJu Kinder- und Jugend-Therapie","Driesener Str. 23","10439, 14195","18,06","09:41 (07.05.)","09:42 (07.05.)","28,89","Driesener Str.;23;10439;Berlin;DE|Podbielskiallee;25;14195;Berlin;DE","33,87 €","18,00 Km in zone_1_km (1,10 € * 18,06 km) + 14,00 € Kombi"
|
||||
"22015307","23,25","0.00","18,02","Mike u. Franks US-Auto-Equipment GmbH","Hattenheimer Str. 8-10","12099, 12623","24,52","09:54 (05.05.)","10:41 (05.05.)","28,36","Hattenheimer Str.;8-10;12099;Berlin;DE|Hönower Str.;69;12623;Berlin;DE","36,45 €","20,00 Km in zone_1_km (1,10 € * 20,41 km) + 14,00 € Kombi"
|
||||
"22015868","23,25","0.00","18,02","AAD Auto Anmeldedienst GmbH","Rhinstr. 48a","12681, 10587","15,82","14:00 (05.05.)","13:37 (05.05.)","28,36","Rhinstr.;48a;12681;Berlin;DE|Franklinstr.;5;10587;Berlin;DE","31,39 €","15,00 Km in zone_1_km (1,10 € * 15,81 km) + 14,00 € Kombi"
|
||||
"22016025","23,25","0.00","18,02","OTIS GmbH & Co. oHG","Warener Str. 5","12683, 13507","22,89","07:00 (06.05.)","06:30 (06.05.)","28,36","Warener Str.;5;12683;Berlin;DE|Otisstr.;33;13507;Berlin;DE","41,01 €","24,00 Km in zone_1_km (1,10 € * 24,55 km) + 14,00 € Kombi"
|
||||
"22016321","23,25","0.00","18,02","MDI Limbach","Aroser Allee 82","13407, 12277","24,23","08:00 (06.05.)","07:32 (06.05.)","28,36","Aroser Allee;82;13407;Berlin;DE|Marienfelder Allee;135;12277;Berlin;DE","40,64 €","24,00 Km in zone_1_km (1,10 € * 24,22 km) + 14,00 € Kombi"
|
||||
"22016540","23,25","0.00","18,02","Der Bäcker Feihl","Wolfener Str. 29","12681, 13439","19,75","08:15 (06.05.)","09:54 (06.05.)","28,36","Wolfener Str.;29;12681;Berlin;DE|Quickborner Str.;89;13439;Berlin;DE","35,71 €","19,00 Km in zone_1_km (1,10 € * 19,74 km) + 14,00 € Kombi"
|
||||
"22016569","23,25","0.00","18,02","AAD Auto Anmeldedienst GmbH","Rhinstr. 48a","12681, 13403","17,8","08:30 (06.05.)","09:03 (06.05.)","28,36","Rhinstr.;48a;12681;Berlin;DE|Ollenhauerstr.;9-13;13403;Berlin;DE","33,57 €","17,00 Km in zone_1_km (1,10 € * 17,79 km) + 14,00 € Kombi"
|
||||
"22017627","23,25","0.00","18,02","WWL Spedition GmbH","Quickborner Str. 78-80","13439, 12277","","11:43 (06.05.)","","28,36","Quickborner Str.;78-80;13439;Berlin;DE|Benzstr.;46-50;12277;Berlin;DE","49,78 €","32,00 Km in zone_1_km (1,10 € * 32,53 km) + 14,00 € Kombi"
|
||||
"22018545","23,25","0.00","18,02","Dussmann Kälte- und Klimatechnik","Leunaer Str. 7","12681, 14059","24,86","07:12 (07.05.)","07:14 (07.05.)","28,36","Leunaer Str.;7;12681;Berlin;DE|Wundtstr.;26;14059;Berlin;DE","41,29 €","24,00 Km in zone_1_km (1,10 € * 24,81 km) + 14,00 € Kombi"
|
||||
"22018306","23,25","0.00","18,02","Zinkpower GmbH","Industriestrasse 27-29","12099, 13407","24,43","08:00 (07.05.)","07:37 (07.05.)","28,36","Industriestrasse;27-29;12099;Berlin;DE|Roedernallee;8;13407;Berlin;DE","41,04 €","24,00 Km in zone_1_km (1,10 € * 24,58 km) + 14,00 € Kombi"
|
||||
"22019154","23,25","0.00","18,02","Der Bäcker Feihl","Wolfener Str. 29","12681, 13509","54,84","09:56 (07.05.)","12:40 (07.05.)","28,36","Wolfener Str.;29;12681;Berlin;DE|Gorkistr.;64;13509;Berlin;DE","74,31 €","54,00 Km in zone_1_km (1,10 € * 13,54 km) + zone_2_km (1,10 € * 41,29 km) + 14,00 € Kombi"
|
||||
"22019611","23,25","0.00","18,02","Steuerbüro Anja Knüppel","Schillerstr. 12","10625, 12681","17,4","12:08 (07.05.)","12:34 (07.05.)","28,36","Schillerstr.;12;10625;Berlin;DE|Bitterfelder Str.;23;12681;Berlin;DE","32,99 €","17,00 Km in zone_1_km (1,10 € * 17,26 km) + 14,00 € Kombi"
|
||||
"22020065","23,25","0.00","18,02","Capital Baustoffe GmbH","Bergholzstr. 4","12099, 12619","20,28","14:35 (07.05.)","15:25 (07.05.)","28,36","Bergholzstr.;4;12099;Berlin;DE|Cecilienstr.;.;12619;Berlin;DE","36,31 €","20,00 Km in zone_1_km (1,10 € * 20,28 km) + 14,00 € Kombi"
|
||||
"22019639","23,02","0.00","18,02","Roske Marzahn","Hellersdorfer Weg 34-36","12689, 13439","18,52","12:19 (07.05.)","12:40 (07.05.)","28,08","Hellersdorfer Weg;34-36;12689;Berlin;DE|Zerpenschleuser Ring;1;13439;Berlin;DE","33,64 €","17,00 Km in zone_1_km (1,10 € * 17,85 km) + 14,00 € Kombi"
|
||||
"22016110","22,37","0.00","18,03","Praxis Kleintierspezialisten","Wittestr. 30","13509, 14163","23,77","16:00 (05.05.)","15:49 (05.05.)","27,29","Wittestr.;30;13509;Berlin;DE|Robert-von-Ostertag-Str.;15;14163;Berlin;DE","40,14 €","23,00 Km in zone_1_km (1,10 € * 23,76 km) + 14,00 € Kombi"
|
||||
"22016141","22,37","0.00","18,03","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 13585","0","07:00 (06.05.)","08:12 (06.05.)","27,29","Gradestr.;46-50;12347;Berlin;DE|Eiswerder;12;13585;Berlin;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22017659","22,37","0.00","18,03","Merkur Schoppe - Kundendienst","Holzhauser Str. 139","13509, 14195","16,88","11:52 (06.05.)","11:53 (06.05.)","27,29","Holzhauser Str.;139;13509;Berlin;DE|Thielallee;38;14195;Berlin;DE","32,56 €","16,00 Km in zone_1_km (1,10 € * 16,87 km) + 14,00 € Kombi"
|
||||
"22017782","22,37","0.00","18,03","SOS Gebäudeservice GmbH","Berliner Str. 14","13127, 12163","27,14","12:37 (06.05.)","12:40 (06.05.)","27,29","Berliner Str.;14;13127;Berlin;DE|Lepsiusstr.;83;12163;Berlin;DE","43,85 €","27,00 Km in zone_1_km (1,10 € * 27,14 km) + 14,00 € Kombi"
|
||||
"22018661","22,37","0.00","18,03","Janke Galvanik","Hohentwielsteig 3","14163, 13403","20,18","07:54 (07.05.)","07:55 (07.05.)","27,29","Hohentwielsteig;3;14163;Berlin;DE|Kögelstr.;7;13403;Berlin;DE","36,55 €","20,00 Km in zone_1_km (1,10 € * 20,50 km) + 14,00 € Kombi"
|
||||
"22018046","22,37","0.00","18,03","Uferpalais - Seniorenresidenz","Brauereihof 19","13585, 13086","20,72","09:00 (07.05.)","08:30 (07.05.)","27,29","Brauereihof;19;13585;Berlin;DE|Rennbahnstr.;104;13086;Berlin;DE","36,23 €","20,00 Km in zone_1_km (1,10 € * 20,21 km) + 14,00 € Kombi"
|
||||
"22014778","21,5","0.00","18","Bst /","Rothenbücherweg 45","14089, 12157","17,44","07:36 (05.05.)","09:58 (05.05.)","26,22","Rothenbücherweg;45;14089;Berlin;DE|Menzelstr.;1;12157;Berlin;DE","33,18 €","17,00 Km in zone_1_km (1,10 € * 17,44 km) + 14,00 € Kombi"
|
||||
"22017315","21,5","0.00","18","Erich Weit GmbH","Colditzstr. 38-42","12099, 13189","14,76","10:16 (06.05.)","14:06 (06.05.)","26,22","Colditzstr.;38-42;12099;Berlin;DE|Selma-Lagerlöf-Straße;2;13189;Berlin;DE","30,64 €","15,00 Km in zone_1_km (1,10 € * 15,13 km) + 14,00 € Kombi"
|
||||
"22017643","21,5","0.00","18","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 13156","","11:48 (06.05.)","","26,22","Gradestr.;46-50;12347;Berlin;DE|Treskowstr.;15;13156;Berlin;DE","36,14 €","20,00 Km in zone_1_km (1,10 € * 20,13 km) + 14,00 € Kombi"
|
||||
"22017957","21,5","0.00","18","Friedrich Rohwedder Baumaschinen","Sachsenhauser Str. 12","12099, 13156","","13:36 (06.05.)","","26,22","Sachsenhauser Str.;12;12099;Berlin;DE|Buchholzer Str.;32;13156;Berlin;DE","33,97 €","18,00 Km in zone_1_km (1,10 € * 18,15 km) + 14,00 € Kombi"
|
||||
"22015035","21,32","0.00","18","Hilti Deutschland GmbH","Alt-Mahlsdorf 26","12623, 12489","15,38","08:52 (05.05.)","08:53 (05.05.)","26","Alt-Mahlsdorf;26;12623;Berlin;DE|Groß-Berliner-Damm;92;12489;Berlin;DE","30,78 €","15,00 Km in zone_1_km (1,10 € * 15,25 km) + 14,00 € Kombi"
|
||||
"22017678","21,32","0.00","18","Hilti Deutschland GmbH","Alt-Mahlsdorf 26","12623, 12487","15,38","12:30 (06.05.)","14:43 (06.05.)","26","Alt-Mahlsdorf;26;12623;Berlin;DE|Groß-Berliner-Damm;92;12487;Berlin;DE","30,78 €","15,00 Km in zone_1_km (1,10 € * 15,25 km) + 14,00 € Kombi"
|
||||
"22017110","21,21","0.00","18,01","Deutsche See GmbH","Beusselstr. 44n-q","10553, 13593","15,98","09:17 (06.05.)","10:03 (06.05.)","25,87","Beusselstr.;44n-q;10553;Berlin;DE|Pillnitzer Weg;6;13593;Berlin;DE","31,57 €","16,00 Km in zone_1_km (1,10 € * 15,97 km) + 14,00 € Kombi"
|
||||
"22015237","21,06","0.00","17,99","Firma Aalberts Surface Technologies GmbH","Coswiger Str. 16","12681, 12277","24,51","09:36 (05.05.)","09:38 (05.05.)","25,68","Coswiger Str.;16;12681;Berlin;DE|Sperenberger Str.;5a;12277;Berlin;DE","41,10 €","24,00 Km in zone_1_km (1,10 € * 24,64 km) + 14,00 € Kombi"
|
||||
"22015229","21,06","0.00","17,99","KÖNIGSDRUCK","Alt-Reinickendorf 28","13407, 10367","13,63","09:40 (05.05.)","09:37 (05.05.)","25,68","Alt-Reinickendorf;28;13407;Berlin;DE|Parkaue;29;10367;Berlin;DE","28,07 €","12,00 Km in zone_1_km (1,10 € * 12,79 km) + 14,00 € Kombi"
|
||||
"22015355","21,06","0.00","17,99","SCANECA GmbH","Richard-Wagner-Str. 48-50","10585, 12489","23,48","10:05 (05.05.)","12:05 (05.05.)","25,68","Richard-Wagner-Str.;48-50;10585;Berlin;DE|Rudower Chaussee;25;12489;Berlin;DE","38,60 €","22,00 Km in zone_1_km (1,10 € * 22,36 km) + 14,00 € Kombi"
|
||||
"22015486","21,06","0.00","17,99","Ferrum Lasercut GmbH","Bruno-Bürgel-Weg 142-144","12439, 10585","28,83","10:40 (05.05.)","12:37 (05.05.)","25,68","Bruno-Bürgel-Weg;142-144;12439;Berlin;DE|Nithackstr.;6;10585;Berlin;DE","41,94 €","25,00 Km in zone_1_km (1,10 € * 25,40 km) + 14,00 € Kombi"
|
||||
"22015771","21,06","0.00","17,99","Heinbokel + Mueller GbR","Gehringstr. 53","13088, 12277","20,72","11:57 (05.05.)","11:57 (05.05.)","25,68","Gehringstr.;53;13088;Berlin;DE|Nahmitzer Damm;30;12277;Berlin;DE","37,43 €","21,00 Km in zone_1_km (1,10 € * 21,30 km) + 14,00 € Kombi"
|
||||
"22016413","21,06","0.00","17,99","Auto Valentino","Darßer Bogen 7","13088, 12099","16,22","15:47 (05.05.)","15:48 (05.05.)","25,68","Darßer Bogen;7;13088;Berlin;DE|Ordensmeisterstr.;40;12099;Berlin;DE","32,49 €","16,00 Km in zone_1_km (1,10 € * 16,81 km) + 14,00 € Kombi"
|
||||
"22016171","21,06","0.00","17,99","Fliesenparadies Glaeske & Sefzig","Alt-Kaulsdorf 26","12621, 12057","13,66","07:00 (06.05.)","07:13 (06.05.)","25,68","Alt-Kaulsdorf;26;12621;Berlin;DE|Sonnenallee;225;12057;Berlin;DE","29,03 €","13,00 Km in zone_1_km (1,10 € * 13,66 km) + 14,00 € Kombi"
|
||||
"22016733","21,06","0.00","17,99","Erich Weit GmbH","Colditzstr. 38-42","12099, 13589","26,15","07:31 (06.05.)","09:58 (06.05.)","25,68","Colditzstr.;38-42;12099;Berlin;DE|Freudstraße;8-10;13589;Berlin;DE","42,51 €","25,00 Km in zone_1_km (1,10 € * 25,92 km) + 14,00 € Kombi"
|
||||
"22016993","21,06","0.00","17,99","WoBeGe mbH","Winckelmannstr. 3-5","12487, 10629","18,53","08:49 (06.05.)","11:06 (06.05.)","25,68","Winckelmannstr.;3-5;12487;Berlin;DE|Leibnizstr.;53;10629;Berlin;DE","34,11 €","18,00 Km in zone_1_km (1,10 € * 18,28 km) + 14,00 € Kombi"
|
||||
"22017360","21,06","0.00","17,99","Typographus GmbH","Nunsdorfer Ring 2-10","12277, 13593","24,54","10:27 (06.05.)","11:06 (06.05.)","25,68","Nunsdorfer Ring;2-10;12277;Berlin;DE|Heerstr.;330;13593;Berlin;DE","43,72 €","27,00 Km in zone_1_km (1,10 € * 27,02 km) + 14,00 € Kombi"
|
||||
"22017681","21,06","0.00","17,99","Robert Karst GmbH & Co. KG","Motzener Str. 22","12277, 12681","30,81","13:00 (06.05.)","14:58 (06.05.)","25,68","Motzener Str.;22;12277;Berlin;DE|Boxberger Str.;1;12681;Berlin;DE","44,94 €","28,00 Km in zone_1_km (1,10 € * 28,13 km) + 14,00 € Kombi"
|
||||
"22017991","21,06","0.00","17,99","MAN Truck & Bus Deutschland GmbH","Nonnendammallee 1","13599, 10365","20,75","13:46 (06.05.)","14:01 (06.05.)","25,68","Nonnendammallee;1;13599;Berlin;DE|Siegfriedstr.;49-51;10365;Berlin;DE","36,81 €","20,00 Km in zone_1_km (1,10 € * 20,74 km) + 14,00 € Kombi"
|
||||
"22018567","21,06","0.00","17,99","Merkur Schoppe - Kundendienst","Holzhauser Str. 139","13509, 10365","18,11","07:19 (07.05.)","07:20 (07.05.)","25,68","Holzhauser Str.;139;13509;Berlin;DE|Coppistr.;10;10365;Berlin;DE","33,92 €","18,00 Km in zone_1_km (1,10 € * 18,11 km) + 14,00 € Kombi"
|
||||
"22018597","21,06","0.00","17,99","Erich Weit GmbH","Colditzstr. 38-42","12099, 13589","25,63","07:32 (07.05.)","10:10 (07.05.)","25,68","Colditzstr.;38-42;12099;Berlin;DE|Paul-Gerhardt-Ring;16-20;13589;Berlin;DE","41,25 €","24,00 Km in zone_1_km (1,10 € * 24,77 km) + 14,00 € Kombi"
|
||||
"22018764","21,06","0.00","17,99","Aalberts Surface Technologie GmbH","Coswiger Str. 16","12681, 12277","24,51","08:24 (07.05.)","11:13 (07.05.)","25,68","Coswiger Str.;16;12681;Berlin;DE|Sperenberger Str.;5a;12277;Berlin;DE","41,10 €","24,00 Km in zone_1_km (1,10 € * 24,64 km) + 14,00 € Kombi"
|
||||
"22018179","21,06","0.00","17,99","MVZ Dres. Weinrich GmbH","Elcknerplatz 18","12555, 10829","0","09:00 (07.05.)","11:17 (07.05.)","25,68","Elcknerplatz;18;12555;Berlin;DE|Geneststr.;5;10829;Berlin;DE","ERROR","Adresse in 1. Station nicht ok"
|
||||
"22019035","21,06","0.00","17,99","Märkische Schraubenfabrik","Nunsdorfer Ring 14","12277, 12681","27,96","09:28 (07.05.)","12:08 (07.05.)","25,68","Nunsdorfer Ring;14;12277;Berlin;DE|Boxberger Straße;4;12681;Berlin;DE","44,18 €","27,00 Km in zone_1_km (1,10 € * 27,44 km) + 14,00 € Kombi"
|
||||
"22019271","21,06","0.00","17,99","Wilhelm Brose GmbH","Breite Str. 23","13597, 10318","29,84","10:28 (07.05.)","11:21 (07.05.)","25,68","Breite Str.;23;13597;Berlin;DE|Blockdammweg;39-59;10318;Berlin;DE","46,90 €","29,00 Km in zone_1_km (1,10 € * 29,91 km) + 14,00 € Kombi"
|
||||
"22020001","21,06","0.00","17,99","Sentech Instruments GmbH","Schwarzschildstr. 2","12489, 10623","20,04","14:17 (07.05.)","14:46 (07.05.)","25,68","Schwarzschildstr.;2;12489;Berlin;DE|Fasanenstrasse;85;10623;Berlin;DE","38,02 €","21,00 Km in zone_1_km (1,10 € * 21,84 km) + 14,00 € Kombi"
|
||||
"22015862","20,62","0.00","18,01","Schumann Kfz-Service","Neuköllnische Allee 58","12057, 14163","16,74","12:27 (05.05.)","12:27 (05.05.)","25,15","Neuköllnische Allee;58;12057;Berlin;DE|Potsdamer Str.;3d;14163;Berlin;DE","32,43 €","16,00 Km in zone_1_km (1,10 € * 16,75 km) + 14,00 € Kombi"
|
||||
"22016743","20,62","0.00","18,01","Fliesenparadies Glaeske & Sefzig","Alt-Kaulsdorf 26","12621, 13156","38,68","07:34 (06.05.)","07:41 (06.05.)","25,15","Alt-Kaulsdorf;26;12621;Berlin;DE|Blankenburger Str.;129-141;13156;Berlin;DE","36,34 €","20,00 Km in zone_1_km (1,10 € * 20,31 km) + 14,00 € Kombi"
|
||||
"22017098","20,62","0.00","18,01","Schluessel-Schnelldienst GmbH","Duisburger Str. 8","10707, 13055","16,99","09:14 (06.05.)","12:08 (06.05.)","25,15","Duisburger Str.;8;10707;Berlin;DE|Ferdinand-Schultze-Str.;91;13055;Berlin;DE","33,14 €","17,00 Km in zone_1_km (1,10 € * 17,40 km) + 14,00 € Kombi"
|
||||
"22017871","20,62","0.00","18,01","Dr. Christopher Topar","Clayallee 225 a","14195, 10119","21,23","13:07 (06.05.)","14:18 (06.05.)","25,15","Clayallee;225 a;14195;Berlin;DE|Fehrbelliner Str.;84;10119;Berlin;DE","31,06 €","15,00 Km in zone_1_km (1,10 € * 15,51 km) + 14,00 € Kombi"
|
||||
"22018527","20,62","0.00","18,01","WISTA.Plan GmbH","Rudower Chaussee 19","12489, 10707","19,77","09:00 (07.05.)","09:04 (07.05.)","25,15","Rudower Chaussee;19;12489;Berlin;DE|Württembergische Str.;6;10707;Berlin;DE","35,70 €","19,00 Km in zone_1_km (1,10 € * 19,73 km) + 14,00 € Kombi"
|
||||
"22016595","20,5","0.00","18","Lager HUAWEI",". .","., .","","19:47 (05.05.)","19:47 (05.05.)","25",".;.;.;.;DE|.;.;.;.;DE","ERROR","Adresse in 1. Station nicht ok"
|
||||
"22015722","20,23","0.00","18,03","STADTBOTE, Proj. Flash","Colditzstr. 33","12099, 10365","14,21","10:30 (07.05.)","10:43 (07.05.)","24,68","Colditzstr.;33;12099;Berlin;DE|Ruschestr.;70;10365;Berlin;DE","29,07 €","13,00 Km in zone_1_km (1,10 € * 13,70 km) + 14,00 € Kombi"
|
||||
"22020329","20,23","0.00","18,03","STADTBOTE, Proj. Flash","Colditzstr. 33","12099, 10713","9,07","16:26 (07.05.)","16:27 (07.05.)","24,68","Colditzstr.;33;12099;Berlin;DE|Berliner Str.;112-115;10713;Berlin;DE","23,97 €","9,00 Km in zone_1_km (1,10 € * 9,06 km) + 14,00 € Kombi"
|
||||
"22014826","20,2","0.00","18,05","Raab Karcher Baustoffhandel","Pasewalker Str. 86-87","13127, 12619","19,72","07:52 (05.05.)","07:55 (05.05.)","24,65","Pasewalker Str.;86-87;13127;Berlin;DE|Erich-Kästner-Straße;52;12619;Berlin;DE","35,69 €","19,00 Km in zone_1_km (1,10 € * 9,36 km) + zone_2_km (1,10 € * 10,36 km) + 14,00 € Kombi"
|
||||
"22014687","18,78","17.55","23,69","DRK-Blutspendedienst Nord-Ost","Hindenburgdamm 30a","12203, 12351","15,29","08:00 (05.05.)","07:34 (05.05.)","24,61","Hindenburgdamm;30a;12203;Berlin;DE|Rudower Str.;48;12351;Berlin;DE","30,80 €","15,00 Km in zone_1_km (1,10 € * 15,27 km) + 14,00 € Kombi"
|
||||
"22015902","18,78","17.55","23,69","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","12:42 (05.05.)","12:53 (05.05.)","24,61","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € Kombi"
|
||||
"22016248","20,18","0.00","18","Rechtsanwalt Kai-Erik Becker","Emser Platz 2","10719, 13187","16,21","15:15 (05.05.)","14:53 (05.05.)","24,61","Emser Platz;2;10719;Berlin;DE|Pradelstr.;14;13187;Berlin;DE","27,12 €","11,00 Km in zone_1_km (1,10 € * 11,93 km) + 14,00 € Kombi"
|
||||
"22016420","18,78","17.55","23,69","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","15:49 (05.05.)","16:01 (05.05.)","24,61","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € Kombi"
|
||||
"22016636","18,78","17.55","23,69","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","06:12 (06.05.)","07:14 (06.05.)","24,61","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € Kombi"
|
||||
"22017542","18,78","17.55","23,69","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","11:18 (06.05.)","11:50 (06.05.)","24,61","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € Kombi"
|
||||
"22017837","18,78","17.55","23,69","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","16,06","12:55 (06.05.)","14:33 (06.05.)","24,61","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € Kombi"
|
||||
"22017862","20,18","0.00","18","Garleff & Sohn KG","Schönhauser Str. 32","13127, 14193","19,4","13:04 (06.05.)","13:04 (06.05.)","24,61","Schönhauser Str.;32;13127;Berlin;DE|Kronberger Str.;12;14193;Berlin;DE","35,33 €","19,00 Km in zone_1_km (1,10 € * 19,39 km) + 14,00 € Kombi"
|
||||
"22018061","20,18","0.00","18","Possling","Landsberger Straße 9","12623, 13353","19,85","14:09 (06.05.)","14:57 (06.05.)","24,61","Landsberger Straße;9;12623;Berlin;DE|Genter Str.;10;13353;Berlin;DE","35,84 €","19,00 Km in zone_1_km (1,10 € * 19,85 km) + 14,00 € Kombi"
|
||||
"22018393","18,78","17.55","23,69","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10249","","16:46 (06.05.)","17:03 (06.05.)","24,61","Hindenburgdamm;30a;12203;Berlin;DE|Landsberger Allee;49;10249;Berlin;DE","31,52 €","15,00 Km in zone_1_km (1,10 € * 15,93 km) + 14,00 € Kombi"
|
||||
"22018625","20,18","0.00","18","Lechmann Engeneering","Woermannkehre 2","12359, 12681","19,33","07:41 (07.05.)","09:03 (07.05.)","24,61","Woermannkehre;2;12359;Berlin;DE|Boxberger Straße;10;12681;Berlin;DE","35,25 €","19,00 Km in zone_1_km (1,10 € * 19,32 km) + 14,00 € Kombi"
|
||||
"22020348","18,78","17.55","23,69","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 10967","12,53","16:49 (07.05.)","17:04 (07.05.)","24,61","Hindenburgdamm;30a;12203;Berlin;DE|Dieffenbachstr.;1;10967;Berlin;DE","27,77 €","12,00 Km in zone_1_km (1,10 € * 12,52 km) + 14,00 € Kombi"
|
||||
"22020364","18,78","17.55","23,69","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 12351","14,79","17:10 (07.05.)","17:10 (07.05.)","24,61","Hindenburgdamm;30a;12203;Berlin;DE|Kormoranweg;48;12351;Berlin;DE","30,25 €","14,00 Km in zone_1_km (1,10 € * 14,77 km) + 14,00 € Kombi"
|
||||
"22019619","19,77","0.00","18,03","Raab Karcher","Sachsenhausener Str. 20","16515, 14480","57,04","12:12 (07.05.)","12:23 (07.05.)","24,12","Sachsenhausener Str.;20;16515;Oranienburg;DE|Am Silbergraben;.;14480;Potsdam;DE","76,66 €","57,00 Km in zone_2_km (1,10 € * 28,37 km) + zone_1_km (1,10 € * 28,59 km) + 14,00 € Kombi"
|
||||
"22013465","19,74","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Industriestr. 15","12099, 12555","19,61","07:00 (05.05.)","07:16 (05.05.)","24,08","Industriestr.;15;12099;Berlin;DE|Annenallee;20;12555;Berlin;DE","33,59 €","17,00 Km in zone_1_km (1,10 € * 17,81 km) + 14,00 € Kombi"
|
||||
"22017228","19,74","0.00","18,02","Hommelsheim GmbH","Rheingaustr. 2","12161, 12681","29,34","09:52 (06.05.)","13:54 (06.05.)","24,08","Rheingaustr.;2;12161;Berlin;DE|Boxberger Str.;3;12681;Berlin;DE","43,77 €","27,00 Km in zone_1_km (1,10 € * 27,06 km) + 14,00 € Kombi"
|
||||
"22017759","19,74","0.00","18,02","Baumer Germany GmbH & Co. KG","Max-Dohrn-Str. 2+4","10589, 13053","17,36","12:28 (06.05.)","13:11 (06.05.)","24,08","Max-Dohrn-Str.;2+4;10589;Berlin;DE|Anna-Ebermann-Str.;6;13053;Berlin;DE","33,09 €","17,00 Km in zone_1_km (1,10 € * 17,35 km) + 14,00 € Kombi"
|
||||
"22018671","19,74","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Coppistr. 5","10365, 12249","18,31","07:57 (07.05.)","10:46 (07.05.)","24,08","Coppistr.;5;10365;Berlin;DE|Belßstr.;39;12249;Berlin;DE","34,67 €","18,00 Km in zone_1_km (1,10 € * 18,79 km) + 14,00 € Kombi"
|
||||
"22018796","19,74","0.00","18,02","P. Starzonek Baustoff-Fachhandel","Colditzstr. 33","12099, 12555","0","08:31 (07.05.)","12:27 (07.05.)","24,08","Colditzstr.;33;12099;Berlin;DE|Elcknerplatz;22;12555;Berlin;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22018067","19,74","0.00","18,02","Schlutheiß Brauerei","Indira-Gandhi-Str. 66-69","13053, 13403","12,16","09:00 (07.05.)","11:05 (07.05.)","24,08","Indira-Gandhi-Str.;66-69;13053;Berlin;DE|Großkopfstr.;5;13403;Berlin;DE","27,38 €","12,00 Km in zone_1_km (1,10 € * 12,16 km) + 14,00 € Kombi"
|
||||
"22019804","19,74","0.00","18,02","sto_Kst. 6410","Ullsteinstr. 98-106","12109, 12527","17,33","13:17 (07.05.)","15:23 (07.05.)","24,08","Ullsteinstr.;98-106;12109;Berlin;DE|Königsseestr.;9;12527;Berlin;DE","31,31 €","15,00 Km in zone_1_km (1,10 € * 15,74 km) + 14,00 € Kombi"
|
||||
"22017625","19,27","0.00","18","Hilti Deutschland GmbH","Alt-Mahlsdorf 26","12623, 13158","37,05","11:43 (06.05.)","13:58 (06.05.)","23,5","Alt-Mahlsdorf;26;12623;Berlin;DE|Friedrich-Engels-Str.;166;13158;Berlin;DE","54,76 €","37,00 Km in zone_1_km (1,10 € * 16,29 km) + zone_2_km (1,10 € * 20,76 km) + 14,00 € Kombi"
|
||||
"22019297","18,86","0.00","18,04","Berliner Schrauben GmbH","Prinzenstr. 86","10969, 14163","","10:45 (07.05.)","","23,01","Prinzenstr.;86;10969;Berlin;DE|Quermatenweg;152;14163;Berlin;DE","37,27 €","21,00 Km in zone_1_km (1,10 € * 21,15 km) + 14,00 € Kombi"
|
||||
"22014859","17,99","0.00","18","Blumen Marsano GmbH","Charlottenstr. 75","10117, 12555","","08:06 (05.05.)","","21,94","Charlottenstr.;75;10117;Berlin;DE|Lindenhof;31b;12555;Berlin;DE","35,64 €","19,00 Km in zone_1_km (1,10 € * 19,67 km) + 14,00 € Kombi"
|
||||
"22016457","17,99","0.00","18","Emil Herminghaus","Gradestr. 48","12347, 13353","22,09","08:00 (06.05.)","10:07 (06.05.)","21,94","Gradestr.;48;12347;Berlin;DE|Genter Str.;18;13353;Berlin;DE","29,96 €","14,00 Km in zone_1_km (1,10 € * 14,51 km) + 14,00 € Kombi"
|
||||
"22017823","17,99","0.00","18","CVK, Personalleitung","Augustenburger Platz 1","13353, 12059","11,53","12:49 (06.05.)","13:02 (06.05.)","21,94","Augustenburger Platz;1;13353;Berlin;DE|Weserstr.;152;12059;Berlin;DE","26,67 €","11,00 Km in zone_1_km (1,10 € * 11,52 km) + 14,00 € Kombi"
|
||||
"22018217","17,99","0.00","18","Firma Molton Discount","Warener Str. 5","12683, 10551","19,45","09:00 (07.05.)","12:40 (07.05.)","21,94","Warener Str.;5;12683;Berlin;DE|Wiclefstr.;16-17;10551;Berlin;DE","35,62 €","19,00 Km in zone_1_km (1,10 € * 19,65 km) + 14,00 € Kombi"
|
||||
"22015400","17,55","0.00","17,99","FirstStep communications","Am Studio 2","12489, 12205","22,32","10:17 (05.05.)","10:17 (05.05.)","21,4","Am Studio;2;12489;Berlin;DE|Pfleidererstr.;3-4;12205;Berlin;DE","38,76 €","22,00 Km in zone_1_km (1,10 € * 22,51 km) + 14,00 € Kombi"
|
||||
"22015630","17,55","0.00","17,99","Kerana im stilwerk Berlin","Kantstr. 17","10623, 13086","12,19","11:16 (05.05.)","12:57 (05.05.)","21,4","Kantstr.;17;10623;Berlin;DE|Langhansstr.;14;13086;Berlin;DE","27,26 €","12,00 Km in zone_1_km (1,10 € * 12,05 km) + 14,00 € Kombi"
|
||||
"22015694","17,55","0.00","17,99","Parkettlegermeister Rudolph","Eresburgstr. 24-29","12103, 13405","17,12","11:32 (05.05.)","12:42 (05.05.)","21,4","Eresburgstr.;24-29;12103;Berlin;DE|Nordlichtstraße;28;13405;Berlin;DE","33,01 €","17,00 Km in zone_1_km (1,10 € * 17,28 km) + 14,00 € Kombi"
|
||||
"22015766","17,55","0.00","17,99","Das süße Leben","Salzburger Str. 7","10825, 13509","17,7","11:55 (05.05.)","12:00 (05.05.)","21,4","Salzburger Str.;7;10825;Berlin;DE|Holzhauser Str.;175;13509;Berlin;DE","33,64 €","17,00 Km in zone_1_km (1,10 € * 17,85 km) + 14,00 € Kombi"
|
||||
"22016538","17,55","0.00","17,99","Medical Park Berlin","An der Mühle 2-9","13507, 10829","0","16:57 (05.05.)","17:15 (05.05.)","21,4","An der Mühle;2-9;13507;Berlin;DE|Reichartstr.;2;10829;Berlin;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22017696","17,55","0.00","17,99","LWB","Wotanstr. 18","10365, 12277","21,27","12:06 (06.05.)","13:13 (06.05.)","21,4","Wotanstr.;18;10365;Berlin;DE|Nunsdorfer Ring;13;12277;Berlin;DE","37,08 €","21,00 Km in zone_1_km (1,10 € * 20,98 km) + 14,00 € Kombi"
|
||||
"22017842","17,55","0.00","17,99","DAT Deutsche Aufzugstechnik GmbH","Flottenstr. 28-42","13407, 10783","10,4","12:57 (06.05.)","12:59 (06.05.)","21,4","Flottenstr.;28-42;13407;Berlin;DE|Steinmetzstr;64;10783;Berlin;DE","25,44 €","10,00 Km in zone_1_km (1,10 € * 10,40 km) + 14,00 € Kombi"
|
||||
"22018071","17,55","0.00","17,99","media Agent","Mecklenburgische Str. 87-88","10713, 14089","20,35","14:13 (06.05.)","14:32 (06.05.)","21,4","Mecklenburgische Str.;87-88;10713;Berlin;DE|Sakrower Landstr.;26;14089;Berlin;DE","36,37 €","20,00 Km in zone_1_km (1,10 € * 20,34 km) + 14,00 € Kombi"
|
||||
"22018333","17,55","0.00","17,99","BANDELIN electronic GmbH","Heinrichstr. 3-4","12207, 12489","22,39","08:00 (07.05.)","09:43 (07.05.)","21,4","Heinrichstr.;3-4;12207;Berlin;DE|Wagner-Régeny-Str.;8;12489;Berlin;DE","39,80 €","23,00 Km in zone_1_km (1,10 € * 23,45 km) + 14,00 € Kombi"
|
||||
"22018771","17,55","0.00","17,99","Schlau Großhandels GmbH & Co. KG","Coppistr. 5","10365, 12099","12,01","08:25 (07.05.)","11:33 (07.05.)","21,4","Coppistr.;5;10365;Berlin;DE|Oberlandstraße;26-35;12099;Berlin;DE","25,85 €","10,00 Km in zone_1_km (1,10 € * 10,77 km) + 14,00 € Kombi"
|
||||
"22018817","17,55","0.00","17,99","Schlau Großhandels GmbH & Co. KG","Coppistr. 5","10365, 12099","12,83","08:35 (07.05.)","10:58 (07.05.)","21,4","Coppistr.;5;10365;Berlin;DE|Industriestr.;15;12099;Berlin;DE","26,94 €","11,00 Km in zone_1_km (1,10 € * 11,76 km) + 14,00 € Kombi"
|
||||
"22019473","17,55","0.00","17,99","media Agent","Mecklenburgische Str. 87-88","10713, 14089","15,27","11:22 (07.05.)","11:24 (07.05.)","21,4","Mecklenburgische Str.;87-88;10713;Berlin;DE|Alt-Gatow;23;14089;Berlin;DE","30,80 €","15,00 Km in zone_1_km (1,10 € * 15,27 km) + 14,00 € Kombi"
|
||||
"22018140","17,11","0.00","19,86","ABS Fahrzeugtechnik GmbH","Huttenstr. 57","10553, 13507","9,75","14:43 (06.05.)","15:09 (06.05.)","21,35","Huttenstr.;57;10553;Berlin;DE|Am Borsigturm;33;13507;Berlin;DE","24,71 €","9,00 Km in zone_1_km (1,10 € * 9,74 km) + 14,00 € Kombi"
|
||||
"22015384","17,38","0.00","17,98","Bär & Ollenroth KG Berlin","Bouchéstr. 12","12435, 14167","22,86","10:14 (05.05.)","10:15 (05.05.)","21,19","Bouchéstr.;12;12435;Berlin;DE|Teltower Damm;293;14167;Berlin;DE","36,52 €","20,00 Km in zone_1_km (1,10 € * 20,47 km) + 14,00 € Kombi"
|
||||
"22014673","16,27","0.00","22,04","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 12351","","05:47 (05.05.)","","20,87","Hindenburgdamm;30a;12203;Berlin;DE|Kormoranweg;48;12351;Berlin;DE","30,25 €","14,00 Km in zone_1_km (1,10 € * 14,77 km) + 14,00 € Kombi"
|
||||
"22014697","17,11","0.00","18,02","PROSOL Lacke + Farben GmbH","Gaußstr. 17","10589, 12161","11,89","06:50 (05.05.)","07:54 (05.05.)","20,87","Gaußstr.;17;10589;Berlin;DE|Bundesallee;90;12161;Berlin;DE","27,08 €","11,00 Km in zone_1_km (1,10 € * 11,89 km) + 14,00 € Kombi"
|
||||
"22012590","17,11","0.00","18,02","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 10557","11,06","07:00 (05.05.)","07:50 (05.05.)","20,87","Gradestr.;46-50;12347;Berlin;DE|Washingtonplatz;1;10557;Berlin;DE","26,17 €","11,00 Km in zone_1_km (1,10 € * 11,06 km) + 14,00 € Kombi"
|
||||
"22013174","17,11","0.00","18,02","Berliner Schrauben","Prinzenstr. 86","10969, 10367","7,54","07:00 (05.05.)","06:33 (05.05.)","20,87","Prinzenstr.;86;10969;Berlin;DE|Vulkanstr.;13;10367;Berlin;DE","22,29 €","7,00 Km in zone_1_km (1,10 € * 7,54 km) + 14,00 € Kombi"
|
||||
"22013489","17,11","0.00","18,02","Krankenhaus Maria Heimsuchung","Breite Str. 46-47","13187, 13353","8,53","07:00 (05.05.)","07:19 (05.05.)","20,87","Breite Str.;46-47;13187;Berlin;DE|Sylter Str.;2;13353;Berlin;DE","22,71 €","7,00 Km in zone_1_km (1,10 € * 7,92 km) + 14,00 € Kombi"
|
||||
"22013816","17,11","0.00","18,02","ZTB-CCM","Luisenstr. 7","10117, 12203","13,25","08:00 (05.05.)","10:13 (05.05.)","20,87","Luisenstr.;7;10117;Berlin;DE|Hindenburgdamm;30;12203;Berlin;DE","28,72 €","13,00 Km in zone_1_km (1,10 € * 13,38 km) + 14,00 € Kombi"
|
||||
"22014694","17,11","0.00","18,02","Rausch Straßen- und Tiefbau","Chemnitzer Str. 19","14612, 12489","","08:00 (05.05.)","07:37 (05.05.)","20,87","Chemnitzer Str.;19;14612;Falkensee;DE|Rudower Chaussee;48;12489;Berlin;DE","57,37 €","39,00 Km in zone_2_km (1,10 € * 7,13 km) + zone_1_km (1,10 € * 32,30 km) + 14,00 € Kombi"
|
||||
"22014896","17,11","0.00","18,02","GBAV","Gradestr. 83","12347, 12489","9,4","08:15 (05.05.)","08:36 (05.05.)","20,87","Gradestr.;83;12347;Berlin;DE|Justus-von-Liebig-Str.;4;12489;Berlin;DE","24,34 €","9,00 Km in zone_1_km (1,10 € * 9,40 km) + 14,00 € Kombi"
|
||||
"22014904","17,11","0.00","18,02","Scholz Elektrotechnik GmbH","Lauenburger Str. 85","12169, 10243","13,25","08:17 (05.05.)","08:17 (05.05.)","20,87","Lauenburger Str.;85;12169;Berlin;DE|Am Postbahnhof;15;10243;Berlin;DE","28,56 €","13,00 Km in zone_1_km (1,10 € * 13,24 km) + 14,00 € Kombi"
|
||||
"22014996","17,11","0.00","18,02","BOS Technology GmbH","Alexander-Meißner-Str. 36","12526, 12057","13,31","08:41 (05.05.)","09:25 (05.05.)","20,87","Alexander-Meißner-Str.;36;12526;Berlin;DE|Schmalenbachstr.;22;12057;Berlin;DE","28,33 €","13,00 Km in zone_1_km (1,10 € * 11,03 km) + zone_2_km (1,10 € * 2,00 km) + 14,00 € Kombi"
|
||||
"22015001","17,11","0.00","18,02","AWO Refugium Ostpreußendamm","Ostpreußendamm 108","12207, 10589","21,84","08:42 (05.05.)","10:33 (05.05.)","20,87","Ostpreußendamm;108;12207;Berlin;DE|Darwinstr.;14;10589;Berlin;DE","32,66 €","17,00 Km in zone_1_km (1,10 € * 16,96 km) + 14,00 € Kombi"
|
||||
"22015009","17,11","0.00","18,02","JOP Handels GmbH & Co. KG","Ringbahnstr. 10-14","12099, 10823","5,36","08:44 (05.05.)","08:44 (05.05.)","20,87","Ringbahnstr.;10-14;12099;Berlin;DE|Belziger Str.;16;10823;Berlin;DE","19,89 €","5,00 Km in zone_1_km (1,10 € * 5,35 km) + 14,00 € Kombi"
|
||||
"22015023","17,11","0.00","18,02","Charité Campus Mitte","Luisenstr. 64","10117, 13353","4,15","08:46 (05.05.)","10:41 (05.05.)","20,87","Luisenstr.;64;10117;Berlin;DE|Augustenburger Platz;1;13353;Berlin;DE","19,50 € [M]","4,00 Km in zone_1_km (1,10 € * 4,15 km) + 14,00 € Kombi"
|
||||
"22015027","17,11","0.00","18,02","PROSOL Lacke + Farben GmbH","Gaußstr. 17","10589, 12043","21,79","08:48 (05.05.)","08:49 (05.05.)","20,87","Gaußstr.;17;10589;Berlin;DE|Karl-Marx-Str.;83;12043;Berlin;DE","36,14 €","20,00 Km in zone_1_km (1,10 € * 20,13 km) + 14,00 € Kombi"
|
||||
"22015029","17,11","0.00","18,02","BEDO Innenausbausysteme und Bau","Hermann-Blankenstein-Str. 50","10249, 10557","","08:50 (05.05.)","","20,87","Hermann-Blankenstein-Str.;50;10249;Berlin;DE|Alice-Berend-Str.;1;10557;Berlin;DE","24,41 €","9,00 Km in zone_1_km (1,10 € * 9,46 km) + 14,00 € Kombi"
|
||||
"22013739","17,11","0.00","18,02","Fritz Bergmann Reprografie GmbH","Schloßstr. 66","12165, 10407","16,6","09:00 (05.05.)","09:57 (05.05.)","20,87","Schloßstr.;66;12165;Berlin;DE|Storkower Str.;99;10407;Berlin;DE","32,52 €","16,00 Km in zone_1_km (1,10 € * 16,84 km) + 14,00 € Kombi"
|
||||
"22014662","17,11","0.00","18,02","BSI Berger Schallehn Ingenieure","Einsteinufer 63-65","10587, 10117","5,71","09:00 (05.05.)","08:41 (05.05.)","20,87","Einsteinufer;63-65;10587;Berlin;DE|Am Kupfergraben;2;10117;Berlin;DE","20,28 €","5,00 Km in zone_1_km (1,10 € * 5,71 km) + 14,00 € Kombi"
|
||||
"22014895","17,11","0.00","18,02","Monika Günther Hausverwaltung","Malteserstr. 174","12277, 12109","5,44","09:00 (05.05.)","08:30 (05.05.)","20,87","Malteserstr.;174;12277;Berlin;DE|Mariendorfer Damm;26;12109;Berlin;DE","19,98 €","5,00 Km in zone_1_km (1,10 € * 5,44 km) + 14,00 € Kombi"
|
||||
"22015065","17,11","0.00","18,02","KÖNIGSDRUCK","Alt-Reinickendorf 28","13407, 10719","14,87","09:00 (05.05.)","11:08 (05.05.)","20,87","Alt-Reinickendorf;28;13407;Berlin;DE|Fasanenstr.;25;10719;Berlin;DE","30,36 €","14,00 Km in zone_1_km (1,10 € * 14,87 km) + 14,00 € Kombi"
|
||||
"22015133","17,11","0.00","18,02","Ultra Tube GmbH","Saatwinkler Damm 66","13627, 14059","6,42","09:16 (05.05.)","09:17 (05.05.)","20,87","Saatwinkler Damm;66;13627;Berlin;DE|Königin-Elisabeth-Str.;1;14059;Berlin;DE","21,06 €","6,00 Km in zone_1_km (1,10 € * 6,42 km) + 14,00 € Kombi"
|
||||
"22015136","17,11","0.00","18,02","Hommelsheim GmbH","Rheingaustr. 2","12161, 12359","11,32","09:16 (05.05.)","09:52 (05.05.)","20,87","Rheingaustr.;2;12161;Berlin;DE|Haarlemer Str.;31;12359;Berlin;DE","27,23 €","12,00 Km in zone_1_km (1,10 € * 12,03 km) + 14,00 € Kombi"
|
||||
"22015160","17,11","0.00","18,02","Schäfer Automatisierungs-","Rathenower Str. 11","12305, 12159","14,54","09:19 (05.05.)","09:19 (05.05.)","20,87","Rathenower Str.;11;12305;Berlin;DE|Sarrazinstr.;11-15;12159;Berlin;DE","29,99 €","14,00 Km in zone_1_km (1,10 € * 14,54 km) + 14,00 € Kombi"
|
||||
"22015180","17,11","0.00","18,02","Charité Campus Mitte","Luisenstr. 7","10117, 12203","13,25","09:24 (05.05.)","09:24 (05.05.)","20,87","Luisenstr.;7;10117;Berlin;DE|Hindenburgdamm;30;12203;Berlin;DE","28,72 €","13,00 Km in zone_1_km (1,10 € * 13,38 km) + 14,00 € Kombi"
|
||||
"22015195","17,11","0.00","18,02","Herr Chau","an der Mole 5","10317, 10367","2,03","09:28 (05.05.)","10:30 (05.05.)","20,87","an der Mole;5;10317;Berlin;DE|Stefan-Heym-Platz;1;10367;Berlin;DE","19,50 € [M]","2,00 Km in zone_1_km (1,10 € * 2,03 km) + 14,00 € Kombi"
|
||||
"22015298","17,11","0.00","18,02","Bacco Bäckerei","Annenstr. 48","10179, 10249","4,85","09:52 (05.05.)","10:18 (05.05.)","20,87","Annenstr.;48;10179;Berlin;DE|Hermann-Blankenstein-Str.;30;10249;Berlin;DE","19,50 € [M]","4,00 Km in zone_1_km (1,10 € * 4,82 km) + 14,00 € Kombi"
|
||||
"22013035","17,11","0.00","18,02","Beumer & Lutum GmbH Bio-Bäckerei","Zossener Str. 34","10961, 10787","3,75","10:00 (05.05.)","09:30 (05.05.)","20,87","Zossener Str.;34;10961;Berlin;DE|Ahornstr.;5;10787;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,75 km) + 14,00 € Kombi"
|
||||
"22013098","17,11","0.00","18,02","Vivantes Humbolt-Klinikum","Am Nordgraben 2","13509, 10115","9,99","10:00 (05.05.)","11:26 (05.05.)","20,87","Am Nordgraben;2;13509;Berlin;DE|Invalidenstr.;112;10115;Berlin;DE","25,45 €","10,00 Km in zone_1_km (1,10 € * 10,41 km) + 14,00 € Kombi"
|
||||
"22013769","17,11","0.00","18,02","Herr Schneckmann","Rosenorter Steig 13","13503, 10623","18,04","10:00 (05.05.)","10:38 (05.05.)","20,87","Rosenorter Steig;13;13503;Berlin;DE|Goethestr.;82;10623;Berlin;DE","33,83 €","18,00 Km in zone_1_km (1,10 € * 18,03 km) + 14,00 € Kombi"
|
||||
"22015334","17,11","0.00","18,02","Johannesstift Diakonie Services GmbH","Westhafenstr. 1","13353, 10785","5,91","10:00 (05.05.)","10:27 (05.05.)","20,87","Westhafenstr.;1;13353;Berlin;DE|Lützowstr.;24-26;10785;Berlin;DE","20,50 €","5,00 Km in zone_1_km (1,10 € * 5,91 km) + 14,00 € Kombi"
|
||||
"22015347","17,11","0.00","18,02","Merkur Schoppe - Kundendienst","Holzhauser Str. 139","13509, 13086","12,37","10:03 (05.05.)","10:03 (05.05.)","20,87","Holzhauser Str.;139;13509;Berlin;DE|Börnestr.;5;13086;Berlin;DE","27,81 €","12,00 Km in zone_1_km (1,10 € * 12,55 km) + 14,00 € Kombi"
|
||||
"22015366","17,11","0.00","18,02","Zweirad Shop Cintula","Tempelhofer Weg 3","12099, 12277","7,41","10:08 (05.05.)","11:06 (05.05.)","20,87","Tempelhofer Weg;3;12099;Berlin;DE|Zehrensdorfer Str.;9;12277;Berlin;DE","22,15 €","7,00 Km in zone_1_km (1,10 € * 7,41 km) + 14,00 € Kombi"
|
||||
"22015367","17,11","0.00","18,02","Kardiologie am Ku´damm 93","Kurfürstendamm 93","10709, 10829","8,53","10:08 (05.05.)","10:08 (05.05.)","20,87","Kurfürstendamm;93;10709;Berlin;DE|Geneststr.;5;10829;Berlin;DE","23,37 €","8,00 Km in zone_1_km (1,10 € * 8,52 km) + 14,00 € Kombi"
|
||||
"22015389","17,11","0.00","18,02","Dr. Christopher Topar","Clayallee 225 a","14195, 12107","11,62","10:15 (05.05.)","11:33 (05.05.)","20,87","Clayallee;225 a;14195;Berlin;DE|Göllweg;15b;12107;Berlin;DE","26,78 €","11,00 Km in zone_1_km (1,10 € * 11,62 km) + 14,00 € Kombi"
|
||||
"22015425","17,11","0.00","18,02","Deutscher Franchise-Verband e. V.","Luisenstr. 41","10117, 10777","5,33","10:24 (05.05.)","10:53 (05.05.)","20,87","Luisenstr.;41;10117;Berlin;DE|Ansbacher Str.;66;10777;Berlin;DE","19,86 €","5,00 Km in zone_1_km (1,10 € * 5,33 km) + 14,00 € Kombi"
|
||||
"22015439","17,11","0.00","18,02","DAT Deutsche Aufzugstechnik GmbH","Flottenstr. 28-42","13407, 13583","15,92","10:27 (05.05.)","11:09 (05.05.)","20,87","Flottenstr.;28-42;13407;Berlin;DE|Kandeler Weg;1;13583;Berlin;DE","31,51 €","15,00 Km in zone_1_km (1,10 € * 15,92 km) + 14,00 € Kombi"
|
||||
"22015461","17,11","0.00","18,02","KÖNIGSDRUCK","Alt-Reinickendorf 28","13407, 10997","14,52","10:35 (05.05.)","12:25 (05.05.)","20,87","Alt-Reinickendorf;28;13407;Berlin;DE|Skalitzer Str.;68;10997;Berlin;DE","29,97 €","14,00 Km in zone_1_km (1,10 € * 14,52 km) + 14,00 € Kombi"
|
||||
"22015494","17,11","0.00","18,02","Bohle Innenausbau GmbH","Kienhorststr. 55","13403, 10999","13,7","10:42 (05.05.)","12:26 (05.05.)","20,87","Kienhorststr.;55;13403;Berlin;DE|Oranienstr.;183;10999;Berlin;DE","29,07 €","13,00 Km in zone_1_km (1,10 € * 13,70 km) + 14,00 € Kombi"
|
||||
"22015509","17,11","0.00","18,02","JODISCH GmbH","Am Eulenhorst 11","13505, 13503","3,78","10:45 (05.05.)","11:09 (05.05.)","20,87","Am Eulenhorst;11;13505;Berlin;DE|An der Schneise;72;13503;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,77 km) + 14,00 € Kombi"
|
||||
"22015530","17,11","0.00","18,02","Beck Trockenbau GmbH","An der Wuhlheide 232","12459, 10245","9,01","10:48 (05.05.)","11:06 (05.05.)","20,87","An der Wuhlheide;232;12459;Berlin;DE|Sonntagstr.;24;10245;Berlin;DE","23,91 €","9,00 Km in zone_1_km (1,10 € * 9,01 km) + 14,00 € Kombi"
|
||||
"22015557","17,11","0.00","18,02","Dipl.-Ing. Matthias Ahnefeld","Geisbergstr. 39","10777, 13187","12,84","10:54 (05.05.)","11:18 (05.05.)","20,87","Geisbergstr.;39;10777;Berlin;DE|Mühlenstr.;77;13187;Berlin;DE","26,96 €","11,00 Km in zone_1_km (1,10 € * 11,78 km) + 14,00 € Kombi"
|
||||
"22015559","17,11","0.00","18,02","Aktiv Zulassungsdienst","Heimstr. 9a","10965, 13509","20,8","10:55 (05.05.)","11:13 (05.05.)","20,87","Heimstr.;9a;10965;Berlin;DE|Wittestr.;69;13509;Berlin;DE","32,06 €","16,00 Km in zone_1_km (1,10 € * 16,42 km) + 14,00 € Kombi"
|
||||
"22015582","17,11","0.00","18,02","hb fahrzeugtechnik","Juliusstr. 5","12051, 12161","9,29","11:01 (05.05.)","13:32 (05.05.)","20,87","Juliusstr.;5;12051;Berlin;DE|Rheinstr.;29;12161;Berlin;DE","23,97 €","9,00 Km in zone_1_km (1,10 € * 9,06 km) + 14,00 € Kombi"
|
||||
"22015625","17,11","0.00","18,02","Bst.","Börnestr. 5","13086, 13509","11,97","11:14 (05.05.)","11:14 (05.05.)","20,87","Börnestr.;5;13086;Berlin;DE|Holzhauser Str.;139;13509;Berlin;DE","27,16 €","12,00 Km in zone_1_km (1,10 € * 11,96 km) + 14,00 € Kombi"
|
||||
"22015650","17,11","0.00","18,02","Weißhaupt","Fürstenbrunner Weg 54","14059, 10437","13,21","11:21 (05.05.)","11:25 (05.05.)","20,87","Fürstenbrunner Weg;54;14059;Berlin;DE|Pappelallee;59;10437;Berlin;DE","28,52 €","13,00 Km in zone_1_km (1,10 € * 13,20 km) + 14,00 € Kombi"
|
||||
"22015691","17,11","0.00","18,02","laurent.tax Steuerberatungs-","Malteserstr. 170-172","12277, 14057","15,08","11:31 (05.05.)","11:31 (05.05.)","20,87","Malteserstr.;170-172;12277;Berlin;DE|Bredtschneiderstr.;5;14057;Berlin;DE","30,58 €","15,00 Km in zone_1_km (1,10 € * 15,07 km) + 14,00 € Kombi"
|
||||
"22015692","17,11","0.00","18,02","CVK, Personalleitung","Augustenburger Platz 1","13353, 10961","8,91","11:31 (05.05.)","12:15 (05.05.)","20,87","Augustenburger Platz;1;13353;Berlin;DE|Fürbringerstraße;19;10961;Berlin;DE","22,94 €","8,00 Km in zone_1_km (1,10 € * 8,13 km) + 14,00 € Kombi"
|
||||
"22015695","17,11","0.00","18,02","St. Joseph-Krankenhaus","Wüsthoffstr. 15","12101, 12203","9,37","11:32 (05.05.)","12:36 (05.05.)","20,87","Wüsthoffstr.;15;12101;Berlin;DE|Hindenburgdamm;30a;12203;Berlin;DE","24,70 €","9,00 Km in zone_1_km (1,10 € * 9,73 km) + 14,00 € Kombi"
|
||||
"22015715","17,11","0.00","18,02","Eckard Kanold GmbH &","Bessemerstr. 24-26","12103, 10365","17,08","11:40 (05.05.)","12:07 (05.05.)","20,87","Bessemerstr.;24-26;12103;Berlin;DE|Herzbergstr.;127;10365;Berlin;DE","30,30 €","14,00 Km in zone_1_km (1,10 € * 14,82 km) + 14,00 € Kombi"
|
||||
"22015738","17,11","0.00","18,02","Wilhelm Frese GmbH","Genter Str. 18","13353, 10783","7,6","11:46 (05.05.)","12:41 (05.05.)","20,87","Genter Str.;18;13353;Berlin;DE|Kulmer Str.;20A;10783;Berlin;DE","22,35 €","7,00 Km in zone_1_km (1,10 € * 7,59 km) + 14,00 € Kombi"
|
||||
"22015754","17,11","0.00","18,02","Guenter Kaiser GmbH","Carl-Schurz-Str. 31","13597, 10717","15,93","11:53 (05.05.)","12:07 (05.05.)","20,87","Carl-Schurz-Str.;31;13597;Berlin;DE|Bundesallee;185;10717;Berlin;DE","30,92 €","15,00 Km in zone_1_km (1,10 € * 15,38 km) + 14,00 € Kombi"
|
||||
"22015764","17,11","0.00","18,02","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 10557","11,06","11:55 (05.05.)","12:36 (05.05.)","20,87","Gradestr.;46-50;12347;Berlin;DE|Washingtonplatz;1;10557;Berlin;DE","26,17 €","11,00 Km in zone_1_km (1,10 € * 11,06 km) + 14,00 € Kombi"
|
||||
"22015769","17,11","0.00","18,02","Merkur Schoppe - Geschäftsbereich","Holzhauser Str. 139","13509, 10629","13,99","11:56 (05.05.)","11:56 (05.05.)","20,87","Holzhauser Str.;139;13509;Berlin;DE|Giesebrechtstr.;20;10629;Berlin;DE","29,39 €","14,00 Km in zone_1_km (1,10 € * 13,99 km) + 14,00 € Kombi"
|
||||
"22015770","17,11","0.00","18,02","Stadge Metall u. Kunststoffb.","Müggelseedamm 70","12587, 12681","13,59","11:56 (05.05.)","11:57 (05.05.)","20,87","Müggelseedamm;70;12587;Berlin;DE|Rhinstr.;134;12681;Berlin;DE","28,94 €","13,00 Km in zone_1_km (1,10 € * 13,58 km) + 14,00 € Kombi"
|
||||
"22015818","17,11","0.00","18,02","CVK, Personalleitung","Augustenburger Platz 1","13353, 13351","1,24","12:15 (05.05.)","12:15 (05.05.)","20,87","Augustenburger Platz;1;13353;Berlin;DE|Senegalstr.;16;13351;Berlin;DE","19,50 € [M]","1,00 Km in zone_1_km (1,10 € * 1,23 km) + 14,00 € Kombi"
|
||||
"22015823","17,11","0.00","18,02","BEDO Innenausbausysteme und Bau","Hermann-Blankenstein-Str. 50","10249, 12524","17,05","12:16 (05.05.)","12:17 (05.05.)","20,87","Hermann-Blankenstein-Str.;50;10249;Berlin;DE|Bohnsdorfer Weg;99;12524;Berlin;DE","32,78 €","17,00 Km in zone_1_km (1,10 € * 17,07 km) + 14,00 € Kombi"
|
||||
"22015874","17,11","0.00","18,02","KS Automobile","Puderstr. 8","12435, 12683","11,87","12:31 (05.05.)","12:50 (05.05.)","20,87","Puderstr.;8;12435;Berlin;DE|Am Gewerbepark;5;12683;Berlin;DE","27,05 €","11,00 Km in zone_1_km (1,10 € * 11,86 km) + 14,00 € Kombi"
|
||||
"22015878","17,11","0.00","18,02","Parkett Hinterseer GmbH","Kaiserin-Augusta-Allee 16-24","10553, 10623","3,52","12:35 (05.05.)","12:34 (05.05.)","20,87","Kaiserin-Augusta-Allee;16-24;10553;Berlin;DE|Kantstr.;143;10623;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,28 km) + 14,00 € Kombi"
|
||||
"22015891","17,11","0.00","18,02","BORSIG Process Heat Exchanger","Egellsstr. 21","13507, 10623","13,2","12:38 (05.05.)","12:39 (05.05.)","20,87","Egellsstr.;21;13507;Berlin;DE|Fasanenstr.;85;10623;Berlin;DE","28,47 €","13,00 Km in zone_1_km (1,10 € * 13,15 km) + 14,00 € Kombi"
|
||||
"22015900","17,11","0.00","18,02","AW Hygiene-Service","Marienfelder Allee 135","12277, 10589","19,48","12:42 (05.05.)","12:42 (05.05.)","20,87","Marienfelder Allee;135;12277;Berlin;DE|Max-Dohrn-Str.;8-10;10589;Berlin;DE","35,59 €","19,00 Km in zone_1_km (1,10 € * 19,63 km) + 14,00 € Kombi"
|
||||
"22015938","17,11","0.00","18,02","HTF Hoch-Tiefbau in Friedrichshain","Weinbergstr. 18-20","12555, 12627","12,19","12:53 (05.05.)","13:09 (05.05.)","20,87","Weinbergstr.;18-20;12555;Berlin;DE|Zerbster Str.;60;12627;Berlin;DE","27,71 €","12,00 Km in zone_1_km (1,10 € * 12,46 km) + 14,00 € Kombi"
|
||||
"22015967","17,11","0.00","18,02","AWO Bundesverband e. V.","Bluecherstr. 62","10961, 14193","13,4","13:09 (05.05.)","13:24 (05.05.)","20,87","Bluecherstr.;62;10961;Berlin;DE|Bismarckallee;46-48;14193;Berlin;DE","28,83 €","13,00 Km in zone_1_km (1,10 € * 13,48 km) + 14,00 € Kombi"
|
||||
"22016013","17,11","0.00","18,02","Rechtsanwältin Natalija Milosevic","Sybelstr. 63","10629, 12353","19,26","13:28 (05.05.)","13:35 (05.05.)","20,87","Sybelstr.;63;10629;Berlin;DE|Joachim-Gottschalk-Weg;21;12353;Berlin;DE","33,45 €","17,00 Km in zone_1_km (1,10 € * 17,68 km) + 14,00 € Kombi"
|
||||
"22016015","17,11","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Holzhauser Str. 62-68","13509, 13409","5,13","13:29 (05.05.)","13:29 (05.05.)","20,87","Holzhauser Str.;62-68;13509;Berlin;DE|Emmentaler Str.;138;13409;Berlin;DE","19,64 €","5,00 Km in zone_1_km (1,10 € * 5,13 km) + 14,00 € Kombi"
|
||||
"22016047","17,11","0.00","18,02","lantz-immo.com","Elisenstr. 5","12169, 10245","17,21","13:41 (05.05.)","13:50 (05.05.)","20,87","Elisenstr.;5;12169;Berlin;DE|Alt-Stralau;52-53;10245;Berlin;DE","32,56 €","16,00 Km in zone_1_km (1,10 € * 16,87 km) + 14,00 € Kombi"
|
||||
"22015949","17,11","0.00","18,02","Familie Franke","Selerweg 14","12169, 10117","9,03","14:00 (05.05.)","13:33 (05.05.)","20,87","Selerweg;14;12169;Berlin;DE|Leipziger Platz;11;10117;Berlin;DE","23,93 €","9,00 Km in zone_1_km (1,10 € * 9,03 km) + 14,00 € Kombi"
|
||||
"22016024","17,11","0.00","18,02","Krankenhaus Friedrichshain","Landsberger Allee 49","10249, 12621","11,88","14:15 (05.05.)","13:41 (05.05.)","20,87","Landsberger Allee;49;10249;Berlin;DE|Myslowitzer Str.;45;12621;Berlin;DE","27,07 €","11,00 Km in zone_1_km (1,10 € * 11,88 km) + 14,00 € Kombi"
|
||||
"22016055","17,11","0.00","18,02","Praxis Gonsch","Gleimstraße 39","10437, 10829","0","14:30 (05.05.)","14:04 (05.05.)","20,87","Gleimstraße;39;10437;Berlin;DE|Reichartstr.;2;10829;Berlin;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22016433","17,11","0.00","18,02","SYNLAB Logistics GmbH","Lützowstr. 24-26","10785, 10829","0","15:56 (05.05.)","16:13 (05.05.)","20,87","Lützowstr.;24-26;10785;Berlin;DE|Reichartstr.;2;10829;Berlin;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22016452","17,11","0.00","18,02","Heinz Hammer GmbH","Ollenhauerstr. 116-117","13403, 13156","7,41","16:04 (05.05.)","16:19 (05.05.)","20,87","Ollenhauerstr.;116-117;13403;Berlin;DE|Blankenburger Str.;85-105;13156;Berlin;DE","22,18 €","7,00 Km in zone_1_km (1,10 € * 7,44 km) + 14,00 € Kombi"
|
||||
"22016359","17,11","0.00","18,02","R + S Aufzugbau GmbH","Herzbergstr. 87-99","10365, 12161","20,73","06:55 (06.05.)","15:32 (05.05.)","20,87","Herzbergstr.;87-99;10365;Berlin;DE|Südwestkorso;15a;12161;Berlin;DE","34,17 €","18,00 Km in zone_1_km (1,10 € * 18,34 km) + 14,00 € Kombi"
|
||||
"22016057","17,11","0.00","18,02","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 10623","11,49","07:00 (06.05.)","07:39 (06.05.)","20,87","Gradestr.;46-50;12347;Berlin;DE|Kantstr.;165;10623;Berlin;DE","28,95 €","13,00 Km in zone_1_km (1,10 € * 13,59 km) + 14,00 € Kombi"
|
||||
"22016541","17,11","0.00","18,02","PROSOL Lacke + Farben GmbH","Gaußstr. 17","10589, 14109","21,25","07:00 (06.05.)","06:31 (06.05.)","20,87","Gaußstr.;17;10589;Berlin;DE|Kohlhasenbrücker Straße;3;14109;Berlin;DE","37,38 €","21,00 Km in zone_1_km (1,10 € * 21,25 km) + 14,00 € Kombi"
|
||||
"22016672","17,11","0.00","18,02","Brillux GmbH & Co. KG","Am Steinberg 15","13086, 10117","8,9","07:06 (06.05.)","08:44 (06.05.)","20,87","Am Steinberg;15;13086;Berlin;DE|Stresemannstr.;128;10117;Berlin;DE","24,44 €","9,00 Km in zone_1_km (1,10 € * 9,49 km) + 14,00 € Kombi"
|
||||
"22016675","17,11","0.00","18,02","Schöne Transportbänder GmbH","Waldemarstr. 33","10999, 12357","13,49","07:10 (06.05.)","09:36 (06.05.)","20,87","Waldemarstr.;33;10999;Berlin;DE|Kanalstr.;139;12357;Berlin;DE","28,84 €","13,00 Km in zone_1_km (1,10 € * 13,49 km) + 14,00 € Kombi"
|
||||
"22016691","17,11","0.00","18,02","GBAV","Gradestr. 83","12347, 12489","9,4","07:16 (06.05.)","12:21 (06.05.)","20,87","Gradestr.;83;12347;Berlin;DE|Justus-von-Liebig-Str.;4;12489;Berlin;DE","24,34 €","9,00 Km in zone_1_km (1,10 € * 9,40 km) + 14,00 € Kombi"
|
||||
"22016699","17,11","0.00","18,02","MAN Truck & Bus Deutschland","Tempelhofer Weg 5","12099, 12277","6,7","07:19 (06.05.)","07:23 (06.05.)","20,87","Tempelhofer Weg;5;12099;Berlin;DE|Richard-Tauber-Damm;20;12277;Berlin;DE","21,37 €","6,00 Km in zone_1_km (1,10 € * 6,70 km) + 14,00 € Kombi"
|
||||
"22016714","17,11","0.00","18,02","Femto Messtechnik GmbH","Klosterstr. 64","10179, 13435","13,41","07:23 (06.05.)","10:53 (06.05.)","20,87","Klosterstr.;64;10179;Berlin;DE|Luebarser Str.;40-46;13435;Berlin;DE","28,75 €","13,00 Km in zone_1_km (1,10 € * 13,41 km) + 14,00 € Kombi"
|
||||
"22016763","17,11","0.00","18,02","JOP Handels- GmbH & Co. KG","Ringbahnstr. 10","12099, 12524","","07:41 (06.05.)","","20,87","Ringbahnstr.;10;12099;Berlin;DE|Weidenweg;4;12524;Berlin;DE","32,30 €","16,00 Km in zone_1_km (1,10 € * 15,11 km) + zone_2_km (1,10 € * 1,53 km) + 14,00 € Kombi"
|
||||
"22015809","17,11","0.00","18,02","ZTB-CCM","Luisenstr. 7","10117, 12203","13,25","08:00 (06.05.)","09:40 (06.05.)","20,87","Luisenstr.;7;10117;Berlin;DE|Hindenburgdamm;30;12203;Berlin;DE","28,72 €","13,00 Km in zone_1_km (1,10 € * 13,38 km) + 14,00 € Kombi"
|
||||
"22016825","17,11","0.00","18,02","Promess Fertigung GmbH","Nunsdorfer Ring 25","12277, 10969","12,55","08:05 (06.05.)","09:46 (06.05.)","20,87","Nunsdorfer Ring;25;12277;Berlin;DE|Gitschiner Str.;20-22;10969;Berlin;DE","27,79 €","12,00 Km in zone_1_km (1,10 € * 12,54 km) + 14,00 € Kombi"
|
||||
"22016847","17,11","0.00","18,02","FR. Riepl, Birgitt","Dunckerstr. 80a","10437, 10179","4,63","08:14 (06.05.)","08:15 (06.05.)","20,87","Dunckerstr.;80a;10437;Berlin;DE|Littenstr.;12-17;10179;Berlin;DE","19,50 € [M]","4,00 Km in zone_1_km (1,10 € * 4,62 km) + 14,00 € Kombi"
|
||||
"22016867","17,11","0.00","18,02","VBE Berlin-Mechanik GmbH","Lahnstr. 58","12055, 12099","4,36","08:18 (06.05.)","09:47 (06.05.)","20,87","Lahnstr.;58;12055;Berlin;DE|Rohdestraße;17;12099;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,47 km) + 14,00 € Kombi"
|
||||
"22016914","17,11","0.00","18,02","CVK, Personalleitung","Augustenburger Platz 1","13353, 10557","3,47","08:28 (06.05.)","08:46 (06.05.)","20,87","Augustenburger Platz;1;13353;Berlin;DE|Klopstockstr.;14;10557;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,47 km) + 14,00 € Kombi"
|
||||
"22016921","17,11","0.00","18,02","Brodersen & Schacht Berlin GmbH","Beusselstr. 44 n-q","10553, 10178","8,25","08:31 (06.05.)","11:08 (06.05.)","20,87","Beusselstr.;44 n-q;10553;Berlin;DE|Karl-Marx-Allee;31;10178;Berlin;DE","23,06 €","8,00 Km in zone_1_km (1,10 € * 8,24 km) + 14,00 € Kombi"
|
||||
"22016961","17,11","0.00","18,02","Senatsverw. fuer Stadtentwicklung","Am Koellnischen Park 3","10179, 12101","5,21","08:43 (06.05.)","11:37 (06.05.)","20,87","Am Koellnischen Park;3;10179;Berlin;DE|Tempelhofer Damm;45;12101;Berlin;DE","19,72 €","5,00 Km in zone_1_km (1,10 € * 5,20 km) + 14,00 € Kombi"
|
||||
"22016987","17,11","0.00","18,02","Fries Holz- und Bodensysteme GmbH","Waldstr. 16","13403, 13127","8,89","08:48 (06.05.)","08:49 (06.05.)","20,87","Waldstr.;16;13403;Berlin;DE|Marienstr.;7;13127;Berlin;DE","23,44 €","8,00 Km in zone_1_km (1,10 € * 8,58 km) + 14,00 € Kombi"
|
||||
"22017006","17,11","0.00","18,02","Bst. AAS Aufzüge","Manfred-von-Richthofen-Str. 11","12101, 13359","","08:52 (06.05.)","12:25 (06.05.)","20,87","Manfred-von-Richthofen-Str.;11;12101;Berlin;DE|Osloer Str.;1;13359;Berlin;DE","25,45 €","10,00 Km in zone_1_km (1,10 € * 10,41 km) + 14,00 € Kombi"
|
||||
"22017013","17,11","0.00","18,02","MAN Truck & Bus Deutschland GmbH","Nonnendammallee 1","13599, 13597","6,22","08:53 (06.05.)","09:56 (06.05.)","20,87","Nonnendammallee;1;13599;Berlin;DE|Freiheit;7;13597;Berlin;DE","20,83 €","6,00 Km in zone_1_km (1,10 € * 6,21 km) + 14,00 € Kombi"
|
||||
"22017059","17,11","0.00","18,02","CVK, Personalleitung","Augustenburger Platz 1","13353, 13351","1,24","09:06 (06.05.)","09:06 (06.05.)","20,87","Augustenburger Platz;1;13353;Berlin;DE|Senegalstr.;16;13351;Berlin;DE","19,50 € [M]","1,00 Km in zone_1_km (1,10 € * 1,23 km) + 14,00 € Kombi"
|
||||
"22017065","17,11","0.00","18,02","Irena Juskovic-Sacharowitz","Rönnestr. 5","14057, 10409","12,41","09:07 (06.05.)","11:03 (06.05.)","20,87","Rönnestr.;5;14057;Berlin;DE|Prenzlauer Allee;170;10409;Berlin;DE","27,64 €","12,00 Km in zone_1_km (1,10 € * 12,40 km) + 14,00 € Kombi"
|
||||
"22017081","17,11","0.00","18,02","Dr. med. John Hartung","Schlossstr. 88","12163, 14057","7,91","09:10 (06.05.)","09:14 (06.05.)","20,87","Schlossstr.;88;12163;Berlin;DE|Kaiserdamm;31;14057;Berlin;DE","22,70 €","7,00 Km in zone_1_km (1,10 € * 7,91 km) + 14,00 € Kombi"
|
||||
"22017118","17,11","0.00","18,02","Auto-Lack Center Moabit","Lise-Meitner-Str. 2","10589, 12203","18,09","09:20 (06.05.)","09:38 (06.05.)","20,87","Lise-Meitner-Str.;2;10589;Berlin;DE|Karwendelstr.;28c;12203;Berlin;DE","33,89 €","18,00 Km in zone_1_km (1,10 € * 18,08 km) + 14,00 € Kombi"
|
||||
"22017120","17,11","0.00","18,02","Friedrich Niemann GmbH & Co. KG","Dederingstr. 4-6","12107, 10243","13,2","09:20 (06.05.)","10:53 (06.05.)","20,87","Dederingstr.;4-6;12107;Berlin;DE|Am Wriezener Bahnhof;1;10243;Berlin;DE","28,51 €","13,00 Km in zone_1_km (1,10 € * 13,19 km) + 14,00 € Kombi"
|
||||
"22017144","17,11","0.00","18,02","Daimler Truck","Neudecker Weg 8","12355, 13627","","09:23 (06.05.)","09:23 (06.05.)","20,87","Neudecker Weg;8;12355;Berlin;DE|Saatwinkler Damm;19-21;13627;Berlin;DE","44,84 €","28,00 Km in zone_1_km (1,10 € * 28,04 km) + 14,00 € Kombi"
|
||||
"22016356","17,11","0.00","18,02","M + K Dalink Stoffe GmbH","Brunsbuetteler Damm 175-177","13581, 14197","","09:30 (06.05.)","","20,87","Brunsbuetteler Damm;175-177;13581;Berlin;DE|Ruedesheimer Str.;4;14197;Berlin;DE","30,37 €","14,00 Km in zone_1_km (1,10 € * 14,88 km) + 14,00 € Kombi"
|
||||
"22016988","17,11","0.00","18,02","traumhaft... schöne Dessous,","Reichsstr. 102","14052, 10409","14,49","09:30 (06.05.)","11:50 (06.05.)","20,87","Reichsstr.;102;14052;Berlin;DE|Ostseestr.;109;10409;Berlin;DE","29,79 €","14,00 Km in zone_1_km (1,10 € * 14,35 km) + 14,00 € Kombi"
|
||||
"22017185","17,11","0.00","18,02","Illmann und Illmann","Gartenfelder Str. 27-33","13599, 10117","12,38","09:40 (06.05.)","10:06 (06.05.)","20,87","Gartenfelder Str.;27-33;13599;Berlin;DE|Glinkastr.;4;10117;Berlin;DE","27,61 €","12,00 Km in zone_1_km (1,10 € * 12,37 km) + 14,00 € Kombi"
|
||||
"22017194","17,11","0.00","18,02","Klinikum Am Urban","Dieffenbachstr. 1","10967, 12157","","09:42 (06.05.)","","20,87","Dieffenbachstr.;1;10967;Berlin;DE|Rubensstr.;125;12157;Berlin;DE","24,60 €","9,00 Km in zone_1_km (1,10 € * 9,64 km) + 14,00 € Kombi"
|
||||
"22017208","17,11","0.00","18,02","Baustelle","Trelleborger Str. 19","13189, 13509","10,22","09:47 (06.05.)","09:50 (06.05.)","20,87","Trelleborger Str.;19;13189;Berlin;DE|Wittestr.;30;13509;Berlin;DE","25,23 €","10,00 Km in zone_1_km (1,10 € * 10,21 km) + 14,00 € Kombi"
|
||||
"22017218","17,11","0.00","18,02","BORSIG Process Heat Exchanger","Egellsstr. 21","13507, 10623","13,2","09:49 (06.05.)","10:06 (06.05.)","20,87","Egellsstr.;21;13507;Berlin;DE|Fasanenstr.;85;10623;Berlin;DE","28,47 €","13,00 Km in zone_1_km (1,10 € * 13,15 km) + 14,00 € Kombi"
|
||||
"22011134","17,11","0.00","18,02","Caritasverband Berlin e. V.","Residenzstr. 90","13409, 13353","2,17","09:50 (06.05.)","09:22 (06.05.)","20,87","Residenzstr.;90;13409;Berlin;DE|Müllerstr.;146;13353;Berlin;DE","19,50 € [M]","2,00 Km in zone_1_km (1,10 € * 2,17 km) + 14,00 € Kombi"
|
||||
"22017240","17,11","0.00","18,02","Frau Preiss","Rüdersdorfer Str. 40","10243, 10719","9,82","09:55 (06.05.)","11:31 (06.05.)","20,87","Rüdersdorfer Str.;40;10243;Berlin;DE|Knesebeckstr.;61;10719;Berlin;DE","25,62 €","10,00 Km in zone_1_km (1,10 € * 10,56 km) + 14,00 € Kombi"
|
||||
"22017253","17,11","0.00","18,02","Seidlereisen","Gitschiner Straße 91","10969, 12099","8,57","09:58 (06.05.)","11:35 (06.05.)","20,87","Gitschiner Straße;91;10969;Berlin;DE|Colditzstr.;38-42;12099;Berlin;DE","23,43 €","8,00 Km in zone_1_km (1,10 € * 8,57 km) + 14,00 € Kombi"
|
||||
"22013034","17,11","0.00","18,02","Beumer & Lutum GmbH Bio-Bäckerei","Zossener Str. 34","10961, 10787","","10:00 (06.05.)","","20,87","Zossener Str.;34;10961;Berlin;DE|Ahornstr.;5;10787;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,75 km) + 14,00 € Kombi"
|
||||
"22015991","17,11","0.00","18,02","S + H Schaltanlagenbau GmbH","Lauenburger Str. 85","12169, 13353","19,67","10:00 (06.05.)","12:05 (06.05.)","20,87","Lauenburger Str.;85;12169;Berlin;DE|Fennstr.;22;13353;Berlin;DE","27,37 €","12,00 Km in zone_1_km (1,10 € * 12,15 km) + 14,00 € Kombi"
|
||||
"22014566","17,11","0.00","18,02","Print Seven","Schöneberger Str. 13","12163, 10243","16,96","10:10 (06.05.)","13:55 (06.05.)","20,87","Schöneberger Str.;13;12163;Berlin;DE|Mühlenstr.;13-19;10243;Berlin;DE","27,37 €","12,00 Km in zone_1_km (1,10 € * 12,15 km) + 14,00 € Kombi"
|
||||
"22017304","17,11","0.00","18,02","Fenster Durchblick GmbH","Eichborndamm 59","13403, 10787","12,91","10:12 (06.05.)","10:28 (06.05.)","20,87","Eichborndamm;59;13403;Berlin;DE|Budapester Str.;31;10787;Berlin;DE","31,77 €","16,00 Km in zone_1_km (1,10 € * 16,15 km) + 14,00 € Kombi"
|
||||
"22017330","17,11","0.00","18,02","Reifenbestellung24 GmbH","Storkower Str. 145a","10407, 12203","18,42","10:20 (06.05.)","12:36 (06.05.)","20,87","Storkower Str.;145a;10407;Berlin;DE|Duererstr.;7;12203;Berlin;DE","34,53 €","18,00 Km in zone_1_km (1,10 € * 18,66 km) + 14,00 € Kombi"
|
||||
"22017343","17,11","0.00","18,02","Museumstechnik Berlin","Kärntener Str. 21","10827, 14195","7,78","10:23 (06.05.)","13:01 (06.05.)","20,87","Kärntener Str.;21;10827;Berlin;DE|Im Schwarzen Grund;1;14195;Berlin;DE","22,56 €","7,00 Km in zone_1_km (1,10 € * 7,78 km) + 14,00 € Kombi"
|
||||
"22017357","17,11","0.00","18,02","BV","Marienfelder Chaussee 171","12349, 12099","6,26","10:27 (06.05.)","10:29 (06.05.)","20,87","Marienfelder Chaussee;171;12349;Berlin;DE|Gottlieb-Dunkel-Str.;20-22;12099;Berlin;DE","20,89 €","6,00 Km in zone_1_km (1,10 € * 6,26 km) + 14,00 € Kombi"
|
||||
"22017363","17,11","0.00","18,02","bito Depot Köpenick","Seelenbinderstraße 112-124","12555, 12437","9,54","10:30 (06.05.)","13:58 (06.05.)","20,87","Seelenbinderstraße;112-124;12555;Berlin;DE|Köpenicker Landstr.;151;12437;Berlin;DE","24,48 €","9,00 Km in zone_1_km (1,10 € * 9,53 km) + 14,00 € Kombi"
|
||||
"22017398","17,11","0.00","18,02","FOTOREKLAME Gesellschaft für","Blomberger Weg 4 a","13437, 13086","12,44","10:38 (06.05.)","10:44 (06.05.)","20,87","Blomberger Weg;4 a;13437;Berlin;DE|Lehderstr.;39;13086;Berlin;DE","27,81 €","12,00 Km in zone_1_km (1,10 € * 12,55 km) + 14,00 € Kombi"
|
||||
"22017410","17,11","0.00","18,02","PROSOL Lacke + Farben GmbH","Gaußstr. 17","10589, 14163","15,87","10:41 (06.05.)","10:51 (06.05.)","20,87","Gaußstr.;17;10589;Berlin;DE|Forststr.;7;14163;Berlin;DE","31,45 €","15,00 Km in zone_1_km (1,10 € * 15,86 km) + 14,00 € Kombi"
|
||||
"22017416","17,11","0.00","18,02","Gallery Print","Nunsdorfer Ring 13","12277, 10785","13,05","10:43 (06.05.)","10:55 (06.05.)","20,87","Nunsdorfer Ring;13;12277;Berlin;DE|Potsdamer Str.;81E;10785;Berlin;DE","28,36 €","13,00 Km in zone_1_km (1,10 € * 13,05 km) + 14,00 € Kombi"
|
||||
"22017440","17,11","0.00","18,02","Dipl.-Kfm. SUSANNE BIEK Steuer-","Bundesallee 110","12161, 14052","7,72","10:48 (06.05.)","14:09 (06.05.)","20,87","Bundesallee;110;12161;Berlin;DE|Heerstr.;18-20;14052;Berlin;DE","22,49 €","7,00 Km in zone_1_km (1,10 € * 7,72 km) + 14,00 € Kombi"
|
||||
"22017444","17,11","0.00","18,02","Friedrich Niemann GmbH & Co. KG","Dederingstr. 4-6","12107, 12167","5,59","10:49 (06.05.)","14:27 (06.05.)","20,87","Dederingstr.;4-6;12107;Berlin;DE|Albrechtstr.;22-26;12167;Berlin;DE","20,15 €","5,00 Km in zone_1_km (1,10 € * 5,59 km) + 14,00 € Kombi"
|
||||
"22017461","17,11","0.00","18,02","Günther Stern oHG","Ebersstr. 15a","10827, 10789","3,23","10:56 (06.05.)","11:54 (06.05.)","20,87","Ebersstr.;15a;10827;Berlin;DE|Tauentzienstr;21;10789;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,23 km) + 14,00 € Kombi"
|
||||
"22017463","17,11","0.00","18,02","Robusta-Gaukel GmbH & Co. KG","Rohdestr. 19","12099, 10557","12,67","10:56 (06.05.)","14:13 (06.05.)","20,87","Rohdestr.;19;12099;Berlin;DE|Alt-Moabit;1;10557;Berlin;DE","27,94 €","12,00 Km in zone_1_km (1,10 € * 12,67 km) + 14,00 € Kombi"
|
||||
"22017464","17,11","0.00","18,02","Kondius AG","Koenigsberger Str. 24","12207, 10707","11,21","10:57 (06.05.)","11:17 (06.05.)","20,87","Koenigsberger Str.;24;12207;Berlin;DE|Fehrbelliner Platz;2;10707;Berlin;DE","26,32 €","11,00 Km in zone_1_km (1,10 € * 11,20 km) + 14,00 € Kombi"
|
||||
"22017478","17,11","0.00","18,02","braent GmbH","Plauener Str. 163-165","13053, 13156","12,56","10:59 (06.05.)","11:39 (06.05.)","20,87","Plauener Str.;163-165;13053;Berlin;DE|Schloßallee;9B;13156;Berlin;DE","27,82 €","12,00 Km in zone_1_km (1,10 € * 12,56 km) + 14,00 € Kombi"
|
||||
"22017484","17,11","0.00","18,02","Friedrich Rohwedder Baumaschinen","Sachsenhauser Str. 12","12099, 14197","","11:00 (06.05.)","","20,87","Sachsenhauser Str.;12;12099;Berlin;DE|Mecklenburgische Str.;32;14197;Berlin;DE","22,58 €","7,00 Km in zone_1_km (1,10 € * 7,80 km) + 14,00 € Kombi"
|
||||
"22017504","17,11","0.00","18,02","Zollamt Marzahn","Hellersdorfer Weg 35","12689, 12623","12,65","11:05 (06.05.)","11:13 (06.05.)","20,87","Hellersdorfer Weg;35;12689;Berlin;DE|Landsberger Str.;249;12623;Berlin;DE","27,92 €","12,00 Km in zone_1_km (1,10 € * 12,65 km) + 14,00 € Kombi"
|
||||
"22017566","17,11","0.00","18,02","GA-Tec Gebäude- und Anlagen-","Lorenzweg 5","12099, 10719","11,79","11:27 (06.05.)","13:11 (06.05.)","20,87","Lorenzweg;5;12099;Berlin;DE|Uhlandstr.;30;10719;Berlin;DE","26,97 €","11,00 Km in zone_1_km (1,10 € * 11,79 km) + 14,00 € Kombi"
|
||||
"22017588","17,11","0.00","18,02","Deubzer Architekten","Knesebeckstr. 77","10623, 10585","3,19","11:33 (06.05.)","11:33 (06.05.)","20,87","Knesebeckstr.;77;10623;Berlin;DE|Kaiser-Friedrich-Str.;4 a;10585;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,18 km) + 14,00 € Kombi"
|
||||
"22017628","17,11","0.00","18,02","R + S Aufzugbau GmbH","Herzbergstr. 87-99","10365, 10777","15,36","11:45 (06.05.)","13:00 (06.05.)","20,87","Herzbergstr.;87-99;10365;Berlin;DE|Bamberger Str.;58;10777;Berlin;DE","31,06 €","15,00 Km in zone_1_km (1,10 € * 15,51 km) + 14,00 € Kombi"
|
||||
"22017647","17,11","0.00","18,02","OBI GmbH & Co. Deutschland KG","Blankenburger Str. 86-92","13156, 13469","9,7","11:49 (06.05.)","14:03 (06.05.)","20,87","Blankenburger Str.;86-92;13156;Berlin;DE|Waidmannsluster Damm;190;13469;Berlin;DE","24,67 €","9,00 Km in zone_1_km (1,10 € * 9,70 km) + 14,00 € Kombi"
|
||||
"22015894","17,11","0.00","18,02","IHK","Fasanenstr. 85","10623, 13507","12,06","12:00 (06.05.)","11:46 (06.05.)","20,87","Fasanenstr.;85;10623;Berlin;DE|Egellsstr.;21;13507;Berlin;DE","27,27 €","12,00 Km in zone_1_km (1,10 € * 12,06 km) + 14,00 € Kombi"
|
||||
"22017685","17,11","0.00","18,02","Harry Gerlach Wohnungs-","Berliner Str. 120","10713, 12107","13,83","12:01 (06.05.)","12:11 (06.05.)","20,87","Berliner Str.;120;10713;Berlin;DE|Körtingstr.;61;12107;Berlin;DE","29,20 €","13,00 Km in zone_1_km (1,10 € * 13,82 km) + 14,00 € Kombi"
|
||||
"22017700","17,11","0.00","18,02","bito aktiengesellschaft","Rudolf-Spitzley-Str. 14","13089, 13156","6,4","12:07 (06.05.)","12:49 (06.05.)","20,87","Rudolf-Spitzley-Str.;14;13089;Berlin;DE|Beuthstr.;38;13156;Berlin;DE","21,05 €","6,00 Km in zone_1_km (1,10 € * 6,41 km) + 14,00 € Kombi"
|
||||
"22017705","17,11","0.00","18,02","Lindenblatt & Gottzmann","Quickborner Str. 40","13439, 13189","5,99","12:10 (06.05.)","12:11 (06.05.)","20,87","Quickborner Str.;40;13439;Berlin;DE|Berliner Str.;42;13189;Berlin;DE","20,58 €","6,00 Km in zone_1_km (1,10 € * 5,98 km) + 14,00 € Kombi"
|
||||
"22017751","17,11","0.00","18,02","GBAV","Gradestr. 83","12347, 12489","","12:24 (06.05.)","","20,87","Gradestr.;83;12347;Berlin;DE|Justus-von-Liebig-Str.;4;12489;Berlin;DE","24,34 €","9,00 Km in zone_1_km (1,10 € * 9,40 km) + 14,00 € Kombi"
|
||||
"22017758","17,11","0.00","18,02","JOP Handels- GmbH & Co.KG","Ringbahnstr. 10-14","12099, 10625","","12:28 (06.05.)","","20,87","Ringbahnstr.;10-14;12099;Berlin;DE|Kantstr.;131;10625;Berlin;DE","24,25 €","9,00 Km in zone_1_km (1,10 € * 9,32 km) + 14,00 € Kombi"
|
||||
"22017761","17,11","0.00","18,02","Booh!Outfit GmbH","Paradiesstr. 214-218","12526, 10437","22,06","12:29 (06.05.)","14:34 (06.05.)","20,87","Paradiesstr.;214-218;12526;Berlin;DE|Cantianstr.;24;10437;Berlin;DE","38,26 €","22,00 Km in zone_1_km (1,10 € * 22,05 km) + 14,00 € Kombi"
|
||||
"22017800","17,11","0.00","18,02","HKL Baumaschinen GmbH","Säntisstr. 61","12277, 12049","10,41","12:42 (06.05.)","12:59 (06.05.)","20,87","Säntisstr.;61;12277;Berlin;DE|Karlsgartenstr.;12;12049;Berlin;DE","25,44 €","10,00 Km in zone_1_km (1,10 € * 10,40 km) + 14,00 € Kombi"
|
||||
"22017771","17,11","0.00","18,02","Berliner Schrauben GmbH","Prinzenstr. 86","10969, 12167","11,26","12:45 (06.05.)","13:10 (06.05.)","20,87","Prinzenstr.;86;10969;Berlin;DE|Albrechtstr.;19;12167;Berlin;DE","26,29 €","11,00 Km in zone_1_km (1,10 € * 11,17 km) + 14,00 € Kombi"
|
||||
"22017689","17,11","0.00","18,02","Robert Karst GmbH & Co. KG","Motzener Str. 22","12277, 12359","11,53","13:05 (06.05.)","15:01 (06.05.)","20,87","Motzener Str.;22;12277;Berlin;DE|Woermannkehre;2;12359;Berlin;DE","26,68 €","11,00 Km in zone_1_km (1,10 € * 11,53 km) + 14,00 € Kombi"
|
||||
"22017913","17,11","0.00","18,02","Dr. med. John Hartung","Schlossstr. 88","12163, 14057","","13:22 (06.05.)","","20,87","Schlossstr.;88;12163;Berlin;DE|Kaiserdamm;31;14057;Berlin;DE","22,70 €","7,00 Km in zone_1_km (1,10 € * 7,91 km) + 14,00 € Kombi"
|
||||
"22016241","17,11","0.00","18,02","Trabrennbahn","Mariendorfer Damm 222-298","12107, 10997","0","13:30 (06.05.)","15:23 (06.05.)","20,87","Mariendorfer Damm;222-298;12107;Berlin;DE|Wrangelstr.;100;10997;Berlin;DE","ERROR","Adresse in 1. Station nicht ok"
|
||||
"22018087","17,11","0.00","18,02","CVK, Personalleitung","Augustenburger Platz 1","13353, 13507","7,78","14:18 (06.05.)","15:45 (06.05.)","20,87","Augustenburger Platz;1;13353;Berlin;DE|Eisenhammerweg;9;13507;Berlin;DE","22,56 €","7,00 Km in zone_1_km (1,10 € * 7,78 km) + 14,00 € Kombi"
|
||||
"22018143","17,11","0.00","18,02","Praxis Dr. Eichhorn-Sens","Invalidenstr. 112","10115, 13509","9,97","14:44 (06.05.)","15:11 (06.05.)","20,87","Invalidenstr.;112;10115;Berlin;DE|Am Nordgraben;2;13509;Berlin;DE","24,97 €","10,00 Km in zone_1_km (1,10 € * 9,97 km) + 14,00 € Kombi"
|
||||
"22018154","17,11","0.00","18,02","Blumen Insel","Suarezstr. 5","14057, 10625","1,1","14:47 (06.05.)","14:51 (06.05.)","20,87","Suarezstr.;5;14057;Berlin;DE|Bismarckstr.;99;10625;Berlin;DE","19,50 € [M]","1,00 Km in zone_1_km (1,10 € * 1,10 km) + 14,00 € Kombi"
|
||||
"22017269","17,11","0.00","18,02","TU 9","Invalidenstr. 112","10115, 12681","15,66","16:00 (06.05.)","13:30 (06.05.)","20,87","Invalidenstr.;112;10115;Berlin;DE|Poelchaustr.;2;12681;Berlin;DE","31,23 €","15,00 Km in zone_1_km (1,10 € * 15,66 km) + 14,00 € Kombi"
|
||||
"22017898","17,11","0.00","18,02","August Storck KG","Waldstr. 27","13403, 13507","2,85","17:00 (06.05.)","15:36 (06.05.)","20,87","Waldstr.;27;13403;Berlin;DE|Am Borsigturm;1;13507;Berlin;DE","19,50 € [M]","2,00 Km in zone_1_km (1,10 € * 2,84 km) + 14,00 € Kombi"
|
||||
"22018410","17,11","0.00","18,02","Praxis Taskin","Neuendorfer Str. 100","13585 , 10829","0","17:03 (06.05.)","17:11 (06.05.)","20,87","Neuendorfer Str.;100;13585;Berlin;DE|Reichartstr.;2;10829;Berlin;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22015032","17,11","0.00","18,02","Krankenhaus Maria Heimsuchung","Breite Str. 46-47","13187, 13353","8,53","07:00 (07.05.)","08:11 (07.05.)","20,87","Breite Str.;46-47;13187;Berlin;DE|Sylter Str.;2;13353;Berlin;DE","22,71 €","7,00 Km in zone_1_km (1,10 € * 7,92 km) + 14,00 € Kombi"
|
||||
"22016168","17,11","0.00","18,02","Humboldt-Klinikum","Am Nordgraben 2","13509, 10789","17,91","07:00 (07.05.)","16:24 (06.05.)","20,87","Am Nordgraben;2;13509;Berlin;DE|Rankestr.;34;10789;Berlin;DE","33,70 €","17,00 Km in zone_1_km (1,10 € * 17,91 km) + 14,00 € Kombi"
|
||||
"22017839","17,11","0.00","18,02","WSK Andreas Klein","Am Gewerbepark 5","12683, 10178","12,57","07:00 (07.05.)","10:09 (07.05.)","20,87","Am Gewerbepark;5;12683;Berlin;DE|Keibelstr.;36;10178;Berlin;DE","27,83 €","12,00 Km in zone_1_km (1,10 € * 12,57 km) + 14,00 € Kombi"
|
||||
"22018343","17,11","0.00","18,02","PROSOL Lacke + Farben GmbH","Gaußstr. 17","10589, 13403","7,27","07:00 (07.05.)","08:04 (07.05.)","20,87","Gaußstr.;17;10589;Berlin;DE|Waldstraße;27;13403;Berlin;DE","22,00 €","7,00 Km in zone_1_km (1,10 € * 7,27 km) + 14,00 € Kombi"
|
||||
"22018359","17,11","0.00","18,02","Wohnort Fahrer",". .","12627, 12681","0","07:00 (07.05.)","16:29 (06.05.)","20,87",".;.;12627;Berlin;DE|Boxberger Str.;3;12681;Berlin;DE","ERROR","Adresse in 1. Station nicht ok"
|
||||
"22018535","17,11","0.00","18,02","Dachdecker-Einkauf Ost eG","Ostpreußendamm 143","12207, 12043","15,91","07:04 (07.05.)","07:36 (07.05.)","20,87","Ostpreußendamm;143;12207;Berlin;DE|Kirchgasse;62;12043;Berlin;DE","30,54 €","15,00 Km in zone_1_km (1,10 € * 15,04 km) + 14,00 € Kombi"
|
||||
"22018546","17,11","0.00","18,02","bito aktiengesellschaft","Rudolf-Spitzley-Str. 14","13089, 10999","10,77","07:12 (07.05.)","07:45 (07.05.)","20,87","Rudolf-Spitzley-Str.;14;13089;Berlin;DE|Reichenberger Str.;114;10999;Berlin;DE","25,86 €","10,00 Km in zone_1_km (1,10 € * 10,78 km) + 14,00 € Kombi"
|
||||
"22018557","17,11","0.00","18,02","Sandschulz","Kienhorststr. 55","13403, 10785","10,41","07:16 (07.05.)","07:16 (07.05.)","20,87","Kienhorststr.;55;13403;Berlin;DE|Sigismundstr.;7-8;10785;Berlin;DE","25,44 €","10,00 Km in zone_1_km (1,10 € * 10,40 km) + 14,00 € Kombi"
|
||||
"22018332","17,11","0.00","18,02","Friedrich Niemann GmbH & Co. KG","Dederingstr. 4-6","12107, 14197","13,85","07:30 (07.05.)","08:11 (07.05.)","20,87","Dederingstr.;4-6;12107;Berlin;DE|Mecklenburgische Str.;32;14197;Berlin;DE","25,77 €","10,00 Km in zone_1_km (1,10 € * 10,70 km) + 14,00 € Kombi"
|
||||
"22018607","17,11","0.00","18,02","MAN Truck & Bus Deutschland","Tempelhofer Weg 5","12099, 12277","6,7","07:35 (07.05.)","08:25 (07.05.)","20,87","Tempelhofer Weg;5;12099;Berlin;DE|Richard-Tauber-Damm;20;12277;Berlin;DE","21,37 €","6,00 Km in zone_1_km (1,10 € * 6,70 km) + 14,00 € Kombi"
|
||||
"22018621","17,11","0.00","18,02","Harry Brot GmbH","Wolfener Str. 14","12681, 13088","7,65","07:39 (07.05.)","07:41 (07.05.)","20,87","Wolfener Str.;14;12681;Berlin;DE|An der Industriebahn;5;13088;Berlin;DE","22,42 €","7,00 Km in zone_1_km (1,10 € * 7,65 km) + 14,00 € Kombi"
|
||||
"22018634","17,11","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Industriestr. 15","12099, 12057","8,72","07:44 (07.05.)","07:45 (07.05.)","20,87","Industriestr.;15;12099;Berlin;DE|Nobelstr.;1;12057;Berlin;DE","21,60 €","6,00 Km in zone_1_km (1,10 € * 6,91 km) + 14,00 € Kombi"
|
||||
"22017362","17,11","0.00","18,02","Sperling Reinigungstechnik GmbH","General-Pape-Str. 2","12101, 10559","16,59","08:00 (07.05.)","09:19 (07.05.)","20,87","General-Pape-Str.;2;12101;Berlin;DE|Quitzowstr.;33;10559;Berlin;DE","23,77 €","8,00 Km in zone_1_km (1,10 € * 8,88 km) + 14,00 € Kombi"
|
||||
"22017977","17,11","0.00","18,02","Sanierungsservice Klamann","Landsberger Str. 230","12623, 13086","17,07","08:00 (07.05.)","08:03 (07.05.)","20,87","Landsberger Str.;230;12623;Berlin;DE|Strasse 206 Nr.;14;13086;Berlin;DE","32,78 €","17,00 Km in zone_1_km (1,10 € * 17,07 km) + 14,00 € Kombi"
|
||||
"22018304","17,11","0.00","18,02","Fa. Liftmode Brandenburg","Schmalenbach Str. 12","12057, 14052","18,55","08:00 (07.05.)","08:34 (07.05.)","20,87","Schmalenbach Str.;12;12057;Berlin;DE|Reichsstr.;53;14052;Berlin;DE","36,56 €","20,00 Km in zone_1_km (1,10 € * 20,51 km) + 14,00 € Kombi"
|
||||
"22018747","17,11","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Coppistr. 5","10365, 10997","","08:19 (07.05.)","","20,87","Coppistr.;5;10365;Berlin;DE|Muskauerstraße;10;10997;Berlin;DE","19,82 €","5,00 Km in zone_1_km (1,10 € * 5,29 km) + 14,00 € Kombi"
|
||||
"22018766","17,11","0.00","18,02","Mosaik - Berlin","Askanierring 155","13585, 13587","","08:25 (07.05.)","","20,87","Askanierring;155;13585;Berlin;DE|Rauchstr.;42 b;13587;Berlin;DE","19,50 € [M]","4,00 Km in zone_1_km (1,10 € * 4,37 km) + 14,00 € Kombi"
|
||||
"22018767","17,11","0.00","18,02","Fuhrbetrieb Karlheinz Fröhlich","Kärntener Str. 15-16","10827, 10969","5,52","08:25 (07.05.)","08:39 (07.05.)","20,87","Kärntener Str.;15-16;10827;Berlin;DE|Hedemannstr.;13;10969;Berlin;DE","20,06 €","5,00 Km in zone_1_km (1,10 € * 5,51 km) + 14,00 € Kombi"
|
||||
"22018799","17,11","0.00","18,02","Vivantes Humbolt-Klinikum","Am Nordgraben 2","13509, 10115","9,99","08:32 (07.05.)","08:33 (07.05.)","20,87","Am Nordgraben;2;13509;Berlin;DE|Invalidenstr.;112;10115;Berlin;DE","25,45 €","10,00 Km in zone_1_km (1,10 € * 10,41 km) + 14,00 € Kombi"
|
||||
"22018811","17,11","0.00","18,02","Galvanisierung Karl Kunze","Boppstr. 6","10967, 13407","14,78","08:34 (07.05.)","08:35 (07.05.)","20,87","Boppstr.;6;10967;Berlin;DE|Roedernallee;8;13407;Berlin;DE","30,25 €","14,00 Km in zone_1_km (1,10 € * 14,77 km) + 14,00 € Kombi"
|
||||
"22018822","17,11","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Wiebestr. 12-18","10553, 12207","20,89","08:37 (07.05.)","09:18 (07.05.)","20,87","Wiebestr.;12-18;10553;Berlin;DE|Wismarer Str.;19;12207;Berlin;DE","36,97 €","20,00 Km in zone_1_km (1,10 € * 20,88 km) + 14,00 € Kombi"
|
||||
"22018849","17,11","0.00","18,02","röber","Genter Str. 10","13353, 10717","13,27","08:44 (07.05.)","09:05 (07.05.)","20,87","Genter Str.;10;13353;Berlin;DE|Pfalzburger Str;43-44;10717;Berlin;DE","28,54 €","13,00 Km in zone_1_km (1,10 € * 13,22 km) + 14,00 € Kombi"
|
||||
"22018853","17,11","0.00","18,02","GMT Kundendienst GmbH","Werdauer Weg 18","10829, 13353","","08:45 (07.05.)","","20,87","Werdauer Weg;18;10829;Berlin;DE|Tegeler Str.;28 a;13353;Berlin;DE","23,92 €","9,00 Km in zone_1_km (1,10 € * 9,02 km) + 14,00 € Kombi"
|
||||
"22018884","17,11","0.00","18,02","Blumen Hübner am Bayerischen Platz","Bayerischer Platz 6","10779, 14169","10,64","08:52 (07.05.)","08:55 (07.05.)","20,87","Bayerischer Platz;6;10779;Berlin;DE|Riemeisterstr.;45;14169;Berlin;DE","25,69 €","10,00 Km in zone_1_km (1,10 € * 10,63 km) + 14,00 € Kombi"
|
||||
"22018906","17,11","0.00","18,02","Frisch & Faust Tiefbau GmbH","Buchholzer Str. 32","13156, 10407","8,38","08:59 (07.05.)","09:02 (07.05.)","20,87","Buchholzer Str.;32;13156;Berlin;DE|Bernhard-Lichtenberg-Straße;16;10407;Berlin;DE","23,55 €","8,00 Km in zone_1_km (1,10 € * 8,68 km) + 14,00 € Kombi"
|
||||
"22018078","17,11","0.00","18,02","Caritasverband Berlin e. V.","Residenzstr. 90","13409, 10707","12,93","09:00 (07.05.)","08:41 (07.05.)","20,87","Residenzstr.;90;13409;Berlin;DE|Brandenburgische Str.;36;10707;Berlin;DE","28,22 €","12,00 Km in zone_1_km (1,10 € * 12,93 km) + 14,00 € Kombi"
|
||||
"22018650","17,11","0.00","18,02","Hans Timm Fensterbau GmbH &","Motzener Str. 10","12277, 10405","","09:00 (07.05.)","","20,87","Motzener Str.;10;12277;Berlin;DE|Prenzlauer Allee;7b;10405;Berlin;DE","31,63 €","16,00 Km in zone_1_km (1,10 € * 16,03 km) + 14,00 € Kombi"
|
||||
"22018932","17,11","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Wiebestr. 12-18","10553, 10787","3,91","09:06 (07.05.)","09:07 (07.05.)","20,87","Wiebestr.;12-18;10553;Berlin;DE|Landgrafenstr.;3;10787;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,90 km) + 14,00 € Kombi"
|
||||
"22018944","17,11","0.00","18,02","ERCO Leuchten GmbH","Reichenberger Str. 113a","10999, 10997","2,35","09:10 (07.05.)","11:12 (07.05.)","20,87","Reichenberger Str.;113a;10999;Berlin;DE|Schlesische Str.;27;10997;Berlin;DE","19,50 € [M]","2,00 Km in zone_1_km (1,10 € * 2,35 km) + 14,00 € Kombi"
|
||||
"22018945","17,11","0.00","18,02","CVK, Personalleitung","Augustenburger Platz 1","13353, 13351","1,24","09:11 (07.05.)","09:49 (07.05.)","20,87","Augustenburger Platz;1;13353;Berlin;DE|Senegalstr.;16;13351;Berlin;DE","19,50 € [M]","1,00 Km in zone_1_km (1,10 € * 1,23 km) + 14,00 € Kombi"
|
||||
"22018949","17,11","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Wiebestr. 12-18","10553, 12099","18,79","09:12 (07.05.)","09:14 (07.05.)","20,87","Wiebestr.;12-18;10553;Berlin;DE|Industriestr.;15;12099;Berlin;DE","34,66 €","18,00 Km in zone_1_km (1,10 € * 18,78 km) + 14,00 € Kombi"
|
||||
"22018968","17,11","0.00","18,02","Inventory Systems GmbH","Theodor-Heuss-Platz 8","14052, 10963","8,89","09:16 (07.05.)","09:17 (07.05.)","20,87","Theodor-Heuss-Platz;8;14052;Berlin;DE|Bernburger Str.;32;10963;Berlin;DE","23,77 €","8,00 Km in zone_1_km (1,10 € * 8,88 km) + 14,00 € Kombi"
|
||||
"22019029","17,11","0.00","18,02","Nordberliner Werkgemeinschaft gGmbH","Triftstr. 36","13127, 13347","10,46","09:27 (07.05.)","13:17 (07.05.)","20,87","Triftstr.;36;13127;Berlin;DE|Hochstädter Str.;1;13347;Berlin;DE","25,51 €","10,00 Km in zone_1_km (1,10 € * 10,46 km) + 14,00 € Kombi"
|
||||
"22019053","17,11","0.00","18,02","OTEK GmbH","Köpenicker Str. 147","10997, 13407","11,7","09:32 (07.05.)","11:27 (07.05.)","20,87","Köpenicker Str.;147;10997;Berlin;DE|Roedernallee;174-175;13407;Berlin;DE","26,87 €","11,00 Km in zone_1_km (1,10 € * 11,70 km) + 14,00 € Kombi"
|
||||
"22019091","17,11","0.00","18,02","SSP Informationssysteme GmbH","Nicolaistr. 9-11","12247, 10115","14,13","09:42 (07.05.)","11:02 (07.05.)","20,87","Nicolaistr.;9-11;12247;Berlin;DE|Bergstr.;63;10115;Berlin;DE","29,53 €","14,00 Km in zone_1_km (1,10 € * 14,12 km) + 14,00 € Kombi"
|
||||
"22019123","17,11","0.00","18,02","Cantas Fördertechnik GmbH","Waldemarstr. 33","10999, 10117","2,91","09:49 (07.05.)","11:13 (07.05.)","20,87","Waldemarstr.;33;10999;Berlin;DE|Charlottenstrasse;33/33a;10117;Berlin;DE","19,50 € [M]","2,00 Km in zone_1_km (1,10 € * 2,91 km) + 14,00 € Kombi"
|
||||
"22019126","17,11","0.00","18,02","Lücking Innenausbau","Holzstr. 6","13359, 10365","10,46","09:49 (07.05.)","09:58 (07.05.)","20,87","Holzstr.;6;13359;Berlin;DE|Josef-Orlopp-Str.;54;10365;Berlin;DE","25,50 €","10,00 Km in zone_1_km (1,10 € * 10,45 km) + 14,00 € Kombi"
|
||||
"22017391","17,11","0.00","18,02","Bacco Bäckerei","Annenstr. 48","10179, 10249","4,85","09:50 (07.05.)","09:27 (07.05.)","20,87","Annenstr.;48;10179;Berlin;DE|Hermann-Blankenstein-Str.;30;10249;Berlin;DE","19,50 € [M]","4,00 Km in zone_1_km (1,10 € * 4,82 km) + 14,00 € Kombi"
|
||||
"22019131","17,11","0.00","18,02","Europa Gewürze","Neuköllnische Allee 104","12057, 14052","16,94","09:52 (07.05.)","10:19 (07.05.)","20,87","Neuköllnische Allee;104;12057;Berlin;DE|Heerstr.;24;14052;Berlin;DE","32,65 €","17,00 Km in zone_1_km (1,10 € * 16,95 km) + 14,00 € Kombi"
|
||||
"22018276","17,11","0.00","18,02","Plan B Pflegeschule des","Borkumstr. 2","13189, 10559","7,49","10:00 (07.05.)","10:51 (07.05.)","20,87","Borkumstr.;2;13189;Berlin;DE|Turmstr.;21;10559;Berlin;DE","22,24 €","7,00 Km in zone_1_km (1,10 € * 7,49 km) + 14,00 € Kombi"
|
||||
"22019138","17,11","0.00","18,02","AWO Kreisverband","Hochstädter Str. 1","13347, 14057","9,86","10:00 (07.05.)","09:57 (07.05.)","20,87","Hochstädter Str.;1;13347;Berlin;DE|Kaiserdamm;3;14057;Berlin;DE","24,84 €","9,00 Km in zone_1_km (1,10 € * 9,85 km) + 14,00 € Kombi"
|
||||
"22019174","17,11","0.00","18,02","Media Markt TV-Hifi-Elektro GmbH","Grunerstr. 20","10179, 13051","8,78","10:00 (07.05.)","12:15 (07.05.)","20,87","Grunerstr.;20;10179;Berlin;DE|Prerower Platz;1;13051;Berlin;DE","23,65 €","8,00 Km in zone_1_km (1,10 € * 8,77 km) + 14,00 € Kombi"
|
||||
"22019180","17,11","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Wiebestr. 12-18","10553, 10629","4,54","10:01 (07.05.)","10:03 (07.05.)","20,87","Wiebestr.;12-18;10553;Berlin;DE|Droysenstr.;13;10629;Berlin;DE","19,50 € [M]","4,00 Km in zone_1_km (1,10 € * 4,53 km) + 14,00 € Kombi"
|
||||
"22019193","17,11","0.00","18,02","BORSIG Process Heat Exchanger","Egellsstr. 21","13507, 10623","13,2","10:04 (07.05.)","10:38 (07.05.)","20,87","Egellsstr.;21;13507;Berlin;DE|Fasanenstr.;85;10623;Berlin;DE","28,47 €","13,00 Km in zone_1_km (1,10 € * 13,15 km) + 14,00 € Kombi"
|
||||
"22019206","17,11","0.00","18,02","culture4life GmbH","Rotherstr. 20","10245, 14055","22,69","10:08 (07.05.)","10:10 (07.05.)","20,87","Rotherstr.;20;10245;Berlin;DE|Eichkampstr.;155;14055;Berlin;DE","34,71 €","18,00 Km in zone_1_km (1,10 € * 18,83 km) + 14,00 € Kombi"
|
||||
"22019247","17,11","0.00","18,02","Wollenberg Sicherheits- und Fenster","Wupperstr. 10","14167, 10709","0","10:21 (07.05.)","10:40 (07.05.)","20,87","Wupperstr.;10;14167;Berlin;DE|Hochmeisterplatz;1;10709;Berlin;DE","ERROR","Adresse in 2. Station nicht ok"
|
||||
"22019252","17,11","0.00","18,02","B. Braun Melsungen AG","Sieversufer 8","12359, 10965","7,55","10:22 (07.05.)","10:54 (07.05.)","20,87","Sieversufer;8;12359;Berlin;DE|Heimstr.;9;10965;Berlin;DE","20,88 €","6,00 Km in zone_1_km (1,10 € * 6,25 km) + 14,00 € Kombi"
|
||||
"22019280","17,11","0.00","18,02","minimum einrichten GmbH","Kantstr. 17","10623, 10969","5,97","10:31 (07.05.)","10:34 (07.05.)","20,87","Kantstr.;17;10623;Berlin;DE|Friedrichstr.;23a;10969;Berlin;DE","20,57 €","6,00 Km in zone_1_km (1,10 € * 5,97 km) + 14,00 € Kombi"
|
||||
"22019362","17,11","0.00","18,02","Erich Weit GmbH","Colditzstr. 38-42","12099, 10589","17,42","10:54 (07.05.)","12:13 (07.05.)","20,87","Colditzstr.;38-42;12099;Berlin;DE|Tauroggener Straße;41;10589;Berlin;DE","29,24 €","13,00 Km in zone_1_km (1,10 € * 13,85 km) + 14,00 € Kombi"
|
||||
"22019371","17,11","0.00","18,02","Erich Weit GmbH","Colditzstr. 38-42","12099, 10589","","10:56 (07.05.)","","20,87","Colditzstr.;38-42;12099;Berlin;DE|Tauroggener Straße;41;10589;Berlin;DE","29,24 €","13,00 Km in zone_1_km (1,10 € * 13,85 km) + 14,00 € Kombi"
|
||||
"22018434","17,11","0.00","18,02","Juwelier Fidan","Behrenstr. 28","10117, 13347","3,73","11:00 (07.05.)","14:20 (07.05.)","20,87","Behrenstr.;28;10117;Berlin;DE|Reinickendorfer Str.;11;13347;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,73 km) + 14,00 € Kombi"
|
||||
"22019388","17,11","0.00","18,02","Palm","Ringbahnstr. 50","12099, 14167","13,37","11:00 (07.05.)","12:48 (07.05.)","20,87","Ringbahnstr.;50;12099;Berlin;DE|Goerzallee;309;14167;Berlin;DE","28,70 €","13,00 Km in zone_1_km (1,10 € * 13,36 km) + 14,00 € Kombi"
|
||||
"22019441","17,11","0.00","18,02","Berliner Schrauben GmbH","Prinzenstr. 86","10969, 12524","","11:30 (07.05.)","","20,87","Prinzenstr.;86;10969;Berlin;DE|Bohnsdorfer Weg;105-119;12524;Berlin;DE","32,03 €","16,00 Km in zone_1_km (1,10 € * 16,39 km) + 14,00 € Kombi"
|
||||
"22019517","17,11","0.00","18,02","Neubauer Holz & Baustoffe","Mariendorfer Damm 162","12107, 10559","12,19","11:35 (07.05.)","11:43 (07.05.)","20,87","Mariendorfer Damm;162;12107;Berlin;DE|Alt-Moabit;19;10559;Berlin;DE","27,40 €","12,00 Km in zone_1_km (1,10 € * 12,18 km) + 14,00 € Kombi"
|
||||
"22019536","17,11","0.00","18,02","Harry Gerlach Wohnungs-","Berliner Str. 120","10713, 12049","12,13","11:42 (07.05.)","11:42 (07.05.)","20,87","Berliner Str.;120;10713;Berlin;DE|Hermannstr.;73;12049;Berlin;DE","26,42 €","11,00 Km in zone_1_km (1,10 € * 11,29 km) + 14,00 € Kombi"
|
||||
"22019572","17,11","0.00","18,02","Fritz Bergmann Reprografie GmbH","Schloßstr. 66","12165, 10407","14,19","11:55 (07.05.)","12:20 (07.05.)","20,87","Schloßstr.;66;12165;Berlin;DE|Käthe-Niederkirchner-Str.;34;10407;Berlin;DE","30,05 €","14,00 Km in zone_1_km (1,10 € * 14,59 km) + 14,00 € Kombi"
|
||||
"22017221","17,11","0.00","18,02","IHK BERLIN","Fasanenstr. 85","10623, 13507","12,06","12:00 (07.05.)","11:32 (07.05.)","20,87","Fasanenstr.;85;10623;Berlin;DE|Egellsstr.;21;13507;Berlin;DE","27,27 €","12,00 Km in zone_1_km (1,10 € * 12,06 km) + 14,00 € Kombi"
|
||||
"22019605","17,11","0.00","18,02","Johnson Controls Deutschland GmbH","Gradestr. 46-50","12347, 12555","15,68","12:06 (07.05.)","13:45 (07.05.)","20,87","Gradestr.;46-50;12347;Berlin;DE|Bahnhofstr.;33-38;12555;Berlin;DE","31,24 €","15,00 Km in zone_1_km (1,10 € * 15,67 km) + 14,00 € Kombi"
|
||||
"22019624","17,11","0.00","18,02","W&L Jordan","Sophie-Charlotten-Straße 4b","14059, 13353","7,08","12:14 (07.05.)","12:34 (07.05.)","20,87","Sophie-Charlotten-Straße;4b;14059;Berlin;DE|Seestraße;13;13353;Berlin;DE","21,79 €","7,00 Km in zone_1_km (1,10 € * 7,08 km) + 14,00 € Kombi"
|
||||
"22019470","17,11","0.00","18,02","Prosol Lacke+Farben GmbH","Nalepastraße 208","12459, 10367","9,45","12:30 (07.05.)","12:55 (07.05.)","20,87","Nalepastraße;208;12459;Berlin;DE|Vulkanstr.;13;10367;Berlin;DE","24,38 €","9,00 Km in zone_1_km (1,10 € * 9,44 km) + 14,00 € Kombi"
|
||||
"22019759","17,11","0.00","18,02","Strahlfix Lackiererei GmbH","Treptower Str. 40","12059, 12526","15,54","13:02 (07.05.)","15:34 (07.05.)","20,87","Treptower Str.;40;12059;Berlin;DE|Alexander-Meißner-Str.;36;12526;Berlin;DE","30,21 €","14,00 Km in zone_1_km (1,10 € * 14,74 km) + 14,00 € Kombi"
|
||||
"22019767","17,11","0.00","18,02","Arnold Kuthe Managementservice","Brunsbütteler Damm 138","13581, 10785","16,5","13:04 (07.05.)","13:04 (07.05.)","20,87","Brunsbütteler Damm;138;13581;Berlin;DE|Potsdamer Str.;96;10785;Berlin;DE","34,68 €","18,00 Km in zone_1_km (1,10 € * 18,80 km) + 14,00 € Kombi"
|
||||
"22019768","17,11","0.00","18,02","Futura GmbH","Ruhlebener Str. 128","13597, 13599","5,72","13:05 (07.05.)","13:36 (07.05.)","20,87","Ruhlebener Str.;128;13597;Berlin;DE|Olga-Tschechowa-Str.;10;13599;Berlin;DE","20,29 €","5,00 Km in zone_1_km (1,10 € * 5,72 km) + 14,00 € Kombi"
|
||||
"22019781","17,11","0.00","18,02","Stadtbote Berlin","Colditzstr. 33","12099, 13627","16,75","13:09 (07.05.)","14:09 (07.05.)","20,87","Colditzstr.;33;12099;Berlin;DE|Wirmerzeile;1;13627;Berlin;DE","32,59 €","16,00 Km in zone_1_km (1,10 € * 16,90 km) + 14,00 € Kombi"
|
||||
"22019703","17,11","0.00","18,02","Schlau Großhandels GmbH & Co. KG","Industriestr. 15","12099, 14195","13,89","13:30 (07.05.)","13:29 (07.05.)","20,87","Industriestr.;15;12099;Berlin;DE|Bitterstr.;24;14195;Berlin;DE","29,27 €","13,00 Km in zone_1_km (1,10 € * 13,88 km) + 14,00 € Kombi"
|
||||
"22019384","17,11","0.00","18,02","KC Immobilien","Ansbacher Str. 39","10777, 14193","","13:45 (07.05.)","13:18 (07.05.)","20,87","Ansbacher Str.;39;10777;Berlin;DE|Höhmannstr.;4;14193;Berlin;DE","21,44 €","6,00 Km in zone_1_km (1,10 € * 6,76 km) + 14,00 € Kombi"
|
||||
"22019892","17,11","0.00","18,02","W. & L. Jordan GmbH","Sophie-Charlotten-Str. 4b","14059, 13581","","13:45 (07.05.)","","20,87","Sophie-Charlotten-Str.;4b;14059;Berlin;DE|Prisdorfer Str.;22;13581;Berlin;DE","24,95 €","10,00 Km in zone_1_km (1,10 € * 9,95 km) + 14,00 € Kombi"
|
||||
"22019937","17,11","0.00","18,02","NORDSEE GmbH","Schloßstr. 23","12163, 10178","13,7","13:57 (07.05.)","13:58 (07.05.)","20,87","Schloßstr.;23;12163;Berlin;DE|Spandauer Str.;4;10178;Berlin;DE","29,07 €","13,00 Km in zone_1_km (1,10 € * 13,70 km) + 14,00 € Kombi"
|
||||
"22019873","17,11","0.00","18,02","Martin-Luther-Krankenhaus-","Caspar-Theyß-Str. 33","14193, 13589","19,06","14:45 (07.05.)","15:40 (07.05.)","20,87","Caspar-Theyß-Str.;33;14193;Berlin;DE|Stadtrandstr.;555;13589;Berlin;DE","32,68 €","17,00 Km in zone_1_km (1,10 € * 16,98 km) + 14,00 € Kombi"
|
||||
"22019454","17,11","0.00","18,02","MAN Truck & Bus Deutschland","Nonnendammallee 1","13599, 13627","3,67","15:00 (07.05.)","11:18 (07.05.)","20,87","Nonnendammallee;1;13599;Berlin;DE|Nikolaus-Gross-Weg;2;13627;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,67 km) + 14,00 € Kombi"
|
||||
"22020195","17,11","0.00","18,02","Optik","Benzstr. 40-46","12277, 10435","15,74","15:23 (07.05.)","16:43 (07.05.)","20,87","Benzstr.;40-46;12277;Berlin;DE|Sredzkistr.;23;10435;Berlin;DE","31,60 €","16,00 Km in zone_1_km (1,10 € * 16,00 km) + 14,00 € Kombi"
|
||||
"22002153","17,11","0.00","18,02","Metropolitan Aesthetics","Charlottenstr. 62","10117, 10365","8,22","16:00 (07.05.)","15:30 (07.05.)","20,87","Charlottenstr.;62;10117;Berlin;DE|Fanninger Str.;32;10365;Berlin;DE","23,19 €","8,00 Km in zone_1_km (1,10 € * 8,35 km) + 14,00 € Kombi"
|
||||
"22012940","16,77","0.00","18","Raab Karcher Baustoffhandel","Liebermannstraße 3","13088, 10557","11,19","10:00 (05.05.)","11:08 (05.05.)","20,45","Liebermannstraße;3;13088;Berlin;DE|Calvinstr.;22;10557;Berlin;DE","26,16 €","11,00 Km in zone_1_km (1,10 € * 11,05 km) + 14,00 € Kombi"
|
||||
"22015422","16,77","0.00","18","Remmers Service Center Berlin","Buchholzer Str. 47","13156, 13357","6,17","11:30 (05.05.)","11:19 (05.05.)","20,45","Buchholzer Str.;47;13156;Berlin;DE|Pankstr.;49;13357;Berlin;DE","20,79 €","6,00 Km in zone_1_km (1,10 € * 6,17 km) + 14,00 € Kombi"
|
||||
"22016870","16,77","0.00","18","Raab Karcher Baustoffhandel","Kanalstr. 55","12357, 12487","3,73","08:20 (06.05.)","10:42 (06.05.)","20,45","Kanalstr.;55;12357;Berlin;DE|Groß-Berliner-Damm;84;12487;Berlin;DE","19,50 € [M]","3,00 Km in zone_1_km (1,10 € * 3,73 km) + 14,00 € Kombi"
|
||||
"22018162","16,77","0.00","18","Raab Karcher - Zentral-Dispo","Kanalstr. 55","12357, 12047","10,25","08:00 (07.05.)","10:40 (07.05.)","20,45","Kanalstr.;55;12357;Berlin;DE|Reuterstr.;40;12047;Berlin;DE","24,93 €","9,00 Km in zone_1_km (1,10 € * 9,94 km) + 14,00 € Kombi"
|
||||
"22013923","16,6","0.00","17,98","VereinsService GbR","Bismarckstr. 99","10625, 13407","7,98","10:00 (05.05.)","10:01 (05.05.)","20,24","Bismarckstr.;99;10625;Berlin;DE|Rütlistr.;17;13407;Berlin;DE","22,78 €","8,00 Km in zone_1_km (1,10 € * 7,98 km) + 14,00 € Kombi"
|
||||
"22018673","16,6","0.00","17,98","Wolanski GmbH","Am Stichkanal 24","14167, 12277","9,24","07:59 (07.05.)","08:25 (07.05.)","20,24","Am Stichkanal;24;14167;Berlin;DE|Fritz-Werner-Str.;74;12277;Berlin;DE","24,16 €","9,00 Km in zone_1_km (1,10 € * 9,24 km) + 14,00 € Kombi"
|
||||
"22015571","16,12","0.00","18,01","Mercedes-Benz AG","Salzufer 1","10587, 13405","6,86","10:57 (05.05.)","12:07 (05.05.)","19,66","Salzufer;1;10587;Berlin;DE|Scharnweberstr.;14;13405;Berlin;DE","21,55 €","6,00 Km in zone_1_km (1,10 € * 6,86 km) + 14,00 € Kombi"
|
||||
"22020280","16,12","0.00","18,01","Mercedes-Benz AG","Seeburger Str. 27","13581, 10587","12,9","15:56 (07.05.)","15:58 (07.05.)","19,66","Seeburger Str.;27;13581;Berlin;DE|Salzufer;1;10587;Berlin;DE","28,18 €","12,00 Km in zone_1_km (1,10 € * 12,89 km) + 14,00 € Kombi"
|
||||
"22020302","16,12","0.00","18,01","Mercedes-Benz AG","Holzhauser Str. 11-19","13509, 13581","12,4","16:07 (07.05.)","16:34 (07.05.)","19,66","Holzhauser Str.;11-19;13509;Berlin;DE|Seeburger Str.;27;13581;Berlin;DE","27,64 €","12,00 Km in zone_1_km (1,10 € * 12,40 km) + 14,00 € Kombi"
|
||||
"22019631","15,79","0.00","18,02","Lutze Garten-, Landschafts- und","Plessower Hauptstr. 39","14542, 13627","","12:15 (07.05.)","12:15 (07.05.)","19,26","Plessower Hauptstr.;39;14542;Werder (Havel);DE|Heinickeweg;2a;13627;Berlin;DE","65,92 €","47,00 Km in ausserhalb_km (1,10 € * 7,87 km) + zone_2_km (1,10 € * 26,78 km) + zone_1_km (1,10 € * 12,55 km) + 14,00 € Kombi"
|
||||
"22019013","15,66","0.00","18,01","MEGA e. G.","Sickingenstr. 22-28","10553, 12681","15,89","09:23 (07.05.)","09:25 (07.05.)","19,1","Sickingenstr.;22-28;10553;Berlin;DE|Meeraner Str.;11;12681;Berlin;DE","31,48 €","15,00 Km in zone_1_km (1,10 € * 15,89 km) + 14,00 € Kombi"
|
||||
"22019412","16,04","0.00","12,01","HubSpot Germany GmbH","Am Postbahnhof 17 17 .","10243, 10557","7,17","12:45 (07.05.)","12:10 (07.05.)","18,23","Am Postbahnhof 17 17;.;10243;Berlin;DE|Europaplatz;.;10557;Berlin;DE","21,88 €","7,00 Km in zone_1_km (1,10 € * 7,16 km) + 14,00 € Kombi"
|
||||
"22018798","14,77","0.00","17,99","Bär & Ollenroth KG Brandenburg","Mittenwalder Str. 8","15834, 13469","59,32","08:32 (07.05.)","11:13 (07.05.)","18,01","Mittenwalder Str.;8;15834;Rangsdorf - Groß Machnow;DE|Zehntwerderweg;46;13469;Berlin;DE","85,01 €","64,00 Km in ausserhalb_km (1,10 € * 1,55 km) + zone_2_km (1,10 € * 35,82 km) + zone_1_km (1,10 € * 27,18 km) + 14,00 € Kombi"
|
||||
"22019119","13,05","0.00","17,98","Mega e. G.","Ullsteinstr. 85","12109, 12045","","09:48 (07.05.)","13:02 (07.05.)","15,91","Ullsteinstr.;85;12109;Berlin;DE|Weserstr.;182;12045;Berlin;DE","21,54 €","6,00 Km in zone_1_km (1,10 € * 6,85 km) + 14,00 € Kombi"
|
||||
"22014027","10,82","0.00","18,03","Hausanschluss Lager","Waldstr. 60","13156, 13051","11,78","06:30 (05.05.)","06:47 (05.05.)","13,2","Waldstr.;60;13156;Berlin;DE|Kyllburger Weg;20;13051;Berlin;DE","27,65 €","12,00 Km in zone_1_km (1,10 € * 12,41 km) + 14,00 € Kombi"
|
||||
"22016032","8,35","0.00","21,96","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 13125","","13:33 (05.05.)","13:39 (05.05.)","10,7","Hindenburgdamm;30a;12203;Berlin;DE|Schwanebecker Chaussee;50;13125;Berlin;DE","48,80 €","31,00 Km in zone_1_km (1,10 € * 31,64 km) + 14,00 € Kombi"
|
||||
"22016453","8,77","0.00","18,04","DRK-Blutspendedienst Nord-Ost gGmbH","Hindenburgdamm 30a","12203, 16303","","16:04 (05.05.)","16:04 (05.05.)","10,7","Hindenburgdamm;30a;12203;Berlin;DE|Auguststr.;23;16303;Schwedt /Oder;DE","143,39 €","118,00 Km in ausserhalb_km (1,10 € * 65,62 km) + zone_1_km (1,10 € * 32,09 km) + zone_2_km (1,10 € * 19,92 km) + 14,00 € Kombi"
|
||||
"22016740","8,77","0.00","18,04","TK Aufzüge GmbH","Pohlstr. 20","10785, 15344","43,41","07:33 (06.05.)","07:33 (06.05.)","10,7","Pohlstr.;20;10785;Berlin;DE|Hans-Beimler-Ring;1-5;15344;Strausberg;DE","61,76 €","43,00 Km in zone_1_km (1,10 € * 19,13 km) + zone_2_km (1,10 € * 24,29 km) + 14,00 € Kombi"
|
||||
"22017306","8,77","0.00","18,04","Raab Karcher - Bereich Lager","Teilestr. 9-10","12099, 12047","","10:14 (06.05.)","12:52 (06.05.)","10,7","Teilestr.;9-10;12099;Berlin;DE|Reuterstr.;40;12047;Berlin;DE","20,22 €","5,00 Km in zone_1_km (1,10 € * 5,65 km) + 14,00 € Kombi"
|
||||
"22019756","8,77","0.00","18,04","NORDSEE GmbH","Spandauer Str. 4","10178, 10178","0","13:01 (07.05.)","13:35 (07.05.)","10,7","Spandauer Str.;4;10178;Berlin;DE|Spandauer Str.;4;10178;Berlin;DE","19,50 € [M]","1,00 Km + 14,00 € Kombi"
|
||||
,
|
||||
|
@@ -0,0 +1,177 @@
|
||||
PROTOKOLL START IKEA
|
||||
|
||||
|
||||
[00.] VERSICHERN, ob auf der RICHTIGEN DB ("HTM") gearbeitet wird!!!!
|
||||
|
||||
(a) DB "HTM"
|
||||
|
||||
(b) In die Tabelle "headquarters" schauen, ob die richtigen NLn passen
|
||||
|
||||
|
||||
[01.] Bereinigung der Datenbank
|
||||
|
||||
DELETE FROM job;
|
||||
DELETE FROM jobcalculator;
|
||||
DELETE FROM jobpayment;
|
||||
DELETE FROM jobpaymentcollection;
|
||||
DELETE FROM tour;
|
||||
DELETE FROM tourservice;
|
||||
DELETE FROM tourarticle;
|
||||
|
||||
DELETE FROM genericdatacontainer WHERE gdc_obj_type = 'jb' AND gdc_gen_fieldname = 'jb_service_job';
|
||||
DELETE FROM genericdatacontainer WHERE gdc_obj_type = 'jb' AND gdc_gen_fieldname = 'jb_addmont';
|
||||
DELETE FROM genericdatacontainer WHERE gdc_obj_type = 'jb' AND gdc_gen_fieldname = 'sms';
|
||||
|
||||
DELETE FROM customer WHERE cs_id NOT IN (1,2,3,3534,3535,3540);
|
||||
DELETE FROM costcenter WHERE csc_id NOT IN (1,2,3,3506,3507,3512);
|
||||
DELETE FROM costcenteraddress WHERE csc_id NOT IN (1,2,3,3506,3507,3512) AND cscad_comp != 'EXTERN';
|
||||
|
||||
-- Take care of cmp_id related to couriers, headquarter and related customers !!!!
|
||||
DELETE FROM company WHERE cmp_id NOT IN (18262,18263,18264,21828,21831,21838,
|
||||
18249,18250,18258,18251,18259,18252,18253,18254,18257,18255,18260,18256,
|
||||
18261,18268,18269,18270,18271,18272,18273,18274,18286,18288,18289,18323,18324,18325,18326,18327,
|
||||
18328,18329,18330,18331,18332,18333,18334,18335,18336,18337,18338,18339,18340,18341,18342,18343,
|
||||
21829,21839,21840,21841,21842,21843,21844,21845,21846,21847,21848,21849,21850,21851,21852,21853,
|
||||
21854,21855,21856,21857,21858,21859,21860,21861,21862,21863,21864,21865,21866,21867,21868,21869,
|
||||
21871,21872,21873,21874,21875,21876,21877,21878,21879,21880,21881,21882);
|
||||
|
||||
update vehicledisposition set jb_id = 0;
|
||||
|
||||
|
||||
[02.] Scripte zur Bereinigung der FDS
|
||||
|
||||
(a) https://htm.assecutor.de/htm/include/cron_vht_dispo_days.php
|
||||
|
||||
(b) https://htm.assecutor.de/htm/tools/updateFDSVehicleAvailabilityPAST.php
|
||||
|
||||
(c) https://htm.assecutor.de/htm/tools/updateFDSVehicleAvailability.php
|
||||
|
||||
|
||||
[03.] Update ARTIKELBESTAND
|
||||
|
||||
Import der jüngsten verfügbaren Artikelbestandsdatei von IKEA
|
||||
=> Siehe [SUBPROTOKOLL ARTIKELIMPORT]
|
||||
|
||||
|
||||
[04.] Vorbereitung der Export-Dateien (JOB und JOBARTICLE)
|
||||
|
||||
- Laden der Dateien in Excel
|
||||
- Entfernung der jeweiligen Kopfzeilen
|
||||
- Speichern als CSV-Datein mit entsprechenden Prefices
|
||||
- JOB => "import_JOB_<old_name>"
|
||||
- JOBARTICLE => "import_JOBARTICLE_<old_name>"
|
||||
|
||||
|
||||
[05.] Ausführung IMPORT-Scripte
|
||||
|
||||
(a) - Sicherstellung Import-Script eingestellt auf Ludwigsburg (!!!!)
|
||||
- Aufruf Stammblatt IKEA Ludwigsburg (Mandant WAST) und Button Dokumente
|
||||
- Dateien (Aufträge und Auftragsartikel) für Ludwigsburg hochladen
|
||||
- Import-Auswahl JOB auf der rechten Seite und im Anschluss die
|
||||
links die dann als Link angezeigte Datei aufrufen und importieren
|
||||
- Import-Auswahl JOBARTICLE auf der rechten Seite und im Anschluss die
|
||||
links die dann als Link angezeigte Datei aufrufen und importieren
|
||||
|
||||
(b) - Sicherstellung Import-Script eingestellt auf Sindelfingen (!!!!)
|
||||
- Aufruf Stammblatt IKEA Sindelfingen (Mandant WAST) und Button Dokumente
|
||||
- Dateien (Aufträge und Auftragsartikel) für Ludwigsburg hochladen
|
||||
- Import-Auswahl JOB auf der rechten Seite und im Anschluss die
|
||||
links die dann als Link angezeigte Datei aufrufen und importieren
|
||||
- Import-Auswahl JOBARTICLE auf der rechten Seite und im Anschluss die
|
||||
links die dann als Link angezeigte Datei aufrufen und importieren
|
||||
|
||||
|
||||
[06.] Reset der AUTOINCREMENT-IDs
|
||||
|
||||
(a) JOB.JB_ID to "270000"
|
||||
|
||||
ALTER TABLE job AUTO_INCREMENT = 270000;
|
||||
|
||||
(b) JOB_PAYMENTCOLLECTION JBPC_ID to "81000000"
|
||||
|
||||
ALTER TABLE jobpaymentcollection AUTO_INCREMENT = 81000000;
|
||||
|
||||
|
||||
[07.] FTP-UPLOAD der Export-Dateien
|
||||
|
||||
(a) LEEREN Tabellen "exportlog" und "exportfiles"
|
||||
|
||||
(b) FREIGABE der Spalte per Parameter "EXPORT_MASK_FTP_UPLOAD_DISABLED"
|
||||
|
||||
UPDATE parameter SET par_value = '0' WHERE par_key = 'EXPORT_MASK_FTP_UPLOAD_DISABLED';
|
||||
|
||||
|
||||
[08.] Anpassungen der MAILADRESSEN-Parameter
|
||||
(cs_id = 3534 <=> Ludwigsburg | cs_id = 3540 <=> Sindelfingen)
|
||||
|
||||
(a) Rollkarten-Parameter
|
||||
|
||||
UPDATE parameter SET par_value = 'moebel-ludwigsburg@walter-moebeltransport.de,daniel.langhann@hansetrans.de,support@assecutor.de' WHERE par_key = 'MAIL_CARTAGE_NOTE_MAIL_TO_3534';
|
||||
UPDATE parameter SET par_value = 'moebel-sindelfingen@walter-moebeltransport.de,daniel.langhann@hansetrans.de,support@assecutor.de' WHERE par_key = 'MAIL_CARTAGE_NOTE_MAIL_TO_3540';
|
||||
|
||||
(b) PDF Kasse
|
||||
|
||||
UPDATE parameter SET par_value = 'lubu225@walter-moebeltransport.de,anja.anger@hansetrans.de,ronald.schmidt@hansetrans.de,stefan.siebke@hansetrans.de,dominik.mueller@walter-moebeltransport.de,daniel.langhann@hansetrans.de' WHERE par_key = 'MASK_STAT_CASHFLOW_MAILTO_DEFAULT_3534';
|
||||
UPDATE parameter SET par_value = 'sifi224@walter-moebeltransport.de,anja.anger@hansetrans.de,ronald.schmidt@hansetrans.de,stefan.siebke@hansetrans.de,dominik.mueller@walter-moebeltransport.de,daniel.langhann@hansetrans.de' WHERE par_key = 'MASK_STAT_CASHFLOW_MAILTO_DEFAULT_3540';
|
||||
|
||||
(c) Abnahmeprotokoll
|
||||
|
||||
UPDATE parameter SET par_value = 'moebel-ludwigsburg@walter-moebeltransport.de,daniel.langhann@hansetrans.de,support@assecutor.de' WHERE par_key = 'AUTOMAILER_ACCEPTANCE_PROTOCOL_MAIL_TO_GRP_11';
|
||||
|
||||
(d) Kontrolle der Parameter:
|
||||
|
||||
SELECT * FROM parameter
|
||||
WHERE par_key IN ('MAIL_CARTAGE_NOTE_MAIL_SENDER_3534','MAIL_CARTAGE_NOTE_MAIL_SENDER_3540','MAIL_CARTAGE_NOTE_MAIL_TO_3534','MAIL_CARTAGE_NOTE_MAIL_TO_3540',
|
||||
'MASK_STAT_CASHFLOW_MAILTO_DEFAULT','','','','','','','','','')
|
||||
ORDER BY par_key LIMIT 0,1000;
|
||||
|
||||
|
||||
[09.] Löschung der Logfiles in "../log/"
|
||||
|
||||
(a) automailer_cartage_note.log | auto_cartage_note.stdout+err
|
||||
|
||||
(b) automailer_acceptance_protocol.log | auto_service_acceptance_protocol.stdout+err | serviceAcceptanceProtocol.stdout+err
|
||||
|
||||
(c) automailer_cashflow.log
|
||||
|
||||
(d) sms.log
|
||||
|
||||
|
||||
[09.] Umstellung der Geräte auf votian
|
||||
|
||||
|
||||
[10.] Kontrolle der Funktionsfähigkeit der Replikanten
|
||||
|
||||
|
||||
[11.] Kontrolle der Funktionsfähigkeit der CRONS
|
||||
|
||||
|
||||
--------------------------------------------------------------------
|
||||
|
||||
[SUBPROTOKOLL ARTIKELIMPORT]
|
||||
|
||||
Protokoll:
|
||||
- Jüngste Datei vin Excel laden
|
||||
- Kopfzeile entfernen und als CSV-Datei abspeichern.
|
||||
- Trennzeichen sollte (automatisch) das Semikolon sein
|
||||
- Der Dateiname muss beginnen mit "import_ARTICLE_"
|
||||
(z.B. import_ARTICLE_Lubu_20140621.csv>)
|
||||
- Das entsprechende Kundenstammblatt aufrufen
|
||||
(Artikeldatei für Lubu => Lubu-Stammblatt)
|
||||
- Button Dokumente drücken => Import-Tab öffnet sich
|
||||
- Unten links Datei "import_ARTICLE..." (auf lokalem Rechner)
|
||||
auswählen und hochladen
|
||||
- nach dem Hochladen auf der rechten Seite in der SELECT-Box
|
||||
"ARTICLE" auswählen, links sollte (auch) die hochgeladene Datei
|
||||
als Link erscheinen. Diesen Link betätigen.
|
||||
- Importseite wird aufgerufen. Mit Button "Import" den Import starten
|
||||
|
||||
Bemerkungen:
|
||||
(a) Der Vorgang kann bis zu 15 Minuten dauern, also nicht panisch werden!!!!
|
||||
(b) Sollte das Script abkacken, auch keine Panik, der DB-Process sollte
|
||||
weiter laufen!
|
||||
|
||||
Finale Kontrolle z.B. Auftrag mit neuen/geänderten Artikel erstellen...
|
||||
oder so...
|
||||
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
USE phoenix;
|
||||
|
||||
# Leipzig zum 01.10.2022 (Wiederholung vom 01.01.2022, 01.01.2021, 01.01.2019, 01.01.2018, 01.01.2017 und 01.01.2015):
|
||||
UPDATE serviceplzcustomer SET srvpc_price = srvpc_price + 1.5 WHERE hq_id = 8 AND cs_id = 0 AND srvpc_price > 0;
|
||||
INSERT INTO serviceplzhistory (srvp_id, srvp2_id, hq_id, cs_id, vht_id, usr_id, srvph_validfrom, srvph_price, srvph_discount)
|
||||
SELECT srvp_id, srvp2_id, hq_id, cs_id, vht_id, 0.00, '2022-10-01 00:00:00', srvpc_price, srvpc_discount FROM serviceplzcustomer WHERE hq_id = 8 AND cs_id = 0 AND srvpc_price > 0;
|
||||
@@ -0,0 +1,98 @@
|
||||
-- ****************************************************************
|
||||
-- * SQL-Statements to check integrity of the database stock data *
|
||||
-- ****************************************************************
|
||||
|
||||
|
||||
-- Compare count(ati.ati_serialno) with stkat.stkat_itemquantity
|
||||
SELECT
|
||||
ati.at_id,
|
||||
ati.stk_id,
|
||||
count(ati.ati_serialno) AS num,
|
||||
stkat.stkat_quantity,
|
||||
stkat.stkat_itemquantity,
|
||||
at.at_name,
|
||||
stk.stk_name,
|
||||
stk.stk_path
|
||||
FROM
|
||||
articleitem AS ati,
|
||||
stockarticle AS stkat,
|
||||
article AS at,
|
||||
stock AS stk
|
||||
WHERE
|
||||
ati.at_id = stkat.at_id AND
|
||||
ati.stk_id = stkat.stk_id AND
|
||||
at.at_id = stkat.at_id AND
|
||||
at.at_serialno = '1' AND
|
||||
stk.stk_id = stkat.stk_id
|
||||
GROUP BY ati.at_id, ati.stk_id
|
||||
HAVING (num != stkat.stkat_itemquantity)
|
||||
ORDER BY stk.stk_id, at.at_id
|
||||
LIMIT 0,1000
|
||||
|
||||
|
||||
-- Get all rows in "articleitem" not existing in "stockarticle"
|
||||
-- That is the special case from above where "stkat.stkat_itemquantity = 0",
|
||||
-- because if it is "0" it will be removed in stockarticle.
|
||||
-- Therefore these rows are not in the portfolio from the statement above
|
||||
SELECT
|
||||
stk.stk_name,
|
||||
stk.stk_path,
|
||||
ati.stk_id,
|
||||
ati.at_id,
|
||||
ati.ati_serialno,
|
||||
at.at_name
|
||||
FROM
|
||||
articleitem AS ati,
|
||||
article AS at,
|
||||
stock AS stk
|
||||
WHERE
|
||||
ati.stk_id = stk.stk_id AND
|
||||
ati.at_id = at.at_id AND
|
||||
at.at_serialno = '1' AND
|
||||
CONCAT(ati.at_id,'_',ati.stk_id) NOT IN (SELECT CONCAT(at_id,'_',stk_id) FROM stockarticle)
|
||||
ORDER BY stk.stk_path
|
||||
LIMIT 0,1000
|
||||
|
||||
|
||||
-- The same statement like before but output is a preparation for insert statements in "stockarticle"
|
||||
SELECT
|
||||
CONCAT('INSERT INTO stockarticle (stk_id, at_id, stkat_maxquantity, stkat_quantity, stkat_itemquantity, stkat_modifytime) VALUES (',ati.stk_id,',',ati.at_id,',0,',COUNT(*),',',COUNT(*),',0000-00-00 00:00:00);')
|
||||
FROM
|
||||
articleitem AS ati,
|
||||
article AS at,
|
||||
stock AS stk
|
||||
WHERE
|
||||
ati.stk_id = stk.stk_id AND
|
||||
ati.at_id = at.at_id AND
|
||||
at.at_serialno = '1' AND
|
||||
CONCAT(ati.at_id,'_',ati.stk_id) NOT IN (SELECT CONCAT(at_id,'_',stk_id) FROM stockarticle)
|
||||
GROUP BY ati.stk_id,ati.at_id
|
||||
LIMIT 0,1000
|
||||
|
||||
|
||||
|
||||
-- Check for multiple entries with the same serial number
|
||||
-- ACHTUNG: ABFRAGEZEIT KRITISCH !!!
|
||||
SELECT
|
||||
ati.at_id,
|
||||
ati.stk_id,
|
||||
ati.ati_serialno,
|
||||
at.at_name,
|
||||
stk.stk_name
|
||||
FROM
|
||||
articleitem AS ati,
|
||||
article AS at,
|
||||
stock AS stk
|
||||
WHERE
|
||||
at.at_id = ati.at_id AND
|
||||
stk.stk_id = ati.stk_id AND
|
||||
ati.ati_serialno IN (
|
||||
SELECT
|
||||
ati2.ati_serialno
|
||||
FROM
|
||||
articleitem AS ati2
|
||||
GROUP BY ati2.ati_serialno
|
||||
HAVING count(ati2.ati_serialno) > 1
|
||||
)
|
||||
ORDER BY ati.ati_serialno
|
||||
LIMIT 0,1000
|
||||
|
After Width: | Height: | Size: 114 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 50 KiB |
|
After Width: | Height: | Size: 114 KiB |
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="19450" height="5721" clip-rule="evenodd" xml:space="preserve" version="1.1">
|
||||
|
||||
<g>
|
||||
<title>Layer 1</title>
|
||||
<g id="svg_1">
|
||||
<path id="svg_2" fill-rule="nonzero" fill="#ca0d38" d="m4605.38,4328.92c-9.625,-20 -29.917,-32.625 -52.083,-32.625l-640.292,0c-13.667,0 -26.958,4.875 -37.416,13.666c-343.375,290.625 -764.376,444.125 -1217.79,444.125c-1042.29,0 -1890.25,-847.916 -1890.25,-1890.17c0,-1042.21 847.958,-1890.12 1890.25,-1890.12c255.666,0 502.541,49.374 733.708,146.792c26.792,11.166 57.75,0.958 72.458,-24.126l235.75,-402.958c8.292,-14.167 10.167,-31.166 5.167,-46.833c-4.958,-15.667 -16.375,-28.459 -31.292,-35.167c-318.25,-143.708 -660.041,-216.583 -1015.79,-216.583c-1361.5,0 -2469.17,1107.62 -2469.17,2469c0,1361.5 1107.67,2469.08 2469.17,2469.08l0.25,0c674.75,0 1304.79,-267.083 1774.04,-752.042c57.291,-59.166 113.374,-123.375 166.624,-190.916c13.792,-17.417 16.334,-41.084 6.667,-61.125l-0.001,0.002z"></path>
|
||||
<path id="svg_3" fill-rule="nonzero" fill="#ca0d38" d="m1940.71,3763.62c-24.958,-24.958 -34.291,-52.958 -12.458,-93.5l143.375,-252.5c24.958,-40.5 74.792,-40.5 105.958,-18.708c87.292,59.208 246.292,171.416 442.667,171.416c124.708,0 215.125,-77.916 215.125,-187c0,-130.916 -115.375,-215.083 -321.083,-314.875c-302.375,-146.458 -604.792,-314.791 -604.792,-688.833c0,-308.667 240.042,-620.375 720.125,-620.375c324.208,0 573.583,165.25 667.083,233.792c37.417,21.833 31.167,77.916 18.709,99.792l-158.959,239.999c-21.833,34.292 -74.833,59.209 -137.166,21.834c-71.709,-49.875 -255.625,-168.334 -420.834,-168.334c-130.916,0 -190.166,81.042 -190.166,171.417c0,102.875 121.583,183.917 339.791,289.917c274.292,134.041 629.667,286.791 629.667,710.708c0,321.125 -277.417,645.292 -735.667,645.292c-405.25,0 -629.666,-168.334 -701.375,-240.042z"></path>
|
||||
<path id="svg_4" fill-rule="nonzero" fill="#ca0d38" d="m4188.33,2248.67l-445.791,0c-34.292,0 -59.208,-28.042 -59.208,-59.25l0,-339.75c0,-31.167 24.916,-59.251 59.208,-59.251l1384.08,0c34.292,0 59.208,28.084 59.208,59.251l0,339.75c0,31.208 -24.916,59.25 -59.208,59.25l-445.75,0l0,1664.58c0,31.208 -28.083,59.25 -59.25,59.25l-374.083,0c-31.167,0 -59.209,-28.042 -59.209,-59.25l0,-1664.58l0.003,0z"></path>
|
||||
<path id="svg_5" fill-rule="nonzero" fill="#ca0d38" d="m6445.33,3224.38l-236.917,-514.375l-3.166,0l-233.75,514.375l473.833,0zm-1281.21,667.042l975.708,-2097.88c9.376,-18.709 31.167,-34.292 53,-34.292l31.167,0c21.792,0 43.625,15.583 52.958,34.292l975.75,2097.88c18.667,40.541 -6.249,81.083 -53,81.083l-346,0c-56.166,0 -81.041,-18.708 -109.124,-77.917l-112.25,-246.291l-847.876,0l-112.25,249.375c-15.541,37.416 -49.875,74.833 -112.208,74.833l-342.833,0c-46.792,0 -71.709,-40.542 -53.042,-81.083z"></path>
|
||||
<path id="svg_6" fill-rule="nonzero" fill="#ca0d38" d="m8415.5,3511.12c352.25,0 579.792,-277.417 579.792,-632.792c0,-352.25 -227.542,-629.666 -579.792,-629.666l-327.292,0l0,1262.46l327.292,0l0,-0.002zm-813.583,-1661.46c0,-31.167 24.958,-59.251 56.125,-59.251l760.625,0c601.625,0 1094.12,489.417 1094.12,1087.92c0,604.75 -492.499,1094.17 -1094.12,1094.17l-760.625,0c-31.167,0 -56.125,-28.042 -56.125,-59.25l0,-2063.58l0,-0.009z"></path>
|
||||
<path id="svg_7" fill-rule="nonzero" fill="#ca0d38" d="m10217.4,2248.67l-445.75,0c-34.292,0 -59.208,-28.042 -59.208,-59.25l0,-339.75c0,-31.167 24.916,-59.251 59.208,-59.251l1384.08,0c34.291,0 59.25,28.084 59.25,59.251l0,339.75c0,31.208 -24.959,59.25 -59.25,59.25l-445.75,0l0,1664.58c0,31.208 -28.084,59.25 -59.251,59.25l-374.083,0c-31.167,0 -59.25,-28.042 -59.25,-59.25l0,-1664.58l0.004,0z"></path>
|
||||
<path id="svg_8" fill-rule="nonzero" fill="#ca0d38" d="m12334.1,3526.75c155.834,0 243.166,-77.958 243.166,-224.458c0,-124.667 -84.166,-221.334 -236.915,-221.334l-271.209,0l0,445.792l264.958,0zm-6.208,-851.042c118.458,0 202.583,-99.75 202.583,-224.416c0,-124.709 -84.125,-211.959 -202.583,-211.959l-258.75,0l0,436.375l258.75,0zm355.333,187.042c190.167,62.333 411.5,205.708 411.5,508.083c0,367.834 -308.624,601.667 -679.541,601.667l-773.084,0c-34.292,0 -59.25,-28.042 -59.25,-59.25l0,-2063.58c0,-31.167 24.958,-59.251 59.25,-59.251l726.333,0c367.834,0 670.168,252.542 670.168,579.834c0,249.375 -177.667,417.667 -355.376,489.375l0,3.125l0,-0.003z"></path>
|
||||
<path id="svg_9" fill-rule="nonzero" fill="#ca0d38" d="m16343.1,2248.67l-445.834,0c-34.25,0 -59.25,-28.042 -59.25,-59.25l0,-339.75c0,-31.167 25,-59.251 59.25,-59.251l1384.04,0c34.334,0 59.25,28.084 59.25,59.251l0,339.75c0,31.208 -24.916,59.25 -59.25,59.25l-445.708,0l0,1664.58c0,31.208 -28.084,59.25 -59.25,59.25l-374.125,0c-31.167,0 -59.125,-28.042 -59.125,-59.25l0,-1664.58l0.002,0z"></path>
|
||||
<path id="svg_10" fill-rule="nonzero" fill="#ca0d38" d="m17708.5,1849.67c0,-31.167 24.999,-59.251 59.25,-59.251l1290.54,0c34.333,0 59.25,28.084 59.25,59.251l0,339.75c0,31.208 -24.917,59.25 -59.25,59.25l-863.458,0l0,386.541l710.708,0c31.166,0 59.208,28.042 59.208,59.209l0,339.791c0,34.25 -28.042,59.209 -59.208,59.209l-710.708,0l0,420.833l863.458,0c34.333,0 59.25,28.083 59.25,59.25l0,339.75c0,31.208 -24.917,59.25 -59.25,59.25l-1290.54,0c-34.251,0 -59.25,-28.042 -59.25,-59.25l0,-2063.58l0,-0.003z"></path>
|
||||
<path id="svg_11" fill-rule="nonzero" fill="#ca0d38" d="m15521.5,2368.04c-8.001,-15.834 -22.208,-27.042 -40.208,-30.709c-17.334,-3.5 -35.459,1.042 -49.042,12.417l-309.416,257.375c-18.793,15.583 -25.709,41.375 -17.667,64.417c46.291,130.083 47.791,268.041 4.542,399.041c-106.584,323.25 -456.375,499.667 -779.667,393.084c-323.25,-106.584 -499.542,-456.375 -392.917,-779.709c79.667,-241.791 304.458,-411.958 559.25,-423.583c29.125,-1.292 52.708,-23.917 55.416,-53l35.251,-387.625c1.458,-16.292 -4.083,-32.416 -15.001,-44.583c-11.125,-12.042 -26.666,-18.917 -42.957,-19.042c-487.543,-2.167 -917.626,307.292 -1070.33,770.042c-193.584,587.125 126.583,1222.25 713.625,1415.92c586.999,193.584 1222.08,-126.708 1415.67,-713.791c94.334,-285.875 70.75,-591.459 -66.541,-860.25l-0.008,-0.004z"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.8 KiB |
@@ -0,0 +1,2 @@
|
||||
/*! This file is auto-generated */
|
||||
(()=>{"use strict";var e={n:t=>{var n=t&&t.__esModule?()=>t.default:()=>t;return e.d(n,{a:n}),n},d:(t,n)=>{for(var o in n)e.o(n,o)&&!e.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:n[o]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{setup:()=>p,speak:()=>d});const n=window.wp.domReady;var o=e.n(n);function i(e="polite"){const t=document.createElement("div");t.id=`a11y-speak-${e}`,t.className="a11y-speak-region",t.setAttribute("style","position: absolute;margin: -1px;padding: 0;height: 1px;width: 1px;overflow: hidden;clip: rect(1px, 1px, 1px, 1px);-webkit-clip-path: inset(50%);clip-path: inset(50%);border: 0;word-wrap: normal !important;"),t.setAttribute("aria-live",e),t.setAttribute("aria-relevant","additions text"),t.setAttribute("aria-atomic","true");const{body:n}=document;return n&&n.appendChild(t),t}const a=window.wp.i18n;let r="";function d(e,t){!function(){const e=document.getElementsByClassName("a11y-speak-region"),t=document.getElementById("a11y-speak-intro-text");for(let t=0;t<e.length;t++)e[t].textContent="";t&&t.setAttribute("hidden","hidden")}(),e=function(e){return e=e.replace(/<[^<>]+>/g," "),r===e&&(e+=" "),r=e,e}(e);const n=document.getElementById("a11y-speak-intro-text"),o=document.getElementById("a11y-speak-assertive"),i=document.getElementById("a11y-speak-polite");o&&"assertive"===t?o.textContent=e:i&&(i.textContent=e),n&&n.removeAttribute("hidden")}function p(){const e=document.getElementById("a11y-speak-intro-text"),t=document.getElementById("a11y-speak-assertive"),n=document.getElementById("a11y-speak-polite");null===e&&function(){const e=document.createElement("p");e.id="a11y-speak-intro-text",e.className="a11y-speak-intro-text",e.textContent=(0,a.__)("Notifications"),e.setAttribute("style","position: absolute;margin: -1px;padding: 0;height: 1px;width: 1px;overflow: hidden;clip: rect(1px, 1px, 1px, 1px);-webkit-clip-path: inset(50%);clip-path: inset(50%);border: 0;word-wrap: normal !important;"),e.setAttribute("hidden","hidden");const{body:t}=document;t&&t.appendChild(e)}(),null===t&&i("assertive"),null===n&&i("polite")}o()(p),(window.wp=window.wp||{}).a11y=t})();
|
||||
@@ -0,0 +1,2 @@
|
||||
/* Counter */
|
||||
(function(a){"use strict";a.fn.absoluteCounter=function(b){b=a.extend({},a.fn.absoluteCounter.defaults,b||{});return a(this).each(function(){var d=this,g=b.speed,f=b.setStyles,e=b.delayedStart,c=b.fadeInDelay;if(f){a(d).css({display:"block",position:"relative",overflow:"hidden"}).addClass('animated')}a(d).css("opacity","0");a(d).animate({opacity:0},e,function(){var l=a(d).text();a(d).text("");for(var k=0;k<l.length;k++){var n=l.charAt(k);var m="";if(parseInt(n,10)>=0){m='<span class="onedigit p'+(l.length-k)+" d"+n+'">';for(var h=0;h<=parseInt(n,10);h++){m+='<span class="n'+(h%10)+'">'+(h%10)+"</span>"}m+="</span>"}else{m='<span class="onedigit p'+(l.length-k)+' char"><span class="c">'+n+"</span></span>"}a(d).append(m)}a(d).animate({opacity:1},c);a("span.onedigit",d).each(function(i,o){if(f){a(o).css({"float":"left",position:"relative"});a("span",a(o)).css({display:"block"})}var p=a("span",a(o)).length,j=a(d).height();a(o).css({height:(p*j)+"px",top:"0"});a("span",a(o)).css({height:j+"px"});a(o).animate({top:-1*((p-1)*j)+"px"},g,function(){if(typeof(b.onComplete)==="function"){b.onComplete.call(d)}})})})})};a.fn.absoluteCounter.defaults={speed:2000,setStyles:true,onComplete:null,delayedStart:0,fadeInDelay:0}}(jQuery));
|
||||
@@ -0,0 +1,309 @@
|
||||
.cq_allinone_accordion {
|
||||
background-image: url(../img/icon_accordion.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_vc_accordion_item {
|
||||
background-image: url(../img/icon_accordion_item.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_hotspot {
|
||||
background-image: url(../img/icon_hotspot.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_ihover {
|
||||
background-image: url(../img/icon_ihover.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_faanimation {
|
||||
background-image: url(../img/icon_faanimation.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_dagallery {
|
||||
background-image: url(../img/icon_dagallery.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_mediumgallery {
|
||||
background-image: url(../img/icon_mediumgallery.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_masonry {
|
||||
background-image: url(../img/icon_masonry.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_scrollnotification {
|
||||
background-image: url(../img/icon_scrollnotification.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_timeline {
|
||||
background-image: url(../img/icon_timeline.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_fluidbox {
|
||||
background-image: url(../img/icon_fluidbox.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_productcover {
|
||||
background-image: url(../img/icon_productcover.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_ribbon {
|
||||
background-image: url(../img/icon_ribbon.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_appmockup {
|
||||
background-image: url(../img/icon_appmockup.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_depthmodal {
|
||||
background-image: url(../img/icon_depthmodal.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_profilecard {
|
||||
background-image: url(../img/icon_profilecard.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_testimonial {
|
||||
background-image: url(../img/icon_testimonial.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_tab {
|
||||
background-image: url(../img/icon_tab.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_tab_item {
|
||||
background-image: url(../img/icon_tab_item.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_image {
|
||||
background-image: url(../img/icon_image.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_parallax {
|
||||
background-image: url(../img/icon_parallax.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_stackgallery {
|
||||
background-image: url(../img/icon_stackgallery.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_figurenav {
|
||||
background-image: url(../img/icon_figurenav.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_button01 {
|
||||
background-image: url(../img/icon_button01.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_todolist {
|
||||
background-image: url(../img/icon_todolist.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_vc_todolist_item {
|
||||
background-image: url(../img/icon_todolist_item.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
|
||||
.cq_allinone_carouselgallery {
|
||||
background-image: url(../img/icon_carouselgallery.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_zoommagnify {
|
||||
background-image: url(../img/icon_zoommagnify.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_fullscreenintro {
|
||||
background-image: url(../img/icon_fullscreenintro.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_pagetransition {
|
||||
background-image: url(../img/icon_pagetransition.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_thumbcaption {
|
||||
background-image: url(../img/icon_thumbcaption.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_imagearrow {
|
||||
background-image: url(../img/icon_imagearrow.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_metrocarousel {
|
||||
background-image: url(../img/icon_metrocarousel.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_separator {
|
||||
background-image: url(../img/icon_separator.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_materialcard {
|
||||
background-image: url(../img/icon_materialcard.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_cubebox {
|
||||
background-image: url(../img/icon_cubebox.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_sidebyside {
|
||||
background-image: url(../img/icon_sidebyside.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_typewriter {
|
||||
background-image: url(../img/icon_typewriter.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_sticker {
|
||||
background-image: url(../img/icon_sticker.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_imageoverlay {
|
||||
background-image: url(../img/icon_imageoverlay.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_imageoverlay2 {
|
||||
background-image: url(../img/icon_imageoverlay2.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_flipbox {
|
||||
background-image: url(../img/icon_flipbox.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_bannerblock {
|
||||
background-image: url(../img/icon_bannerblock.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_beforeafter {
|
||||
background-image: url(../img/icon_beforeafter.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_compareslider {
|
||||
background-image: url(../img/icon_compareslider.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_imageaccordion {
|
||||
background-image: url(../img/icon_imageaccordion.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_profilepanel {
|
||||
background-image: url(../img/icon_profilepanel.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_videocover {
|
||||
background-image: url(../img/icon_videocover.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_stackblock {
|
||||
background-image: url(../img/icon_stackblock.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_gradientbox {
|
||||
background-image: url(../img/icon_gradientbox.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_vectorcard {
|
||||
background-image: url(../img/icon_vectorcard.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_avatarwithpopup {
|
||||
background-image: url(../img/icon_avatarwithpopup.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_coverslider {
|
||||
background-image: url(../img/icon_coverslider.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_colorblock {
|
||||
background-image: url(../img/icon_colorblock.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_testimoniallist {
|
||||
background-image: url(../img/icon_testimoniallist.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_homeslider {
|
||||
background-image: url(../img/icon_homeslider.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_accordioncover {
|
||||
background-image: url(../img/icon_accordioncover.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_hovercard {
|
||||
background-image: url(../img/icon_hovercard.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_allinone_backgroundbutton {
|
||||
background-image: url(../img/icon_backgroundbutton.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_vc_diamondgrid_item {
|
||||
background-image: url(../img/icon_diamondgrid_item.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_vc_diamondgrid {
|
||||
background-image: url(../img/icon_diamondgrid.png) !important;
|
||||
background-size: 32px;
|
||||
/*background-position: 0 0 !important*/
|
||||
}
|
||||
.cq_vc_expandgrid_item {
|
||||
background-image: url(../img/icon_expandgrid_item.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_vc_expandgrid {
|
||||
background-image: url(../img/icon_expandgrid.png) !important;
|
||||
background-size: 32px;
|
||||
/*background-position: 0 0 !important*/
|
||||
}
|
||||
.cq_vc_chatbubble_item {
|
||||
background-image: url(../img/icon_chatbubble_item.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_vc_chatbubble {
|
||||
background-image: url(../img/icon_chatbubble.png) !important;
|
||||
background-size: 32px;
|
||||
/*background-position: 0 0 !important*/
|
||||
}
|
||||
.cq_vc_avatarblock {
|
||||
background-image: url(../img/icon_avatarblock.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_vc_skewbox_item {
|
||||
background-image: url(../img/icon_skewbox_item.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_vc_skewbox {
|
||||
background-image: url(../img/icon_skewbox.png) !important;
|
||||
background-size: 32px;
|
||||
/*background-position: 0 0 !important*/
|
||||
}
|
||||
.cq_vc_shadowcard {
|
||||
background-image: url(../img/icon_shadowcard.png) !important;
|
||||
background-size: 32px;
|
||||
/*background-position: 0 0 !important*/
|
||||
}
|
||||
.cq_vc_materialslider_item {
|
||||
background-image: url(../img/icon_materialslider_item.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
.cq_vc_materialslider {
|
||||
background-image: url(../img/icon_materialslider.png) !important;
|
||||
background-size: 32px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/*.wpb-textarea_raw_html, .textarea_raw_html {
|
||||
font-family: Arial !important;
|
||||
color: #333 !important;
|
||||
font-size: 13px !important;
|
||||
height: 90px;
|
||||
}
|
||||
*/
|
||||
.cqadmin-col-offset{
|
||||
margin: 12px 0;
|
||||
}
|
||||
.cqadmin-firstcol-offset{
|
||||
padding: 0;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,261 @@
|
||||
+function ($) { "use strict";
|
||||
|
||||
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
|
||||
// ============================================================
|
||||
|
||||
function transitionEnd() {
|
||||
var el = document.createElement('bootstrap')
|
||||
|
||||
var transEndEventNames = {
|
||||
'WebkitTransition' : 'webkitTransitionEnd'
|
||||
, 'MozTransition' : 'transitionend'
|
||||
, 'OTransition' : 'oTransitionEnd otransitionend'
|
||||
, 'transition' : 'transitionend'
|
||||
}
|
||||
|
||||
for (var name in transEndEventNames) {
|
||||
if (el.style[name] !== undefined) {
|
||||
return { end: transEndEventNames[name] }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// http://blog.alexmaccaw.com/css-transitions
|
||||
$.fn.emulateTransitionEnd = function (duration) {
|
||||
var called = false, $el = this
|
||||
$(this).one($.support.transition.end, function () { called = true })
|
||||
var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
|
||||
setTimeout(callback, duration)
|
||||
return this
|
||||
}
|
||||
|
||||
$(function () {
|
||||
$.support.transition = transitionEnd()
|
||||
})
|
||||
|
||||
}(window.jQuery);
|
||||
|
||||
/* ========================================================================
|
||||
* Bootstrap: carousel.js v3.0.0
|
||||
* http://twbs.github.com/bootstrap/javascript.html#carousel
|
||||
* ========================================================================
|
||||
* Copyright 2012 Twitter, Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
* ======================================================================== */
|
||||
|
||||
|
||||
+function ($) { "use strict";
|
||||
|
||||
// CAROUSEL CLASS DEFINITION
|
||||
// =========================
|
||||
var Carousel = function (element, options) {
|
||||
this.$element = $(element)
|
||||
this.$indicators = this.$element.find('.carousel-indicators')
|
||||
this.options = options
|
||||
this.paused =
|
||||
this.sliding =
|
||||
this.interval =
|
||||
this.$active =
|
||||
this.$items = null
|
||||
|
||||
this.options.pause == 'hover' && this.$element
|
||||
.on('mouseenter', $.proxy(this.pause, this))
|
||||
.on('mouseleave', $.proxy(this.cycle, this))
|
||||
}
|
||||
|
||||
Carousel.DEFAULTS = {
|
||||
interval: 5000
|
||||
, pause: 'hover'
|
||||
, wrap: true
|
||||
}
|
||||
|
||||
Carousel.prototype.cycle = function (e) {
|
||||
e || (this.paused = false)
|
||||
|
||||
this.interval && clearInterval(this.interval)
|
||||
|
||||
this.options.interval
|
||||
&& !this.paused
|
||||
&& (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
Carousel.prototype.getActiveIndex = function () {
|
||||
this.$active = this.$element.find('.item.active')
|
||||
this.$items = this.$active.parent().children()
|
||||
|
||||
return this.$items.index(this.$active)
|
||||
}
|
||||
|
||||
Carousel.prototype.to = function (pos) {
|
||||
var that = this
|
||||
var activeIndex = this.getActiveIndex()
|
||||
|
||||
if (pos > (this.$items.length - 1) || pos < 0) return
|
||||
|
||||
if (this.sliding) return this.$element.one('slid', function () { that.to(pos) })
|
||||
if (activeIndex == pos) return this.pause().cycle()
|
||||
|
||||
return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))
|
||||
}
|
||||
|
||||
Carousel.prototype.pause = function (e) {
|
||||
e || (this.paused = true)
|
||||
|
||||
//if (this.$element.find('.next, .prev').length && $.support.transition.end) {
|
||||
//this.$element.trigger($.support.transition.end)
|
||||
this.cycle(true)
|
||||
//}
|
||||
|
||||
this.interval = clearInterval(this.interval)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
Carousel.prototype.next = function () {
|
||||
if (this.sliding) return
|
||||
return this.slide('next')
|
||||
}
|
||||
|
||||
Carousel.prototype.prev = function () {
|
||||
if (this.sliding) return
|
||||
return this.slide('prev')
|
||||
}
|
||||
|
||||
Carousel.prototype.slide = function (type, next) {
|
||||
var $active = this.$element.find('.item.active')
|
||||
var $next = next || $active[type]()
|
||||
var isCycling = this.interval
|
||||
var direction = type == 'next' ? 'left' : 'right'
|
||||
var fallback = type == 'next' ? 'first' : 'last'
|
||||
var that = this
|
||||
|
||||
if (!$next.length) {
|
||||
if (!this.options.wrap) return
|
||||
$next = this.$element.find('.item')[fallback]()
|
||||
}
|
||||
|
||||
this.sliding = true
|
||||
|
||||
isCycling && this.pause()
|
||||
|
||||
var e = $.Event('slide.bs.carousel', { relatedTarget: $next[0], direction: direction })
|
||||
|
||||
if ($next.hasClass('active')) return
|
||||
|
||||
if (this.$indicators.length) {
|
||||
this.$indicators.find('.active').removeClass('active')
|
||||
this.$element.one('slid', function () {
|
||||
var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])
|
||||
$nextIndicator && $nextIndicator.addClass('active')
|
||||
})
|
||||
}
|
||||
|
||||
var $this = this.$element.hasClass('header_effect');
|
||||
if ($.support.transition && this.$element.hasClass('slide')) {
|
||||
this.$element.trigger(e)
|
||||
if (e.isDefaultPrevented()) return
|
||||
var timer;
|
||||
|
||||
|
||||
timer = setTimeout(function(){
|
||||
checkSliderForHeaderStyle($next, $this);
|
||||
$next.addClass(type)
|
||||
$next[0].offsetWidth // force reflow
|
||||
$active.addClass(direction)
|
||||
$next.addClass(direction)
|
||||
$active
|
||||
.one($.support.transition.end, function () {
|
||||
$next.removeClass([type, direction].join(' ')).removeClass('inactive').addClass('active')
|
||||
$active.removeClass(['active', direction].join(' ')).addClass('inactive')
|
||||
that.sliding = false
|
||||
setTimeout(function () { that.$element.trigger('slid') }, 0)
|
||||
})
|
||||
.emulateTransitionEnd(600)
|
||||
clearTimeout(timer);
|
||||
}, 1000);
|
||||
} else {
|
||||
this.$element.trigger(e)
|
||||
if (e.isDefaultPrevented()) return
|
||||
$active.removeClass('active')
|
||||
$next.addClass('active')
|
||||
this.sliding = false
|
||||
this.$element.trigger('slid')
|
||||
}
|
||||
|
||||
isCycling && this.cycle()
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
|
||||
// CAROUSEL PLUGIN DEFINITION
|
||||
// ==========================
|
||||
|
||||
var old = $.fn.carousel
|
||||
|
||||
$.fn.carousel = function (option) {
|
||||
return this.each(function () {
|
||||
var $this = $(this)
|
||||
var data = $this.data('bs.carousel')
|
||||
var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
||||
var action = typeof option == 'string' ? option : options.slide
|
||||
|
||||
if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
|
||||
if (typeof option == 'number') data.to(option)
|
||||
else if (action) data[action]()
|
||||
else if (options.interval) data.pause().cycle()
|
||||
})
|
||||
}
|
||||
|
||||
$.fn.carousel.Constructor = Carousel
|
||||
|
||||
|
||||
// CAROUSEL NO CONFLICT
|
||||
// ====================
|
||||
|
||||
$.fn.carousel.noConflict = function () {
|
||||
$.fn.carousel = old
|
||||
return this
|
||||
}
|
||||
|
||||
|
||||
// CAROUSEL DATA-API
|
||||
// =================
|
||||
|
||||
$(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) {
|
||||
var $this = $(this), href
|
||||
var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
|
||||
var options = $.extend({}, $target.data(), $this.data())
|
||||
var slideIndex = $this.attr('data-slide-to')
|
||||
if (slideIndex) options.interval = false
|
||||
|
||||
$target.carousel(options)
|
||||
|
||||
if (slideIndex = $this.attr('data-slide-to')) {
|
||||
$target.data('bs.carousel').to(slideIndex)
|
||||
}
|
||||
|
||||
e.preventDefault()
|
||||
})
|
||||
|
||||
$(window).on('load', function () {
|
||||
$('[data-ride="carousel"]').each(function () {
|
||||
var $carousel = $(this)
|
||||
$carousel.carousel($carousel.data())
|
||||
})
|
||||
})
|
||||
|
||||
}(window.jQuery);
|
||||
@@ -0,0 +1,752 @@
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Crete Round';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url(https://fonts.gstatic.com/s/creteround/v15/55xqey1sJNPjPiv1ZZZrxK1-4bHoLlxN.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Crete Round';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url(https://fonts.gstatic.com/s/creteround/v15/55xqey1sJNPjPiv1ZZZrxK1-4b_oLg.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Crete Round';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://fonts.gstatic.com/s/creteround/v15/55xoey1sJNPjPiv1ZZZrxK110b3wKg.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Crete Round';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://fonts.gstatic.com/s/creteround/v15/55xoey1sJNPjPiv1ZZZrxK170b0.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 100;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4QIFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 100;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4SYFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 100;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4QoFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 100;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4Q4FqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 100;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4TYFq.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 200;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4QIFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 200;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4SYFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 200;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4QoFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 200;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4Q4FqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 200;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4TYFq.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 300;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4QIFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 300;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4SYFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 300;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4QoFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 300;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4Q4FqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 300;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4TYFq.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4QIFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4SYFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4QoFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4Q4FqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4TYFq.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 500;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4QIFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 500;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4SYFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 500;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4QoFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 500;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4Q4FqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 500;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4TYFq.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 600;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4QIFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 600;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4SYFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 600;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4QoFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 600;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4Q4FqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 600;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4TYFq.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4QIFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4SYFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4QoFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4Q4FqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4TYFq.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 800;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4QIFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 800;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4SYFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 800;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4QoFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 800;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4Q4FqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 800;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4TYFq.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 900;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4QIFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 900;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4SYFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 900;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4QoFqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 900;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4Q4FqPfE.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: italic;
|
||||
font-weight: 900;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptsg8zYS_SKggPNyCg4TYFq.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 100;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCAIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 100;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCkIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 100;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCIIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 100;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 100;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 200;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCAIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 200;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCkIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 200;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCIIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 200;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 200;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCAIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCkIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCIIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCAIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCkIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCIIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCAIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCkIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCIIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCAIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCkIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCIIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCAIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCkIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCIIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCAIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCkIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCIIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCAIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCkIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCIIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@@ -0,0 +1,380 @@
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* greek-ext */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format('woff2');
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
/* greek */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format('woff2');
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
||||
}
|
||||
/* hebrew */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format('woff2');
|
||||
unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
|
||||
}
|
||||
/* math */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format('woff2');
|
||||
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
|
||||
}
|
||||
/* symbols */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format('woff2');
|
||||
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* greek-ext */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format('woff2');
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
/* greek */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format('woff2');
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
||||
}
|
||||
/* hebrew */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format('woff2');
|
||||
unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
|
||||
}
|
||||
/* math */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format('woff2');
|
||||
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
|
||||
}
|
||||
/* symbols */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format('woff2');
|
||||
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v43/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3GUBGEe.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3iUBGEe.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* greek-ext */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3CUBGEe.woff2) format('woff2');
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
/* greek */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3-UBGEe.woff2) format('woff2');
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
||||
}
|
||||
/* math */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMawCUBGEe.woff2) format('woff2');
|
||||
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
|
||||
}
|
||||
/* symbols */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMaxKUBGEe.woff2) format('woff2');
|
||||
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3OUBGEe.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3KUBGEe.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3GUBGEe.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3iUBGEe.woff2) format('woff2');
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* greek-ext */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3CUBGEe.woff2) format('woff2');
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
/* greek */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3-UBGEe.woff2) format('woff2');
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
||||
}
|
||||
/* math */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMawCUBGEe.woff2) format('woff2');
|
||||
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
|
||||
}
|
||||
/* symbols */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMaxKUBGEe.woff2) format('woff2');
|
||||
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3OUBGEe.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3KUBGEe.woff2) format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@@ -0,0 +1,153 @@
|
||||
function ajaxSubmitCommentForm(){
|
||||
"use strict";
|
||||
|
||||
var options = {
|
||||
success: function(){
|
||||
$j("#commentform textarea").val("");
|
||||
$j("#commentform .success p").text("Comment has been sent!");
|
||||
}
|
||||
};
|
||||
|
||||
$j('#commentform').submit(function() {
|
||||
$j(this).find('input[type="submit"]').next('.success').remove();
|
||||
$j(this).find('input[type="submit"]').after('<div class="success"><p></p></div>');
|
||||
$j(this).ajaxSubmit(options);
|
||||
return false;
|
||||
});
|
||||
}
|
||||
var header_height = 100;
|
||||
var min_header_height_scroll = 57;
|
||||
var min_header_height_fixed_hidden = 50;
|
||||
var min_header_height_sticky = 60;
|
||||
var scroll_amount_for_sticky = 85;
|
||||
var content_line_height = 60;
|
||||
var header_bottom_border_weight = 1;
|
||||
var scroll_amount_for_fixed_hiding = 200;
|
||||
var paspartu_width_init = 0.02;
|
||||
var search_header_height = 50;
|
||||
|
||||
var logo_height = 130; // stockholm logo height
|
||||
var logo_width = 280; // stockholm logo width
|
||||
logo_height = 0;
|
||||
logo_width = 0;
|
||||
header_top_height = 0;
|
||||
|
||||
|
||||
|
||||
var loading_text;
|
||||
loading_text = 'Loading new posts...';
|
||||
var finished_text;
|
||||
finished_text = 'No more posts';
|
||||
|
||||
var piechartcolor;
|
||||
piechartcolor = "#e6ae48";
|
||||
piechartcolor = "#ca0d38";
|
||||
|
||||
var geocoder;
|
||||
var map;
|
||||
|
||||
function initialize() {
|
||||
"use strict";
|
||||
// Create an array of styles.
|
||||
var mapStyles = [
|
||||
{
|
||||
stylers: [
|
||||
{hue: "#393939" },
|
||||
{saturation: "-100"},
|
||||
{lightness: "-60"},
|
||||
{gamma: 1}
|
||||
]
|
||||
}
|
||||
];
|
||||
var qodeMapType = new google.maps.StyledMapType(mapStyles,
|
||||
{name: "Qode Map"});
|
||||
|
||||
geocoder = new google.maps.Geocoder();
|
||||
var latlng = new google.maps.LatLng(-34.397, 150.644);
|
||||
var myOptions = {
|
||||
zoom: 3,
|
||||
scrollwheel: false,
|
||||
center: latlng,
|
||||
zoomControl: true,
|
||||
zoomControlOptions: {
|
||||
style: google.maps.ZoomControlStyle.SMALL,
|
||||
position: google.maps.ControlPosition.RIGHT_CENTER
|
||||
},
|
||||
scaleControl: false,
|
||||
scaleControlOptions: {
|
||||
position: google.maps.ControlPosition.LEFT_CENTER
|
||||
},
|
||||
streetViewControl: false,
|
||||
streetViewControlOptions: {
|
||||
position: google.maps.ControlPosition.LEFT_CENTER
|
||||
},
|
||||
panControl: false,
|
||||
panControlOptions: {
|
||||
position: google.maps.ControlPosition.LEFT_CENTER
|
||||
},
|
||||
mapTypeControl: false,
|
||||
mapTypeControlOptions: {
|
||||
mapTypeIds: [google.maps.MapTypeId.ROADMAP, 'qode_style'],
|
||||
style: google.maps.MapTypeControlStyle.HORIZONTAL_BAR,
|
||||
position: google.maps.ControlPosition.LEFT_CENTER
|
||||
},
|
||||
mapTypeId: 'qode_style'
|
||||
};
|
||||
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
|
||||
map.mapTypes.set('qode_style', qodeMapType);
|
||||
}
|
||||
|
||||
function codeAddress(data) {
|
||||
"use strict";
|
||||
|
||||
if (data === '')
|
||||
return;
|
||||
|
||||
var contentString = '<div id="content"><div id="siteNotice"></div><div id="bodyContent"><p>'+data+'</p></div></div>';
|
||||
var infowindow = new google.maps.InfoWindow({
|
||||
content: contentString
|
||||
});
|
||||
geocoder.geocode( { 'address': data}, function(results, status) {
|
||||
if (status === google.maps.GeocoderStatus.OK) {
|
||||
map.setCenter(results[0].geometry.location);
|
||||
var marker = new google.maps.Marker({
|
||||
map: map,
|
||||
position: results[0].geometry.location,
|
||||
icon: 'http://demo.select-themes.com/stockholm1/wp-content/uploads/2014/08/pin.png',
|
||||
title: data['store_title']
|
||||
});
|
||||
google.maps.event.addListener(marker, 'click', function() {
|
||||
infowindow.open(map,marker);
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
var $j = jQuery.noConflict();
|
||||
|
||||
$j(document).ready(function() {
|
||||
"use strict";
|
||||
|
||||
showContactMap();
|
||||
});
|
||||
|
||||
function showContactMap() {
|
||||
"use strict";
|
||||
|
||||
if($j("#map_canvas").length > 0 && typeof google === 'object'){
|
||||
initialize();
|
||||
codeAddress("");
|
||||
codeAddress("");
|
||||
codeAddress("");
|
||||
codeAddress("");
|
||||
codeAddress("198 West 21th Street, New York, NY 10010");
|
||||
}
|
||||
}
|
||||
|
||||
var no_ajax_pages = [];
|
||||
var qode_root = 'https://stadtbote.de/';
|
||||
var theme_root = 'https://stadtbote.de/wp-content/themes/stockholm';
|
||||
var header_style_admin = "";
|
||||
if(typeof no_ajax_obj !== 'undefined') {
|
||||
no_ajax_pages = no_ajax_obj.no_ajax_pages;
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
/*! This file is auto-generated */
|
||||
(()=>{"use strict";var e={d:(t,d)=>{for(var o in d)e.o(d,o)&&!e.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:d[o]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t)},t={};function d(e){"undefined"!=typeof document&&("complete"!==document.readyState&&"interactive"!==document.readyState?document.addEventListener("DOMContentLoaded",e):e())}e.d(t,{default:()=>d}),(window.wp=window.wp||{}).domReady=t.default})();
|
||||
@@ -0,0 +1,5 @@
|
||||
/*
|
||||
Doubletaptogo
|
||||
AUTHOR: Osvaldas Valutis, www.osvaldas.info
|
||||
*/
|
||||
;(function($,window,document,undefined){$.fn.doubleTapToGo=function(params){if(!('ontouchstart'in window)&&!window.navigator.msPointerEnabled&&!navigator.userAgent.toLowerCase().match(/windows phone os 7/i)){return false}this.each(function(){var curItem=false;$(this).on('click',function(e){var item=$(this);if(item[0]!==curItem[0]){e.preventDefault();curItem=item}});$(document).on('click touchstart MSPointerDown',function(e){var resetItem=true,parents=$(e.target).parents();for(var i=0;i<parents.length;i++){if(parents[i]===curItem[0]){resetItem=false}}if(resetItem){curItem=false}})});return this}})(jQuery,window,document);
|
||||
|
After Width: | Height: | Size: 68 B |
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
Easy pie chart is a jquery plugin to display simple animated pie charts for only one value
|
||||
Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
|
||||
and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
|
||||
Built on top of the jQuery library (http://jquery.com)
|
||||
@source: http://github.com/rendro/easy-pie-chart/
|
||||
@autor: Robert Fleischmann
|
||||
@version: 1.0.1
|
||||
Inspired by: http://dribbble.com/shots/631074-Simple-Pie-Charts-II?list=popular&offset=210
|
||||
Thanks to Philip Thrasher for the jquery plugin boilerplate for coffee script
|
||||
*/
|
||||
(function(){(function($){$.easyPieChart=function(el,options){var addScaleLine,animateLine,drawLine,easeInOutQuad,renderBackground,renderScale,renderTrack,_this=this;this.el=el;this.$el=$(el);this.$el.data("easyPieChart",this);this.init=function(){var percent;_this.options=$.extend({},$.easyPieChart.defaultOptions,options);percent=parseInt(_this.$el.data('percent'),10);_this.percentage=0;_this.canvas=$("<canvas width='"+_this.options.size+"' height='"+_this.options.size+"'></canvas>").get(0);_this.$el.append(_this.canvas);if(typeof G_vmlCanvasManager!=="undefined"&&G_vmlCanvasManager!==null){G_vmlCanvasManager.initElement(_this.canvas)}_this.ctx=_this.canvas.getContext('2d');if(window.devicePixelRatio>1.5){$(_this.canvas).css({width:_this.options.size,height:_this.options.size});_this.canvas.width*=2;_this.canvas.height*=2;_this.ctx.scale(2,2)}_this.ctx.translate(_this.options.size/2,_this.options.size/2);_this.$el.addClass('easyPieChart');_this.$el.css({width:_this.options.size,height:_this.options.size,lineHeight:""+_this.options.size+"px"});_this.update(percent);return _this};this.update=function(percent){if(_this.options.animate===false){return drawLine(percent)}else{return animateLine(_this.percentage,percent)}};renderScale=function(){var i,_i,_results;_this.ctx.fillStyle=_this.options.scaleColor;_this.ctx.lineWidth=1;_results=[];for(i=_i=0;_i<=24;i=++_i){_results.push(addScaleLine(i))}return _results};addScaleLine=function(i){var offset;offset=i%6===0?0:_this.options.size*0.017;_this.ctx.save();_this.ctx.rotate(i*Math.PI/12);_this.ctx.fillRect(_this.options.size/2-offset,0,-_this.options.size*0.05+offset,1);return _this.ctx.restore()};renderTrack=function(){var offset;offset=_this.options.size/2-_this.options.lineWidth/2;if(_this.options.scaleColor!==false){offset-=_this.options.size*0.08}_this.ctx.beginPath();_this.ctx.arc(0,0,offset,0,Math.PI*2,true);_this.ctx.closePath();_this.ctx.strokeStyle=_this.options.trackColor;_this.ctx.lineWidth=_this.options.lineWidth;return _this.ctx.stroke()};renderBackground=function(){if(_this.options.scaleColor!==false){renderScale()}if(_this.options.trackColor!==false){return renderTrack()}};drawLine=function(percent){var offset;renderBackground();_this.ctx.strokeStyle=$.isFunction(_this.options.barColor)?_this.options.barColor(percent):_this.options.barColor;_this.ctx.lineCap=_this.options.lineCap;_this.ctx.lineWidth=_this.options.lineWidth;offset=_this.options.size/2-_this.options.lineWidth/2;if(_this.options.scaleColor!==false){offset-=_this.options.size*0.08}_this.ctx.save();_this.ctx.rotate(-Math.PI/2);_this.ctx.beginPath();_this.ctx.arc(0,0,offset,0,Math.PI*2*percent/100,false);_this.ctx.stroke();return _this.ctx.restore()};animateLine=function(from,to){var currentStep,fps,steps;fps=30;steps=fps*_this.options.animate/1000;currentStep=0;_this.options.onStart.call(_this);_this.percentage=to;if(_this.animation){clearInterval(_this.animation);_this.animation=false}return _this.animation=setInterval(function(){_this.ctx.clearRect(-_this.options.size/2,-_this.options.size/2,_this.options.size,_this.options.size);renderBackground.call(_this);drawLine.call(_this,[easeInOutQuad(currentStep,from,to-from,steps)]);currentStep++;if((currentStep/steps)>1){clearInterval(_this.animation);_this.animation=false;return _this.options.onStop.call(_this)}},1000/fps)};easeInOutQuad=function(t,b,c,d){var easeIn,easing;easeIn=function(t){return Math.pow(t,2)};easing=function(t){if(t<1){return easeIn(t)}else{return 2-easeIn((t/2)*-2+2)}};t/=d/2;return c/2*easing(t)+b};return this.init()};$.easyPieChart.defaultOptions={barColor:'#ef1e25',trackColor:'#f2f2f2',scaleColor:'#dfe0e0',lineCap:'round',size:110,lineWidth:3,animate:false,onStart:$.noop,onStop:$.noop};$.fn.easyPieChart=function(options){return $.each(this,function(i,el){var $el;$el=$(el);if(!$el.data('easyPieChart')){return $el.data('easyPieChart',new $.easyPieChart(el,options))}})};return void 0})(jQuery)}).call(this);
|
||||
@@ -0,0 +1,9 @@
|
||||
/*!
|
||||
* jQuery UI Effects Fade 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
!function(e){"use strict";"function"==typeof define&&define.amd?define(["jquery","../version","../effect"],e):e(jQuery)}(function(n){"use strict";return n.effects.define("fade","toggle",function(e,t){var i="show"===e.mode;n(this).css("opacity",i?0:1).animate({opacity:i?1:0},{queue:!1,duration:e.duration,easing:e.easing,complete:t})})});
|
||||
@@ -0,0 +1,9 @@
|
||||
/*!
|
||||
* jQuery UI Effects Scale 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
!function(e){"use strict";"function"==typeof define&&define.amd?define(["jquery","../version","../effect","./effect-size"],e):e(jQuery)}(function(n){"use strict";return n.effects.define("scale",function(e,t){var f=n(this),i=e.mode,i=parseInt(e.percent,10)||(0===parseInt(e.percent,10)||"effect"!==i?0:100),f=n.extend(!0,{from:n.effects.scaledDimensions(f),to:n.effects.scaledDimensions(f,i,e.direction||"both"),origin:e.origin||["middle","center"]},e);e.fade&&(f.from.opacity=1,f.to.opacity=0),n.effects.effect.size.call(this,f,t)})});
|
||||
@@ -0,0 +1,9 @@
|
||||
/*!
|
||||
* jQuery UI Effects Size 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
!function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery","../version","../effect"],t):t(jQuery)}(function(l){"use strict";return l.effects.define("size",function(o,e){var f,i=l(this),t=["fontSize"],s=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],n=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],r=o.mode,h="effect"!==r,c=o.scale||"both",d=o.origin||["middle","center"],a=i.css("position"),g=i.position(),u=l.effects.scaledDimensions(i),m=o.from||u,y=o.to||l.effects.scaledDimensions(i,0);l.effects.createPlaceholder(i),"show"===r&&(r=m,m=y,y=r),f={from:{y:m.height/u.height,x:m.width/u.width},to:{y:y.height/u.height,x:y.width/u.width}},"box"!==c&&"both"!==c||(f.from.y!==f.to.y&&(m=l.effects.setTransition(i,s,f.from.y,m),y=l.effects.setTransition(i,s,f.to.y,y)),f.from.x!==f.to.x&&(m=l.effects.setTransition(i,n,f.from.x,m),y=l.effects.setTransition(i,n,f.to.x,y))),"content"!==c&&"both"!==c||f.from.y!==f.to.y&&(m=l.effects.setTransition(i,t,f.from.y,m),y=l.effects.setTransition(i,t,f.to.y,y)),d&&(r=l.effects.getBaseline(d,u),m.top=(u.outerHeight-m.outerHeight)*r.y+g.top,m.left=(u.outerWidth-m.outerWidth)*r.x+g.left,y.top=(u.outerHeight-y.outerHeight)*r.y+g.top,y.left=(u.outerWidth-y.outerWidth)*r.x+g.left),delete m.outerHeight,delete m.outerWidth,i.css(m),"content"!==c&&"both"!==c||(s=s.concat(["marginTop","marginBottom"]).concat(t),n=n.concat(["marginLeft","marginRight"]),i.find("*[width]").each(function(){var t=l(this),e=l.effects.scaledDimensions(t),i={height:e.height*f.from.y,width:e.width*f.from.x,outerHeight:e.outerHeight*f.from.y,outerWidth:e.outerWidth*f.from.x},e={height:e.height*f.to.y,width:e.width*f.to.x,outerHeight:e.height*f.to.y,outerWidth:e.width*f.to.x};f.from.y!==f.to.y&&(i=l.effects.setTransition(t,s,f.from.y,i),e=l.effects.setTransition(t,s,f.to.y,e)),f.from.x!==f.to.x&&(i=l.effects.setTransition(t,n,f.from.x,i),e=l.effects.setTransition(t,n,f.to.x,e)),h&&l.effects.saveStyle(t),t.css(i),t.animate(e,o.duration,o.easing,function(){h&&l.effects.restoreStyle(t)})})),i.animate(y,{queue:!1,duration:o.duration,easing:o.easing,complete:function(){var t=i.offset();0===y.opacity&&i.css("opacity",m.opacity),h||(i.css("position","static"===a?"relative":a).offset(t),l.effects.saveStyle(i)),e()}})})});
|
||||
@@ -0,0 +1,9 @@
|
||||
/*!
|
||||
* jQuery UI Effects Slide 1.13.3
|
||||
* https://jqueryui.com
|
||||
*
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* https://jquery.org/license
|
||||
*/
|
||||
!function(e){"use strict";"function"==typeof define&&define.amd?define(["jquery","../version","../effect"],e):e(jQuery)}(function(d){"use strict";return d.effects.define("slide","show",function(e,t){var i,o,n=d(this),c={up:["bottom","top"],down:["top","bottom"],left:["right","left"],right:["left","right"]},s=e.mode,f=e.direction||"left",l="up"===f||"down"===f?"top":"left",p="up"===f||"left"===f,r=e.distance||n["top"==l?"outerHeight":"outerWidth"](!0),u={};d.effects.createPlaceholder(n),i=n.cssClip(),o=n.position()[l],u[l]=(p?-1:1)*r+o,u.clip=n.cssClip(),u.clip[c[f][1]]=u.clip[c[f][0]],"show"===s&&(n.cssClip(u.clip),n.css(l,u[l]),u.clip=i,u[l]=o),n.animate(u,{queue:!1,duration:e.duration,easing:e.easing,complete:t})})});
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 8.6 KiB |
|
After Width: | Height: | Size: 6.3 KiB |
|
After Width: | Height: | Size: 647 B |
@@ -0,0 +1 @@
|
||||
body .gform_wrapper.gf_reset_wrapper,body .gform_wrapper.gf_reset_wrapper button,body .gform_wrapper.gf_reset_wrapper caption,body .gform_wrapper.gf_reset_wrapper div,body .gform_wrapper.gf_reset_wrapper fieldset,body .gform_wrapper.gf_reset_wrapper form,body .gform_wrapper.gf_reset_wrapper h1,body .gform_wrapper.gf_reset_wrapper h2,body .gform_wrapper.gf_reset_wrapper h3,body .gform_wrapper.gf_reset_wrapper h4,body .gform_wrapper.gf_reset_wrapper h5,body .gform_wrapper.gf_reset_wrapper h6,body .gform_wrapper.gf_reset_wrapper iframe,body .gform_wrapper.gf_reset_wrapper img,body .gform_wrapper.gf_reset_wrapper input[type=button],body .gform_wrapper.gf_reset_wrapper input[type=email],body .gform_wrapper.gf_reset_wrapper input[type=image],body .gform_wrapper.gf_reset_wrapper input[type=number],body .gform_wrapper.gf_reset_wrapper input[type=password],body .gform_wrapper.gf_reset_wrapper input[type=submit],body .gform_wrapper.gf_reset_wrapper input[type=tel],body .gform_wrapper.gf_reset_wrapper input[type=text],body .gform_wrapper.gf_reset_wrapper input[type=url],body .gform_wrapper.gf_reset_wrapper label,body .gform_wrapper.gf_reset_wrapper legend,body .gform_wrapper.gf_reset_wrapper li,body .gform_wrapper.gf_reset_wrapper ol,body .gform_wrapper.gf_reset_wrapper p,body .gform_wrapper.gf_reset_wrapper select,body .gform_wrapper.gf_reset_wrapper span,body .gform_wrapper.gf_reset_wrapper table,body .gform_wrapper.gf_reset_wrapper tbody,body .gform_wrapper.gf_reset_wrapper td,body .gform_wrapper.gf_reset_wrapper textarea,body .gform_wrapper.gf_reset_wrapper tfoot,body .gform_wrapper.gf_reset_wrapper th,body .gform_wrapper.gf_reset_wrapper thead,body .gform_wrapper.gf_reset_wrapper tr,body .gform_wrapper.gf_reset_wrapper ul{margin:0;padding:0;border:0;outline:0}body .gform_wrapper.gf_reset_wrapper button,body .gform_wrapper.gf_reset_wrapper caption,body .gform_wrapper.gf_reset_wrapper div,body .gform_wrapper.gf_reset_wrapper fieldset,body .gform_wrapper.gf_reset_wrapper form,body .gform_wrapper.gf_reset_wrapper iframe,body .gform_wrapper.gf_reset_wrapper img,body .gform_wrapper.gf_reset_wrapper input[type=button],body .gform_wrapper.gf_reset_wrapper input[type=email],body .gform_wrapper.gf_reset_wrapper input[type=image],body .gform_wrapper.gf_reset_wrapper input[type=number],body .gform_wrapper.gf_reset_wrapper input[type=password],body .gform_wrapper.gf_reset_wrapper input[type=submit],body .gform_wrapper.gf_reset_wrapper input[type=tel],body .gform_wrapper.gf_reset_wrapper input[type=text],body .gform_wrapper.gf_reset_wrapper input[type=url],body .gform_wrapper.gf_reset_wrapper label,body .gform_wrapper.gf_reset_wrapper legend,body .gform_wrapper.gf_reset_wrapper li,body .gform_wrapper.gf_reset_wrapper ol,body .gform_wrapper.gf_reset_wrapper p,body .gform_wrapper.gf_reset_wrapper select,body .gform_wrapper.gf_reset_wrapper span,body .gform_wrapper.gf_reset_wrapper table,body .gform_wrapper.gf_reset_wrapper tbody,body .gform_wrapper.gf_reset_wrapper td,body .gform_wrapper.gf_reset_wrapper textarea,body .gform_wrapper.gf_reset_wrapper tfoot,body .gform_wrapper.gf_reset_wrapper th,body .gform_wrapper.gf_reset_wrapper thead,body .gform_wrapper.gf_reset_wrapper tr,body .gform_wrapper.gf_reset_wrapper ul{font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;line-height:1;font-weight:400}body .gform_wrapper.gf_reset_wrapper div,body .gform_wrapper.gf_reset_wrapper p,body .gform_wrapper.gf_reset_wrapper span{line-height:1.8}body .gform_wrapper.gf_reset_wrapper fieldset,body .gform_wrapper.gf_reset_wrapper img{border:0}body .gform_wrapper.gf_reset_wrapper li,body .gform_wrapper.gf_reset_wrapper ol,body .gform_wrapper.gf_reset_wrapper ul{list-style:none}body .gform_wrapper.gf_reset_wrapper a img{border:none}body .gform_wrapper.gf_reset_wrapper :focus{outline:0}
|
||||
@@ -0,0 +1,2 @@
|
||||
/*! This file is auto-generated */
|
||||
(()=>{"use strict";var t={d:(e,n)=>{for(var r in n)t.o(n,r)&&!t.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:n[r]})},o:(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r:t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})}},e={};t.r(e),t.d(e,{actions:()=>P,addAction:()=>A,addFilter:()=>m,applyFilters:()=>w,applyFiltersAsync:()=>I,createHooks:()=>h,currentAction:()=>x,currentFilter:()=>T,defaultHooks:()=>f,didAction:()=>j,didFilter:()=>z,doAction:()=>g,doActionAsync:()=>k,doingAction:()=>O,doingFilter:()=>S,filters:()=>Z,hasAction:()=>_,hasFilter:()=>v,removeAction:()=>p,removeAllActions:()=>F,removeAllFilters:()=>b,removeFilter:()=>y});const n=function(t){return"string"!=typeof t||""===t?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(t)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)};const r=function(t){return"string"!=typeof t||""===t?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(t)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(t)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)};const o=function(t,e){return function(o,i,s,c=10){const l=t[e];if(!r(o))return;if(!n(i))return;if("function"!=typeof s)return void console.error("The hook callback must be a function.");if("number"!=typeof c)return void console.error("If specified, the hook priority must be a number.");const a={callback:s,priority:c,namespace:i};if(l[o]){const t=l[o].handlers;let e;for(e=t.length;e>0&&!(c>=t[e-1].priority);e--);e===t.length?t[e]=a:t.splice(e,0,a),l.__current.forEach((t=>{t.name===o&&t.currentIndex>=e&&t.currentIndex++}))}else l[o]={handlers:[a],runs:0};"hookAdded"!==o&&t.doAction("hookAdded",o,i,s,c)}};const i=function(t,e,o=!1){return function(i,s){const c=t[e];if(!r(i))return;if(!o&&!n(s))return;if(!c[i])return 0;let l=0;if(o)l=c[i].handlers.length,c[i]={runs:c[i].runs,handlers:[]};else{const t=c[i].handlers;for(let e=t.length-1;e>=0;e--)t[e].namespace===s&&(t.splice(e,1),l++,c.__current.forEach((t=>{t.name===i&&t.currentIndex>=e&&t.currentIndex--})))}return"hookRemoved"!==i&&t.doAction("hookRemoved",i,s),l}};const s=function(t,e){return function(n,r){const o=t[e];return void 0!==r?n in o&&o[n].handlers.some((t=>t.namespace===r)):n in o}};const c=function(t,e,n,r){return function(o,...i){const s=t[e];s[o]||(s[o]={handlers:[],runs:0}),s[o].runs++;const c=s[o].handlers;if(!c||!c.length)return n?i[0]:void 0;const l={name:o,currentIndex:0};return(r?async function(){try{s.__current.add(l);let t=n?i[0]:void 0;for(;l.currentIndex<c.length;){const e=c[l.currentIndex];t=await e.callback.apply(null,i),n&&(i[0]=t),l.currentIndex++}return n?t:void 0}finally{s.__current.delete(l)}}:function(){try{s.__current.add(l);let t=n?i[0]:void 0;for(;l.currentIndex<c.length;){t=c[l.currentIndex].callback.apply(null,i),n&&(i[0]=t),l.currentIndex++}return n?t:void 0}finally{s.__current.delete(l)}})()}};const l=function(t,e){return function(){var n;const r=t[e],o=Array.from(r.__current);return null!==(n=o.at(-1)?.name)&&void 0!==n?n:null}};const a=function(t,e){return function(n){const r=t[e];return void 0===n?r.__current.size>0:Array.from(r.__current).some((t=>t.name===n))}};const u=function(t,e){return function(n){const o=t[e];if(r(n))return o[n]&&o[n].runs?o[n].runs:0}};class d{constructor(){this.actions=Object.create(null),this.actions.__current=new Set,this.filters=Object.create(null),this.filters.__current=new Set,this.addAction=o(this,"actions"),this.addFilter=o(this,"filters"),this.removeAction=i(this,"actions"),this.removeFilter=i(this,"filters"),this.hasAction=s(this,"actions"),this.hasFilter=s(this,"filters"),this.removeAllActions=i(this,"actions",!0),this.removeAllFilters=i(this,"filters",!0),this.doAction=c(this,"actions",!1,!1),this.doActionAsync=c(this,"actions",!1,!0),this.applyFilters=c(this,"filters",!0,!1),this.applyFiltersAsync=c(this,"filters",!0,!0),this.currentAction=l(this,"actions"),this.currentFilter=l(this,"filters"),this.doingAction=a(this,"actions"),this.doingFilter=a(this,"filters"),this.didAction=u(this,"actions"),this.didFilter=u(this,"filters")}}const h=function(){return new d},f=h(),{addAction:A,addFilter:m,removeAction:p,removeFilter:y,hasAction:_,hasFilter:v,removeAllActions:F,removeAllFilters:b,doAction:g,doActionAsync:k,applyFilters:w,applyFiltersAsync:I,currentAction:x,currentFilter:T,doingAction:O,doingFilter:S,didAction:j,didFilter:z,actions:P,filters:Z}=f;(window.wp=window.wp||{}).hooks=e})();
|
||||
@@ -0,0 +1,2 @@
|
||||
/*! This file is auto-generated */
|
||||
!function(e){"use strict";"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof module&&module.exports?module.exports=e(require("jquery")):jQuery&&!jQuery.fn.hoverIntent&&e(jQuery)}(function(f){"use strict";function u(e){return"function"==typeof e}var i,r,v={interval:100,sensitivity:6,timeout:0},s=0,a=function(e){i=e.pageX,r=e.pageY},p=function(e,t,n,o){if(Math.sqrt((n.pX-i)*(n.pX-i)+(n.pY-r)*(n.pY-r))<o.sensitivity)return t.off(n.event,a),delete n.timeoutId,n.isActive=!0,e.pageX=i,e.pageY=r,delete n.pX,delete n.pY,o.over.apply(t[0],[e]);n.pX=i,n.pY=r,n.timeoutId=setTimeout(function(){p(e,t,n,o)},o.interval)};f.fn.hoverIntent=function(e,t,n){function o(e){var u=f.extend({},e),r=f(this),v=((t=r.data("hoverIntent"))||r.data("hoverIntent",t={}),t[i]),t=(v||(t[i]=v={id:i}),v.timeoutId&&(v.timeoutId=clearTimeout(v.timeoutId)),v.event="mousemove.hoverIntent.hoverIntent"+i);"mouseenter"===e.type?v.isActive||(v.pX=u.pageX,v.pY=u.pageY,r.off(t,a).on(t,a),v.timeoutId=setTimeout(function(){p(u,r,v,d)},d.interval)):v.isActive&&(r.off(t,a),v.timeoutId=setTimeout(function(){var e,t,n,o,i;e=u,t=r,n=v,o=d.out,(i=t.data("hoverIntent"))&&delete i[n.id],o.apply(t[0],[e])},d.timeout))}var i=s++,d=f.extend({},v);f.isPlainObject(e)?(d=f.extend(d,e),u(d.out)||(d.out=d.over)):d=u(t)?f.extend(d,{over:e,out:t,selector:n}):f.extend(d,{over:e,out:e,selector:t});return this.on({"mouseenter.hoverIntent":o,"mouseleave.hoverIntent":o},d.selector)}});
|
||||
@@ -0,0 +1 @@
|
||||
function _is_msie(){var a=window.navigator.userAgent,b=a.indexOf("MSIE ");return b>0||navigator.userAgent.match(/Trident.*rv\:11\./)?!0:!1}jQuery(document).ready(function(a){a(".cq-flipbox-container").each(function(b){var c=a(this),e=a(this).data("frontbg"),f=a(this).data("backbg"),g=a(this).data("iconcolor"),h=a(this).data("iconbg"),i=a(this).data("frontcontentcolor"),j=a(this).data("backcontentcolor"),l=(a(this).data("cubedirection"),a(this).data("elementheight")||"200px"),m=parseInt(a(this).data("avatarsize")||"80",10),n=a(this).data("titlesize"),o=a(this).data("contentsize"),p=a(this).data("contentwidth"),r=(parseInt(a(this).data("rotatecube")),a(this).data("elementwidth")),s=a(this).data("elementmargin"),t=a(this).data("cardborder"),u=a(this).data("cardbordersize"),v=a(this).data("bordercolor"),w=a(this).data("backbuttonbg"),x=a(this).data("backbuttonhoverbg"),y=a(this).data("contentmargintop"),z=a(this).data("cardshape"),B=(a(this).data("avatartype"),a(this).data("frontfullimage")),D=(a(this).data("backavatar"),a(this).data("backfullimage"));""==s?c.css({"margin-top":.5*m}):c.css({margin:s});var E="."+a(this).data("face1"),F="."+a(this).data("face2");a(this).find(E).css("background-color",e),a(this).find(F).css("background-color",f),""!=B&&a(this).find(E).css({background:"url("+B+") no-repeat","background-size":"cover","background-position":"center center"}),""!=D&&a(this).find(F).css({background:"url("+D+") no-repeat","background-size":"cover","background-position":"center center"}),a(this).find(".cq-flipbox-button").css({"background-color":w}),_is_msie()&&a(this).on("mouseover",function(b){a(this).find(".cq-flipbox-flipper").css({"-ms-transform":"rotateX(0deg) rotateY(0deg)",transform:"rotateX(0deg) rotateY(0deg)"}),a(this).find(E).hide(),a(this).find(F).css({"-ms-transform":"rotateX(0deg)",transform:"rotateX(0deg)"}).show()}).on("mouseleave",function(b){a(this).find(E).show(),a(this).find(F).hide()}),a(this).find(".cq-flipbox-button").on("mouseover",function(b){a(this).css("background-color",x)}).on("mouseleave",function(b){a(this).css("background-color",w||"#3BAFDA")}),"none"!=t&&(a(this).find(E).css({"border-width":u||"1px","border-style":t,"border-color":v}),a(this).find(F).css({"border-width":u||"1px","border-style":t,"border-color":v})),c.find(".cq-flipbox-item").each(function(b){"square"==z&&a(this).css("border-radius","0")}),a(".cq-flipbox-content",a(this).find(E)).css("color",i),a(".cq-flipbox-title",a(this).find(E)).css("color",i),a(".cq-flipbox-content",a(this).find(F)).css("color",j),a(".cq-flipbox-title",a(this).find(F)).css("color",j),c.css({width:r,height:l}),c.find(".cq-flipbox-content").css({width:p,"margin-top":y,"font-size":o}),c.find("h4.cq-flipbox-title").css("font-size",n),c.find(".cq-flipbox-avatar, .cq-flipbox-cardavatar").css({color:g,"background-color":h,width:m,height:m,"font-size":.5*m+"px","line-height":m+"px"})})});
|
||||
|
After Width: | Height: | Size: 366 B |
@@ -0,0 +1,97 @@
|
||||
/*
|
||||
* jPlayer Plugin for jQuery JavaScript Library
|
||||
* http://www.jplayer.org
|
||||
*
|
||||
* Copyright (c) 2009 - 2011 Happyworm Ltd
|
||||
* Dual licensed under the MIT and GPL licenses.
|
||||
* - http://www.opensource.org/licenses/mit-license.php
|
||||
* - http://www.gnu.org/copyleft/gpl.html
|
||||
*
|
||||
* Author: Mark J Panaghiston
|
||||
* Version: 2.1.0
|
||||
* Date: 1st September 2011
|
||||
*/
|
||||
|
||||
(function(b,f){b.fn.jPlayer=function(a){var c=typeof a==="string",d=Array.prototype.slice.call(arguments,1),e=this,a=!c&&d.length?b.extend.apply(null,[!0,a].concat(d)):a;if(c&&a.charAt(0)==="_")return e;c?this.each(function(){var c=b.data(this,"jPlayer"),h=c&&b.isFunction(c[a])?c[a].apply(c,d):c;if(h!==c&&h!==f)return e=h,!1}):this.each(function(){var c=b.data(this,"jPlayer");c?c.option(a||{}):b.data(this,"jPlayer",new b.jPlayer(a,this))});return e};b.jPlayer=function(a,c){if(arguments.length){this.element=
|
||||
b(c);this.options=b.extend(!0,{},this.options,a);var d=this;this.element.bind("remove.jPlayer",function(){d.destroy()});this._init()}};b.jPlayer.emulateMethods="load play pause";b.jPlayer.emulateStatus="src readyState networkState currentTime duration paused ended playbackRate";b.jPlayer.emulateOptions="muted volume";b.jPlayer.reservedEvent="ready flashreset resize repeat error warning";b.jPlayer.event={ready:"jPlayer_ready",flashreset:"jPlayer_flashreset",resize:"jPlayer_resize",repeat:"jPlayer_repeat",
|
||||
click:"jPlayer_click",error:"jPlayer_error",warning:"jPlayer_warning",loadstart:"jPlayer_loadstart",progress:"jPlayer_progress",suspend:"jPlayer_suspend",abort:"jPlayer_abort",emptied:"jPlayer_emptied",stalled:"jPlayer_stalled",play:"jPlayer_play",pause:"jPlayer_pause",loadedmetadata:"jPlayer_loadedmetadata",loadeddata:"jPlayer_loadeddata",waiting:"jPlayer_waiting",playing:"jPlayer_playing",canplay:"jPlayer_canplay",canplaythrough:"jPlayer_canplaythrough",seeking:"jPlayer_seeking",seeked:"jPlayer_seeked",
|
||||
timeupdate:"jPlayer_timeupdate",ended:"jPlayer_ended",ratechange:"jPlayer_ratechange",durationchange:"jPlayer_durationchange",volumechange:"jPlayer_volumechange"};b.jPlayer.htmlEvent="loadstart,abort,emptied,stalled,loadedmetadata,loadeddata,canplay,canplaythrough,ratechange".split(",");b.jPlayer.pause=function(){b.each(b.jPlayer.prototype.instances,function(a,b){b.data("jPlayer").status.srcSet&&b.jPlayer("pause")})};b.jPlayer.timeFormat={showHour:!1,showMin:!0,showSec:!0,padHour:!1,padMin:!0,padSec:!0,
|
||||
sepHour:":",sepMin:":",sepSec:""};b.jPlayer.convertTime=function(a){var c=new Date(a*1E3),d=c.getUTCHours(),a=c.getUTCMinutes(),c=c.getUTCSeconds(),d=b.jPlayer.timeFormat.padHour&&d<10?"0"+d:d,a=b.jPlayer.timeFormat.padMin&&a<10?"0"+a:a,c=b.jPlayer.timeFormat.padSec&&c<10?"0"+c:c;return(b.jPlayer.timeFormat.showHour?d+b.jPlayer.timeFormat.sepHour:"")+(b.jPlayer.timeFormat.showMin?a+b.jPlayer.timeFormat.sepMin:"")+(b.jPlayer.timeFormat.showSec?c+b.jPlayer.timeFormat.sepSec:"")};b.jPlayer.uaBrowser=
|
||||
function(a){var a=a.toLowerCase(),b=/(opera)(?:.*version)?[ \/]([\w.]+)/,d=/(msie) ([\w.]+)/,e=/(mozilla)(?:.*? rv:([\w.]+))?/,a=/(webkit)[ \/]([\w.]+)/.exec(a)||b.exec(a)||d.exec(a)||a.indexOf("compatible")<0&&e.exec(a)||[];return{browser:a[1]||"",version:a[2]||"0"}};b.jPlayer.uaPlatform=function(a){var b=a.toLowerCase(),d=/(android)/,e=/(mobile)/,a=/(ipad|iphone|ipod|android|blackberry|playbook|windows ce|webos)/.exec(b)||[],b=/(ipad|playbook)/.exec(b)||!e.exec(b)&&d.exec(b)||[];a[1]&&(a[1]=a[1].replace(/\s/g,
|
||||
"_"));return{platform:a[1]||"",tablet:b[1]||""}};b.jPlayer.browser={};b.jPlayer.platform={};var i=b.jPlayer.uaBrowser(navigator.userAgent);if(i.browser)b.jPlayer.browser[i.browser]=!0,b.jPlayer.browser.version=i.version;i=b.jPlayer.uaPlatform(navigator.userAgent);if(i.platform)b.jPlayer.platform[i.platform]=!0,b.jPlayer.platform.mobile=!i.tablet,b.jPlayer.platform.tablet=!!i.tablet;b.jPlayer.prototype={count:0,version:{script:"2.1.0",needFlash:"2.1.0",flash:"unknown"},options:{swfPath:"js",solution:"html, flash",
|
||||
supplied:"mp3",preload:"metadata",volume:0.8,muted:!1,wmode:"opaque",backgroundColor:"#000000",cssSelectorAncestor:"#jp_container_1",cssSelector:{videoPlay:".jp-video-play",play:".jp-play",pause:".jp-pause",stop:".jp-stop",seekBar:".jp-seek-bar",playBar:".jp-play-bar",mute:".jp-mute",unmute:".jp-unmute",volumeBar:".jp-volume-bar",volumeBarValue:".jp-volume-bar-value",volumeMax:".jp-volume-max",currentTime:".jp-current-time",duration:".jp-duration",fullScreen:".jp-full-screen",restoreScreen:".jp-restore-screen",
|
||||
repeat:".jp-repeat",repeatOff:".jp-repeat-off",gui:".jp-gui",noSolution:".jp-no-solution"},fullScreen:!1,autohide:{restored:!1,full:!0,fadeIn:200,fadeOut:600,hold:1E3},loop:!1,repeat:function(a){a.jPlayer.options.loop?b(this).unbind(".jPlayerRepeat").bind(b.jPlayer.event.ended+".jPlayer.jPlayerRepeat",function(){b(this).jPlayer("play")}):b(this).unbind(".jPlayerRepeat")},nativeVideoControls:{},noFullScreen:{msie:/msie [0-6]/,ipad:/ipad.*?os [0-4]/,iphone:/iphone/,ipod:/ipod/,android_pad:/android [0-3](?!.*?mobile)/,
|
||||
android_phone:/android.*?mobile/,blackberry:/blackberry/,windows_ce:/windows ce/,webos:/webos/},noVolume:{ipad:/ipad/,iphone:/iphone/,ipod:/ipod/,android_pad:/android(?!.*?mobile)/,android_phone:/android.*?mobile/,blackberry:/blackberry/,windows_ce:/windows ce/,webos:/webos/,playbook:/playbook/},verticalVolume:!1,idPrefix:"jp",noConflict:"jQuery",emulateHtml:!1,errorAlerts:!1,warningAlerts:!1},optionsAudio:{size:{width:"0px",height:"0px",cssClass:""},sizeFull:{width:"0px",height:"0px",cssClass:""}},
|
||||
optionsVideo:{size:{width:"480px",height:"270px",cssClass:"jp-video-270p"},sizeFull:{width:"100%",height:"100%",cssClass:"jp-video-full"}},instances:{},status:{src:"",media:{},paused:!0,format:{},formatType:"",waitForPlay:!0,waitForLoad:!0,srcSet:!1,video:!1,seekPercent:0,currentPercentRelative:0,currentPercentAbsolute:0,currentTime:0,duration:0,readyState:0,networkState:0,playbackRate:1,ended:0},internal:{ready:!1},solution:{html:!0,flash:!0},format:{mp3:{codec:'audio/mpeg; codecs="mp3"',flashCanPlay:!0,
|
||||
media:"audio"},m4a:{codec:'audio/mp4; codecs="mp4a.40.2"',flashCanPlay:!0,media:"audio"},oga:{codec:'audio/ogg; codecs="vorbis"',flashCanPlay:!1,media:"audio"},wav:{codec:'audio/wav; codecs="1"',flashCanPlay:!1,media:"audio"},webma:{codec:'audio/webm; codecs="vorbis"',flashCanPlay:!1,media:"audio"},fla:{codec:"audio/x-flv",flashCanPlay:!0,media:"audio"},m4v:{codec:'video/mp4; codecs="avc1.42E01E, mp4a.40.2"',flashCanPlay:!0,media:"video"},ogv:{codec:'video/ogg; codecs="theora, vorbis"',flashCanPlay:!1,
|
||||
media:"video"},webmv:{codec:'video/webm; codecs="vorbis, vp8"',flashCanPlay:!1,media:"video"},flv:{codec:"video/x-flv",flashCanPlay:!0,media:"video"}},_init:function(){var a=this;this.element.empty();this.status=b.extend({},this.status);this.internal=b.extend({},this.internal);this.internal.domNode=this.element.get(0);this.formats=[];this.solutions=[];this.require={};this.htmlElement={};this.html={};this.html.audio={};this.html.video={};this.flash={};this.css={};this.css.cs={};this.css.jq={};this.ancestorJq=
|
||||
[];this.options.volume=this._limitValue(this.options.volume,0,1);b.each(this.options.supplied.toLowerCase().split(","),function(c,d){var e=d.replace(/^\s+|\s+$/g,"");if(a.format[e]){var f=!1;b.each(a.formats,function(a,b){if(e===b)return f=!0,!1});f||a.formats.push(e)}});b.each(this.options.solution.toLowerCase().split(","),function(c,d){var e=d.replace(/^\s+|\s+$/g,"");if(a.solution[e]){var f=!1;b.each(a.solutions,function(a,b){if(e===b)return f=!0,!1});f||a.solutions.push(e)}});this.internal.instance=
|
||||
"jp_"+this.count;this.instances[this.internal.instance]=this.element;this.element.attr("id")||this.element.attr("id",this.options.idPrefix+"_jplayer_"+this.count);this.internal.self=b.extend({},{id:this.element.attr("id"),jq:this.element});this.internal.audio=b.extend({},{id:this.options.idPrefix+"_audio_"+this.count,jq:f});this.internal.video=b.extend({},{id:this.options.idPrefix+"_video_"+this.count,jq:f});this.internal.flash=b.extend({},{id:this.options.idPrefix+"_flash_"+this.count,jq:f,swf:this.options.swfPath+
|
||||
(this.options.swfPath.toLowerCase().slice(-4)!==".swf"?(this.options.swfPath&&this.options.swfPath.slice(-1)!=="/"?"/":"")+"Jplayer.swf":"")});this.internal.poster=b.extend({},{id:this.options.idPrefix+"_poster_"+this.count,jq:f});b.each(b.jPlayer.event,function(b,c){a.options[b]!==f&&(a.element.bind(c+".jPlayer",a.options[b]),a.options[b]=f)});this.require.audio=!1;this.require.video=!1;b.each(this.formats,function(b,c){a.require[a.format[c].media]=!0});this.options=this.require.video?b.extend(!0,
|
||||
{},this.optionsVideo,this.options):b.extend(!0,{},this.optionsAudio,this.options);this._setSize();this.status.nativeVideoControls=this._uaBlocklist(this.options.nativeVideoControls);this.status.noFullScreen=this._uaBlocklist(this.options.noFullScreen);this.status.noVolume=this._uaBlocklist(this.options.noVolume);this._restrictNativeVideoControls();this.htmlElement.poster=document.createElement("img");this.htmlElement.poster.id=this.internal.poster.id;this.htmlElement.poster.onload=function(){(!a.status.video||
|
||||
a.status.waitForPlay)&&a.internal.poster.jq.show()};this.element.append(this.htmlElement.poster);this.internal.poster.jq=b("#"+this.internal.poster.id);this.internal.poster.jq.css({width:this.status.width,height:this.status.height});this.internal.poster.jq.hide();this.internal.poster.jq.bind("click.jPlayer",function(){a._trigger(b.jPlayer.event.click)});this.html.audio.available=!1;if(this.require.audio)this.htmlElement.audio=document.createElement("audio"),this.htmlElement.audio.id=this.internal.audio.id,
|
||||
this.html.audio.available=!!this.htmlElement.audio.canPlayType&&this._testCanPlayType(this.htmlElement.audio);this.html.video.available=!1;if(this.require.video)this.htmlElement.video=document.createElement("video"),this.htmlElement.video.id=this.internal.video.id,this.html.video.available=!!this.htmlElement.video.canPlayType&&this._testCanPlayType(this.htmlElement.video);this.flash.available=this._checkForFlash(10);this.html.canPlay={};this.flash.canPlay={};b.each(this.formats,function(b,c){a.html.canPlay[c]=
|
||||
a.html[a.format[c].media].available&&""!==a.htmlElement[a.format[c].media].canPlayType(a.format[c].codec);a.flash.canPlay[c]=a.format[c].flashCanPlay&&a.flash.available});this.html.desired=!1;this.flash.desired=!1;b.each(this.solutions,function(c,d){if(c===0)a[d].desired=!0;else{var e=!1,f=!1;b.each(a.formats,function(b,c){a[a.solutions[0]].canPlay[c]&&(a.format[c].media==="video"?f=!0:e=!0)});a[d].desired=a.require.audio&&!e||a.require.video&&!f}});this.html.support={};this.flash.support={};b.each(this.formats,
|
||||
function(b,c){a.html.support[c]=a.html.canPlay[c]&&a.html.desired;a.flash.support[c]=a.flash.canPlay[c]&&a.flash.desired});this.html.used=!1;this.flash.used=!1;b.each(this.solutions,function(c,d){b.each(a.formats,function(b,c){if(a[d].support[c])return a[d].used=!0,!1})});this._resetActive();this._resetGate();this._cssSelectorAncestor(this.options.cssSelectorAncestor);!this.html.used&&!this.flash.used?(this._error({type:b.jPlayer.error.NO_SOLUTION,context:"{solution:'"+this.options.solution+"', supplied:'"+
|
||||
this.options.supplied+"'}",message:b.jPlayer.errorMsg.NO_SOLUTION,hint:b.jPlayer.errorHint.NO_SOLUTION}),this.css.jq.noSolution.length&&this.css.jq.noSolution.show()):this.css.jq.noSolution.length&&this.css.jq.noSolution.hide();if(this.flash.used){var c,d="jQuery="+encodeURI(this.options.noConflict)+"&id="+encodeURI(this.internal.self.id)+"&vol="+this.options.volume+"&muted="+this.options.muted;if(b.browser.msie&&Number(b.browser.version)<=8){d=['<param name="movie" value="'+this.internal.flash.swf+
|
||||
'" />','<param name="FlashVars" value="'+d+'" />','<param name="allowScriptAccess" value="always" />','<param name="bgcolor" value="'+this.options.backgroundColor+'" />','<param name="wmode" value="'+this.options.wmode+'" />'];c=document.createElement('<object id="'+this.internal.flash.id+'" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="0" height="0"></object>');for(var e=0;e<d.length;e++)c.appendChild(document.createElement(d[e]))}else e=function(a,b,c){var d=document.createElement("param");
|
||||
d.setAttribute("name",b);d.setAttribute("value",c);a.appendChild(d)},c=document.createElement("object"),c.setAttribute("id",this.internal.flash.id),c.setAttribute("data",this.internal.flash.swf),c.setAttribute("type","application/x-shockwave-flash"),c.setAttribute("width","1"),c.setAttribute("height","1"),e(c,"flashvars",d),e(c,"allowscriptaccess","always"),e(c,"bgcolor",this.options.backgroundColor),e(c,"wmode",this.options.wmode);this.element.append(c);this.internal.flash.jq=b(c)}if(this.html.used){if(this.html.audio.available)this._addHtmlEventListeners(this.htmlElement.audio,
|
||||
this.html.audio),this.element.append(this.htmlElement.audio),this.internal.audio.jq=b("#"+this.internal.audio.id);if(this.html.video.available)this._addHtmlEventListeners(this.htmlElement.video,this.html.video),this.element.append(this.htmlElement.video),this.internal.video.jq=b("#"+this.internal.video.id),this.status.nativeVideoControls?this.internal.video.jq.css({width:this.status.width,height:this.status.height}):this.internal.video.jq.css({width:"0px",height:"0px"}),this.internal.video.jq.bind("click.jPlayer",
|
||||
function(){a._trigger(b.jPlayer.event.click)})}this.options.emulateHtml&&this._emulateHtmlBridge();this.html.used&&!this.flash.used&&setTimeout(function(){a.internal.ready=!0;a.version.flash="n/a";a._trigger(b.jPlayer.event.repeat);a._trigger(b.jPlayer.event.ready)},100);this._updateNativeVideoControls();this._updateInterface();this._updateButtons(!1);this._updateAutohide();this._updateVolume(this.options.volume);this._updateMute(this.options.muted);this.css.jq.videoPlay.length&&this.css.jq.videoPlay.hide();
|
||||
b.jPlayer.prototype.count++},destroy:function(){this.clearMedia();this._removeUiClass();this.css.jq.currentTime.length&&this.css.jq.currentTime.text("");this.css.jq.duration.length&&this.css.jq.duration.text("");b.each(this.css.jq,function(a,b){b.length&&b.unbind(".jPlayer")});this.internal.poster.jq.unbind(".jPlayer");this.internal.video.jq&&this.internal.video.jq.unbind(".jPlayer");this.options.emulateHtml&&this._destroyHtmlBridge();this.element.removeData("jPlayer");this.element.unbind(".jPlayer");
|
||||
this.element.empty();delete this.instances[this.internal.instance]},enable:function(){},disable:function(){},_testCanPlayType:function(a){try{return a.canPlayType(this.format.mp3.codec),!0}catch(b){return!1}},_uaBlocklist:function(a){var c=navigator.userAgent.toLowerCase(),d=!1;b.each(a,function(a,b){if(b&&b.test(c))return d=!0,!1});return d},_restrictNativeVideoControls:function(){if(this.require.audio&&this.status.nativeVideoControls)this.status.nativeVideoControls=!1,this.status.noFullScreen=!0},
|
||||
_updateNativeVideoControls:function(){if(this.html.video.available&&this.html.used)this.htmlElement.video.controls=this.status.nativeVideoControls,this._updateAutohide(),this.status.nativeVideoControls&&this.require.video?(this.internal.poster.jq.hide(),this.internal.video.jq.css({width:this.status.width,height:this.status.height})):this.status.waitForPlay&&this.status.video&&(this.internal.poster.jq.show(),this.internal.video.jq.css({width:"0px",height:"0px"}))},_addHtmlEventListeners:function(a,
|
||||
c){var d=this;a.preload=this.options.preload;a.muted=this.options.muted;a.volume=this.options.volume;a.addEventListener("progress",function(){c.gate&&(d._getHtmlStatus(a),d._updateInterface(),d._trigger(b.jPlayer.event.progress))},!1);a.addEventListener("timeupdate",function(){c.gate&&(d._getHtmlStatus(a),d._updateInterface(),d._trigger(b.jPlayer.event.timeupdate))},!1);a.addEventListener("durationchange",function(){if(c.gate)d.status.duration=this.duration,d._getHtmlStatus(a),d._updateInterface(),
|
||||
d._trigger(b.jPlayer.event.durationchange)},!1);a.addEventListener("play",function(){c.gate&&(d._updateButtons(!0),d._html_checkWaitForPlay(),d._trigger(b.jPlayer.event.play))},!1);a.addEventListener("playing",function(){c.gate&&(d._updateButtons(!0),d._seeked(),d._trigger(b.jPlayer.event.playing))},!1);a.addEventListener("pause",function(){c.gate&&(d._updateButtons(!1),d._trigger(b.jPlayer.event.pause))},!1);a.addEventListener("waiting",function(){c.gate&&(d._seeking(),d._trigger(b.jPlayer.event.waiting))},
|
||||
!1);a.addEventListener("seeking",function(){c.gate&&(d._seeking(),d._trigger(b.jPlayer.event.seeking))},!1);a.addEventListener("seeked",function(){c.gate&&(d._seeked(),d._trigger(b.jPlayer.event.seeked))},!1);a.addEventListener("volumechange",function(){if(c.gate)d.options.volume=a.volume,d.options.muted=a.muted,d._updateMute(),d._updateVolume(),d._trigger(b.jPlayer.event.volumechange)},!1);a.addEventListener("suspend",function(){c.gate&&(d._seeked(),d._trigger(b.jPlayer.event.suspend))},!1);a.addEventListener("ended",
|
||||
function(){if(c.gate){if(!b.jPlayer.browser.webkit)d.htmlElement.media.currentTime=0;d.htmlElement.media.pause();d._updateButtons(!1);d._getHtmlStatus(a,!0);d._updateInterface();d._trigger(b.jPlayer.event.ended)}},!1);a.addEventListener("error",function(){if(c.gate&&(d._updateButtons(!1),d._seeked(),d.status.srcSet))clearTimeout(d.internal.htmlDlyCmdId),d.status.waitForLoad=!0,d.status.waitForPlay=!0,d.status.video&&!d.status.nativeVideoControls&&d.internal.video.jq.css({width:"0px",height:"0px"}),
|
||||
d._validString(d.status.media.poster)&&!d.status.nativeVideoControls&&d.internal.poster.jq.show(),d.css.jq.videoPlay.length&&d.css.jq.videoPlay.show(),d._error({type:b.jPlayer.error.URL,context:d.status.src,message:b.jPlayer.errorMsg.URL,hint:b.jPlayer.errorHint.URL})},!1);b.each(b.jPlayer.htmlEvent,function(e,g){a.addEventListener(this,function(){c.gate&&d._trigger(b.jPlayer.event[g])},!1)})},_getHtmlStatus:function(a,b){var d=0,e=0,g=0,f=0;if(a.duration)this.status.duration=a.duration;d=a.currentTime;
|
||||
e=this.status.duration>0?100*d/this.status.duration:0;typeof a.seekable==="object"&&a.seekable.length>0?(g=this.status.duration>0?100*a.seekable.end(a.seekable.length-1)/this.status.duration:100,f=100*a.currentTime/a.seekable.end(a.seekable.length-1)):(g=100,f=e);b&&(e=f=d=0);this.status.seekPercent=g;this.status.currentPercentRelative=f;this.status.currentPercentAbsolute=e;this.status.currentTime=d;this.status.readyState=a.readyState;this.status.networkState=a.networkState;this.status.playbackRate=
|
||||
a.playbackRate;this.status.ended=a.ended},_resetStatus:function(){this.status=b.extend({},this.status,b.jPlayer.prototype.status)},_trigger:function(a,c,d){a=b.Event(a);a.jPlayer={};a.jPlayer.version=b.extend({},this.version);a.jPlayer.options=b.extend(!0,{},this.options);a.jPlayer.status=b.extend(!0,{},this.status);a.jPlayer.html=b.extend(!0,{},this.html);a.jPlayer.flash=b.extend(!0,{},this.flash);if(c)a.jPlayer.error=b.extend({},c);if(d)a.jPlayer.warning=b.extend({},d);this.element.trigger(a)},
|
||||
jPlayerFlashEvent:function(a,c){if(a===b.jPlayer.event.ready)if(this.internal.ready){if(this.flash.gate){if(this.status.srcSet){var d=this.status.currentTime,e=this.status.paused;this.setMedia(this.status.media);d>0&&(e?this.pause(d):this.play(d))}this._trigger(b.jPlayer.event.flashreset)}}else this.internal.ready=!0,this.internal.flash.jq.css({width:"0px",height:"0px"}),this.version.flash=c.version,this.version.needFlash!==this.version.flash&&this._error({type:b.jPlayer.error.VERSION,context:this.version.flash,
|
||||
message:b.jPlayer.errorMsg.VERSION+this.version.flash,hint:b.jPlayer.errorHint.VERSION}),this._trigger(b.jPlayer.event.repeat),this._trigger(a);if(this.flash.gate)switch(a){case b.jPlayer.event.progress:this._getFlashStatus(c);this._updateInterface();this._trigger(a);break;case b.jPlayer.event.timeupdate:this._getFlashStatus(c);this._updateInterface();this._trigger(a);break;case b.jPlayer.event.play:this._seeked();this._updateButtons(!0);this._trigger(a);break;case b.jPlayer.event.pause:this._updateButtons(!1);
|
||||
this._trigger(a);break;case b.jPlayer.event.ended:this._updateButtons(!1);this._trigger(a);break;case b.jPlayer.event.click:this._trigger(a);break;case b.jPlayer.event.error:this.status.waitForLoad=!0;this.status.waitForPlay=!0;this.status.video&&this.internal.flash.jq.css({width:"0px",height:"0px"});this._validString(this.status.media.poster)&&this.internal.poster.jq.show();this.css.jq.videoPlay.length&&this.status.video&&this.css.jq.videoPlay.show();this.status.video?this._flash_setVideo(this.status.media):
|
||||
this._flash_setAudio(this.status.media);this._updateButtons(!1);this._error({type:b.jPlayer.error.URL,context:c.src,message:b.jPlayer.errorMsg.URL,hint:b.jPlayer.errorHint.URL});break;case b.jPlayer.event.seeking:this._seeking();this._trigger(a);break;case b.jPlayer.event.seeked:this._seeked();this._trigger(a);break;case b.jPlayer.event.ready:break;default:this._trigger(a)}return!1},_getFlashStatus:function(a){this.status.seekPercent=a.seekPercent;this.status.currentPercentRelative=a.currentPercentRelative;
|
||||
this.status.currentPercentAbsolute=a.currentPercentAbsolute;this.status.currentTime=a.currentTime;this.status.duration=a.duration;this.status.readyState=4;this.status.networkState=0;this.status.playbackRate=1;this.status.ended=!1},_updateButtons:function(a){if(a!==f)this.status.paused=!a,this.css.jq.play.length&&this.css.jq.pause.length&&(a?(this.css.jq.play.hide(),this.css.jq.pause.show()):(this.css.jq.play.show(),this.css.jq.pause.hide()));this.css.jq.restoreScreen.length&&this.css.jq.fullScreen.length&&
|
||||
(this.status.noFullScreen?(this.css.jq.fullScreen.hide(),this.css.jq.restoreScreen.hide()):this.options.fullScreen?(this.css.jq.fullScreen.hide(),this.css.jq.restoreScreen.show()):(this.css.jq.fullScreen.show(),this.css.jq.restoreScreen.hide()));this.css.jq.repeat.length&&this.css.jq.repeatOff.length&&(this.options.loop?(this.css.jq.repeat.hide(),this.css.jq.repeatOff.show()):(this.css.jq.repeat.show(),this.css.jq.repeatOff.hide()))},_updateInterface:function(){this.css.jq.seekBar.length&&this.css.jq.seekBar.width(this.status.seekPercent+
|
||||
"%");this.css.jq.playBar.length&&this.css.jq.playBar.width(this.status.currentPercentRelative+"%");this.css.jq.currentTime.length&&this.css.jq.currentTime.text(b.jPlayer.convertTime(this.status.currentTime));this.css.jq.duration.length&&this.css.jq.duration.text(b.jPlayer.convertTime(this.status.duration))},_seeking:function(){this.css.jq.seekBar.length&&this.css.jq.seekBar.addClass("jp-seeking-bg")},_seeked:function(){this.css.jq.seekBar.length&&this.css.jq.seekBar.removeClass("jp-seeking-bg")},
|
||||
_resetGate:function(){this.html.audio.gate=!1;this.html.video.gate=!1;this.flash.gate=!1},_resetActive:function(){this.html.active=!1;this.flash.active=!1},setMedia:function(a){var c=this,d=!1,e=this.status.media.poster!==a.poster;this._resetMedia();this._resetGate();this._resetActive();b.each(this.formats,function(e,f){var i=c.format[f].media==="video";b.each(c.solutions,function(b,e){if(c[e].support[f]&&c._validString(a[f])){var g=e==="html";i?(g?(c.html.video.gate=!0,c._html_setVideo(a),c.html.active=
|
||||
!0):(c.flash.gate=!0,c._flash_setVideo(a),c.flash.active=!0),c.css.jq.videoPlay.length&&c.css.jq.videoPlay.show(),c.status.video=!0):(g?(c.html.audio.gate=!0,c._html_setAudio(a),c.html.active=!0):(c.flash.gate=!0,c._flash_setAudio(a),c.flash.active=!0),c.css.jq.videoPlay.length&&c.css.jq.videoPlay.hide(),c.status.video=!1);d=!0;return!1}});if(d)return!1});if(d){if((!this.status.nativeVideoControls||!this.html.video.gate)&&this._validString(a.poster))e?this.htmlElement.poster.src=a.poster:this.internal.poster.jq.show();
|
||||
this.status.srcSet=!0;this.status.media=b.extend({},a);this._updateButtons(!1);this._updateInterface()}else this._error({type:b.jPlayer.error.NO_SUPPORT,context:"{supplied:'"+this.options.supplied+"'}",message:b.jPlayer.errorMsg.NO_SUPPORT,hint:b.jPlayer.errorHint.NO_SUPPORT})},_resetMedia:function(){this._resetStatus();this._updateButtons(!1);this._updateInterface();this._seeked();this.internal.poster.jq.hide();clearTimeout(this.internal.htmlDlyCmdId);this.html.active?this._html_resetMedia():this.flash.active&&
|
||||
this._flash_resetMedia()},clearMedia:function(){this._resetMedia();this.html.active?this._html_clearMedia():this.flash.active&&this._flash_clearMedia();this._resetGate();this._resetActive()},load:function(){this.status.srcSet?this.html.active?this._html_load():this.flash.active&&this._flash_load():this._urlNotSetError("load")},play:function(a){a=typeof a==="number"?a:NaN;this.status.srcSet?this.html.active?this._html_play(a):this.flash.active&&this._flash_play(a):this._urlNotSetError("play")},videoPlay:function(){this.play()},
|
||||
pause:function(a){a=typeof a==="number"?a:NaN;this.status.srcSet?this.html.active?this._html_pause(a):this.flash.active&&this._flash_pause(a):this._urlNotSetError("pause")},pauseOthers:function(){var a=this;b.each(this.instances,function(b,d){a.element!==d&&d.data("jPlayer").status.srcSet&&d.jPlayer("pause")})},stop:function(){this.status.srcSet?this.html.active?this._html_pause(0):this.flash.active&&this._flash_pause(0):this._urlNotSetError("stop")},playHead:function(a){a=this._limitValue(a,0,100);
|
||||
this.status.srcSet?this.html.active?this._html_playHead(a):this.flash.active&&this._flash_playHead(a):this._urlNotSetError("playHead")},_muted:function(a){this.options.muted=a;this.html.used&&this._html_mute(a);this.flash.used&&this._flash_mute(a);!this.html.video.gate&&!this.html.audio.gate&&(this._updateMute(a),this._updateVolume(this.options.volume),this._trigger(b.jPlayer.event.volumechange))},mute:function(a){a=a===f?!0:!!a;this._muted(a)},unmute:function(a){a=a===f?!0:!!a;this._muted(!a)},_updateMute:function(a){if(a===
|
||||
f)a=this.options.muted;this.css.jq.mute.length&&this.css.jq.unmute.length&&(this.status.noVolume?(this.css.jq.mute.hide(),this.css.jq.unmute.hide()):a?(this.css.jq.mute.hide(),this.css.jq.unmute.show()):(this.css.jq.mute.show(),this.css.jq.unmute.hide()))},volume:function(a){a=this._limitValue(a,0,1);this.options.volume=a;this.html.used&&this._html_volume(a);this.flash.used&&this._flash_volume(a);!this.html.video.gate&&!this.html.audio.gate&&(this._updateVolume(a),this._trigger(b.jPlayer.event.volumechange))},
|
||||
volumeBar:function(a){if(this.css.jq.volumeBar.length){var b=this.css.jq.volumeBar.offset(),d=a.pageX-b.left,e=this.css.jq.volumeBar.width(),a=this.css.jq.volumeBar.height()-a.pageY+b.top,b=this.css.jq.volumeBar.height();this.options.verticalVolume?this.volume(a/b):this.volume(d/e)}this.options.muted&&this._muted(!1)},volumeBarValue:function(a){this.volumeBar(a)},_updateVolume:function(a){if(a===f)a=this.options.volume;a=this.options.muted?0:a;this.status.noVolume?(this.css.jq.volumeBar.length&&this.css.jq.volumeBar.hide(),
|
||||
this.css.jq.volumeBarValue.length&&this.css.jq.volumeBarValue.hide(),this.css.jq.volumeMax.length&&this.css.jq.volumeMax.hide()):(this.css.jq.volumeBar.length&&this.css.jq.volumeBar.show(),this.css.jq.volumeBarValue.length&&(this.css.jq.volumeBarValue.show(),this.css.jq.volumeBarValue[this.options.verticalVolume?"height":"width"](a*100+"%")),this.css.jq.volumeMax.length&&this.css.jq.volumeMax.show())},volumeMax:function(){this.volume(1);this.options.muted&&this._muted(!1)},_cssSelectorAncestor:function(a){var c=
|
||||
this;this.options.cssSelectorAncestor=a;this._removeUiClass();this.ancestorJq=a?b(a):[];a&&this.ancestorJq.length!==1&&this._warning({type:b.jPlayer.warning.CSS_SELECTOR_COUNT,context:a,message:b.jPlayer.warningMsg.CSS_SELECTOR_COUNT+this.ancestorJq.length+" found for cssSelectorAncestor.",hint:b.jPlayer.warningHint.CSS_SELECTOR_COUNT});this._addUiClass();b.each(this.options.cssSelector,function(a,b){c._cssSelector(a,b)})},_cssSelector:function(a,c){var d=this;typeof c==="string"?b.jPlayer.prototype.options.cssSelector[a]?
|
||||
(this.css.jq[a]&&this.css.jq[a].length&&this.css.jq[a].unbind(".jPlayer"),this.options.cssSelector[a]=c,this.css.cs[a]=this.options.cssSelectorAncestor+" "+c,this.css.jq[a]=c?b(this.css.cs[a]):[],this.css.jq[a].length&&this.css.jq[a].bind("click.jPlayer",function(c){d[a](c);b(this).blur();return!1}),c&&this.css.jq[a].length!==1&&this._warning({type:b.jPlayer.warning.CSS_SELECTOR_COUNT,context:this.css.cs[a],message:b.jPlayer.warningMsg.CSS_SELECTOR_COUNT+this.css.jq[a].length+" found for "+a+" method.",
|
||||
hint:b.jPlayer.warningHint.CSS_SELECTOR_COUNT})):this._warning({type:b.jPlayer.warning.CSS_SELECTOR_METHOD,context:a,message:b.jPlayer.warningMsg.CSS_SELECTOR_METHOD,hint:b.jPlayer.warningHint.CSS_SELECTOR_METHOD}):this._warning({type:b.jPlayer.warning.CSS_SELECTOR_STRING,context:c,message:b.jPlayer.warningMsg.CSS_SELECTOR_STRING,hint:b.jPlayer.warningHint.CSS_SELECTOR_STRING})},seekBar:function(a){if(this.css.jq.seekBar){var b=this.css.jq.seekBar.offset(),a=a.pageX-b.left,b=this.css.jq.seekBar.width();
|
||||
this.playHead(100*a/b)}},playBar:function(a){this.seekBar(a)},repeat:function(){this._loop(!0)},repeatOff:function(){this._loop(!1)},_loop:function(a){if(this.options.loop!==a)this.options.loop=a,this._updateButtons(),this._trigger(b.jPlayer.event.repeat)},currentTime:function(){},duration:function(){},gui:function(){},noSolution:function(){},option:function(a,c){var d=a;if(arguments.length===0)return b.extend(!0,{},this.options);if(typeof a==="string"){var e=a.split(".");if(c===f){for(var d=b.extend(!0,
|
||||
{},this.options),g=0;g<e.length;g++)if(d[e[g]]!==f)d=d[e[g]];else return this._warning({type:b.jPlayer.warning.OPTION_KEY,context:a,message:b.jPlayer.warningMsg.OPTION_KEY,hint:b.jPlayer.warningHint.OPTION_KEY}),f;return d}for(var g=d={},h=0;h<e.length;h++)h<e.length-1?(g[e[h]]={},g=g[e[h]]):g[e[h]]=c}this._setOptions(d);return this},_setOptions:function(a){var c=this;b.each(a,function(a,b){c._setOption(a,b)});return this},_setOption:function(a,c){var d=this;switch(a){case "volume":this.volume(c);
|
||||
break;case "muted":this._muted(c);break;case "cssSelectorAncestor":this._cssSelectorAncestor(c);break;case "cssSelector":b.each(c,function(a,b){d._cssSelector(a,b)});break;case "fullScreen":this.options[a]!==c&&(this._removeUiClass(),this.options[a]=c,this._refreshSize());break;case "size":!this.options.fullScreen&&this.options[a].cssClass!==c.cssClass&&this._removeUiClass();this.options[a]=b.extend({},this.options[a],c);this._refreshSize();break;case "sizeFull":this.options.fullScreen&&this.options[a].cssClass!==
|
||||
c.cssClass&&this._removeUiClass();this.options[a]=b.extend({},this.options[a],c);this._refreshSize();break;case "autohide":this.options[a]=b.extend({},this.options[a],c);this._updateAutohide();break;case "loop":this._loop(c);break;case "nativeVideoControls":this.options[a]=b.extend({},this.options[a],c);this.status.nativeVideoControls=this._uaBlocklist(this.options.nativeVideoControls);this._restrictNativeVideoControls();this._updateNativeVideoControls();break;case "noFullScreen":this.options[a]=
|
||||
b.extend({},this.options[a],c);this.status.nativeVideoControls=this._uaBlocklist(this.options.nativeVideoControls);this.status.noFullScreen=this._uaBlocklist(this.options.noFullScreen);this._restrictNativeVideoControls();this._updateButtons();break;case "noVolume":this.options[a]=b.extend({},this.options[a],c);this.status.noVolume=this._uaBlocklist(this.options.noVolume);this._updateVolume();this._updateMute();break;case "emulateHtml":this.options[a]!==c&&((this.options[a]=c)?this._emulateHtmlBridge():
|
||||
this._destroyHtmlBridge())}return this},_refreshSize:function(){this._setSize();this._addUiClass();this._updateSize();this._updateButtons();this._updateAutohide();this._trigger(b.jPlayer.event.resize)},_setSize:function(){this.options.fullScreen?(this.status.width=this.options.sizeFull.width,this.status.height=this.options.sizeFull.height,this.status.cssClass=this.options.sizeFull.cssClass):(this.status.width=this.options.size.width,this.status.height=this.options.size.height,this.status.cssClass=
|
||||
this.options.size.cssClass);this.element.css({width:this.status.width,height:this.status.height})},_addUiClass:function(){this.ancestorJq.length&&this.ancestorJq.addClass(this.status.cssClass)},_removeUiClass:function(){this.ancestorJq.length&&this.ancestorJq.removeClass(this.status.cssClass)},_updateSize:function(){this.internal.poster.jq.css({width:this.status.width,height:this.status.height});!this.status.waitForPlay&&this.html.active&&this.status.video||this.html.video.available&&this.html.used&&
|
||||
this.status.nativeVideoControls?this.internal.video.jq.css({width:this.status.width,height:this.status.height}):!this.status.waitForPlay&&this.flash.active&&this.status.video&&this.internal.flash.jq.css({width:this.status.width,height:this.status.height})},_updateAutohide:function(){var a=this,b=function(){a.css.jq.gui.fadeIn(a.options.autohide.fadeIn,function(){clearTimeout(a.internal.autohideId);a.internal.autohideId=setTimeout(function(){a.css.jq.gui.fadeOut(a.options.autohide.fadeOut)},a.options.autohide.hold)})};
|
||||
this.css.jq.gui.length&&(this.css.jq.gui.stop(!0,!0),clearTimeout(this.internal.autohideId),this.element.unbind(".jPlayerAutohide"),this.css.jq.gui.unbind(".jPlayerAutohide"),this.status.nativeVideoControls?this.css.jq.gui.hide():this.options.fullScreen&&this.options.autohide.full||!this.options.fullScreen&&this.options.autohide.restored?(this.element.bind("mousemove.jPlayer.jPlayerAutohide",b),this.css.jq.gui.bind("mousemove.jPlayer.jPlayerAutohide",b),this.css.jq.gui.hide()):this.css.jq.gui.show())},
|
||||
fullScreen:function(){this._setOption("fullScreen",!0)},restoreScreen:function(){this._setOption("fullScreen",!1)},_html_initMedia:function(){this.htmlElement.media.src=this.status.src;this.options.preload!=="none"&&this._html_load();this._trigger(b.jPlayer.event.timeupdate)},_html_setAudio:function(a){var c=this;b.each(this.formats,function(b,e){if(c.html.support[e]&&a[e])return c.status.src=a[e],c.status.format[e]=!0,c.status.formatType=e,!1});this.htmlElement.media=this.htmlElement.audio;this._html_initMedia()},
|
||||
_html_setVideo:function(a){var c=this;b.each(this.formats,function(b,e){if(c.html.support[e]&&a[e])return c.status.src=a[e],c.status.format[e]=!0,c.status.formatType=e,!1});if(this.status.nativeVideoControls)this.htmlElement.video.poster=this._validString(a.poster)?a.poster:"";this.htmlElement.media=this.htmlElement.video;this._html_initMedia()},_html_resetMedia:function(){this.htmlElement.media&&(this.htmlElement.media.id===this.internal.video.id&&!this.status.nativeVideoControls&&this.internal.video.jq.css({width:"0px",
|
||||
height:"0px"}),this.htmlElement.media.pause())},_html_clearMedia:function(){if(this.htmlElement.media)this.htmlElement.media.src="",this.htmlElement.media.load()},_html_load:function(){if(this.status.waitForLoad)this.status.waitForLoad=!1,this.htmlElement.media.load();clearTimeout(this.internal.htmlDlyCmdId)},_html_play:function(a){var b=this;this._html_load();this.htmlElement.media.play();if(!isNaN(a))try{this.htmlElement.media.currentTime=a}catch(d){this.internal.htmlDlyCmdId=setTimeout(function(){b.play(a)},
|
||||
100);return}this._html_checkWaitForPlay()},_html_pause:function(a){var b=this;a>0?this._html_load():clearTimeout(this.internal.htmlDlyCmdId);this.htmlElement.media.pause();if(!isNaN(a))try{this.htmlElement.media.currentTime=a}catch(d){this.internal.htmlDlyCmdId=setTimeout(function(){b.pause(a)},100);return}a>0&&this._html_checkWaitForPlay()},_html_playHead:function(a){var b=this;this._html_load();try{if(typeof this.htmlElement.media.seekable==="object"&&this.htmlElement.media.seekable.length>0)this.htmlElement.media.currentTime=
|
||||
a*this.htmlElement.media.seekable.end(this.htmlElement.media.seekable.length-1)/100;else if(this.htmlElement.media.duration>0&&!isNaN(this.htmlElement.media.duration))this.htmlElement.media.currentTime=a*this.htmlElement.media.duration/100;else throw"e";}catch(d){this.internal.htmlDlyCmdId=setTimeout(function(){b.playHead(a)},100);return}this.status.waitForLoad||this._html_checkWaitForPlay()},_html_checkWaitForPlay:function(){if(this.status.waitForPlay)this.status.waitForPlay=!1,this.css.jq.videoPlay.length&&
|
||||
this.css.jq.videoPlay.hide(),this.status.video&&(this.internal.poster.jq.hide(),this.internal.video.jq.css({width:this.status.width,height:this.status.height}))},_html_volume:function(a){if(this.html.audio.available)this.htmlElement.audio.volume=a;if(this.html.video.available)this.htmlElement.video.volume=a},_html_mute:function(a){if(this.html.audio.available)this.htmlElement.audio.muted=a;if(this.html.video.available)this.htmlElement.video.muted=a},_flash_setAudio:function(a){var c=this;try{if(b.each(this.formats,
|
||||
function(b,d){if(c.flash.support[d]&&a[d]){switch(d){case "m4a":case "fla":c._getMovie().fl_setAudio_m4a(a[d]);break;case "mp3":c._getMovie().fl_setAudio_mp3(a[d])}c.status.src=a[d];c.status.format[d]=!0;c.status.formatType=d;return!1}}),this.options.preload==="auto")this._flash_load(),this.status.waitForLoad=!1}catch(d){this._flashError(d)}},_flash_setVideo:function(a){var c=this;try{if(b.each(this.formats,function(b,d){if(c.flash.support[d]&&a[d]){switch(d){case "m4v":case "flv":c._getMovie().fl_setVideo_m4v(a[d])}c.status.src=
|
||||
a[d];c.status.format[d]=!0;c.status.formatType=d;return!1}}),this.options.preload==="auto")this._flash_load(),this.status.waitForLoad=!1}catch(d){this._flashError(d)}},_flash_resetMedia:function(){this.internal.flash.jq.css({width:"0px",height:"0px"});this._flash_pause(NaN)},_flash_clearMedia:function(){try{this._getMovie().fl_clearMedia()}catch(a){this._flashError(a)}},_flash_load:function(){try{this._getMovie().fl_load()}catch(a){this._flashError(a)}this.status.waitForLoad=!1},_flash_play:function(a){try{this._getMovie().fl_play(a)}catch(b){this._flashError(b)}this.status.waitForLoad=
|
||||
!1;this._flash_checkWaitForPlay()},_flash_pause:function(a){try{this._getMovie().fl_pause(a)}catch(b){this._flashError(b)}if(a>0)this.status.waitForLoad=!1,this._flash_checkWaitForPlay()},_flash_playHead:function(a){try{this._getMovie().fl_play_head(a)}catch(b){this._flashError(b)}this.status.waitForLoad||this._flash_checkWaitForPlay()},_flash_checkWaitForPlay:function(){if(this.status.waitForPlay)this.status.waitForPlay=!1,this.css.jq.videoPlay.length&&this.css.jq.videoPlay.hide(),this.status.video&&
|
||||
(this.internal.poster.jq.hide(),this.internal.flash.jq.css({width:this.status.width,height:this.status.height}))},_flash_volume:function(a){try{this._getMovie().fl_volume(a)}catch(b){this._flashError(b)}},_flash_mute:function(a){try{this._getMovie().fl_mute(a)}catch(b){this._flashError(b)}},_getMovie:function(){return document[this.internal.flash.id]},_checkForFlash:function(a){var b=!1,d;if(window.ActiveXObject)try{new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+a),b=!0}catch(e){}else navigator.plugins&&
|
||||
navigator.mimeTypes.length>0&&(d=navigator.plugins["Shockwave Flash"])&&navigator.plugins["Shockwave Flash"].description.replace(/.*\s(\d+\.\d+).*/,"$1")>=a&&(b=!0);return b},_validString:function(a){return a&&typeof a==="string"},_limitValue:function(a,b,d){return a<b?b:a>d?d:a},_urlNotSetError:function(a){this._error({type:b.jPlayer.error.URL_NOT_SET,context:a,message:b.jPlayer.errorMsg.URL_NOT_SET,hint:b.jPlayer.errorHint.URL_NOT_SET})},_flashError:function(a){var c;c=this.internal.ready?"FLASH_DISABLED":
|
||||
"FLASH";this._error({type:b.jPlayer.error[c],context:this.internal.flash.swf,message:b.jPlayer.errorMsg[c]+a.message,hint:b.jPlayer.errorHint[c]});this.internal.flash.jq.css({width:"1px",height:"1px"})},_error:function(a){this._trigger(b.jPlayer.event.error,a);this.options.errorAlerts&&this._alert("Error!"+(a.message?"\n\n"+a.message:"")+(a.hint?"\n\n"+a.hint:"")+"\n\nContext: "+a.context)},_warning:function(a){this._trigger(b.jPlayer.event.warning,f,a);this.options.warningAlerts&&this._alert("Warning!"+
|
||||
(a.message?"\n\n"+a.message:"")+(a.hint?"\n\n"+a.hint:"")+"\n\nContext: "+a.context)},_alert:function(a){alert("jPlayer "+this.version.script+" : id='"+this.internal.self.id+"' : "+a)},_emulateHtmlBridge:function(){var a=this;b.each(b.jPlayer.emulateMethods.split(/\s+/g),function(b,d){a.internal.domNode[d]=function(b){a[d](b)}});b.each(b.jPlayer.event,function(c,d){var e=!0;b.each(b.jPlayer.reservedEvent.split(/\s+/g),function(a,b){if(b===c)return e=!1});e&&a.element.bind(d+".jPlayer.jPlayerHtml",
|
||||
function(){a._emulateHtmlUpdate();var b=document.createEvent("Event");b.initEvent(c,!1,!0);a.internal.domNode.dispatchEvent(b)})})},_emulateHtmlUpdate:function(){var a=this;b.each(b.jPlayer.emulateStatus.split(/\s+/g),function(b,d){a.internal.domNode[d]=a.status[d]});b.each(b.jPlayer.emulateOptions.split(/\s+/g),function(b,d){a.internal.domNode[d]=a.options[d]})},_destroyHtmlBridge:function(){var a=this;this.element.unbind(".jPlayerHtml");b.each((b.jPlayer.emulateMethods+" "+b.jPlayer.emulateStatus+
|
||||
" "+b.jPlayer.emulateOptions).split(/\s+/g),function(b,d){delete a.internal.domNode[d]})}};b.jPlayer.error={FLASH:"e_flash",FLASH_DISABLED:"e_flash_disabled",NO_SOLUTION:"e_no_solution",NO_SUPPORT:"e_no_support",URL:"e_url",URL_NOT_SET:"e_url_not_set",VERSION:"e_version"};b.jPlayer.errorMsg={FLASH:"jPlayer's Flash fallback is not configured correctly, or a command was issued before the jPlayer Ready event. Details: ",FLASH_DISABLED:"jPlayer's Flash fallback has been disabled by the browser due to the CSS rules you have used. Details: ",
|
||||
NO_SOLUTION:"No solution can be found by jPlayer in this browser. Neither HTML nor Flash can be used.",NO_SUPPORT:"It is not possible to play any media format provided in setMedia() on this browser using your current options.",URL:"Media URL could not be loaded.",URL_NOT_SET:"Attempt to issue media playback commands, while no media url is set.",VERSION:"jPlayer "+b.jPlayer.prototype.version.script+" needs Jplayer.swf version "+b.jPlayer.prototype.version.needFlash+" but found "};b.jPlayer.errorHint=
|
||||
{FLASH:"Check your swfPath option and that Jplayer.swf is there.",FLASH_DISABLED:"Check that you have not display:none; the jPlayer entity or any ancestor.",NO_SOLUTION:"Review the jPlayer options: support and supplied.",NO_SUPPORT:"Video or audio formats defined in the supplied option are missing.",URL:"Check media URL is valid.",URL_NOT_SET:"Use setMedia() to set the media URL.",VERSION:"Update jPlayer files."};b.jPlayer.warning={CSS_SELECTOR_COUNT:"e_css_selector_count",CSS_SELECTOR_METHOD:"e_css_selector_method",
|
||||
CSS_SELECTOR_STRING:"e_css_selector_string",OPTION_KEY:"e_option_key"};b.jPlayer.warningMsg={CSS_SELECTOR_COUNT:"The number of css selectors found did not equal one: ",CSS_SELECTOR_METHOD:"The methodName given in jPlayer('cssSelector') is not a valid jPlayer method.",CSS_SELECTOR_STRING:"The methodCssSelector given in jPlayer('cssSelector') is not a String or is empty.",OPTION_KEY:"The option requested in jPlayer('option') is undefined."};b.jPlayer.warningHint={CSS_SELECTOR_COUNT:"Check your css selector and the ancestor.",
|
||||
CSS_SELECTOR_METHOD:"Check your method name.",CSS_SELECTOR_STRING:"Check your css selector is a string.",OPTION_KEY:"Check your option name."}})(jQuery);
|
||||
@@ -0,0 +1,10 @@
|
||||
/*
|
||||
* jQuery.appear
|
||||
* https://github.com/bas2k/jquery.appear/
|
||||
* http://code.google.com/p/jquery-appear/
|
||||
*
|
||||
* Copyright (c) 2009 Michael Hixson
|
||||
* Copyright (c) 2012 Alexander Brovikov
|
||||
* Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
|
||||
*/
|
||||
(function($){$.fn.appear=function(fn,options){var settings=$.extend({data:undefined,one:true,accX:0,accY:0},options);return this.each(function(){var t=$(this);t.appeared=false;if(!fn){t.trigger('appear',settings.data);return}var w=$(window);var check=function(){if(!t.is(':visible')){t.appeared=false;return}var a=w.scrollLeft();var b=w.scrollTop();var o=t.offset();var x=o.left;var y=o.top;var ax=settings.accX;var ay=settings.accY;var th=t.height();var wh=w.height();var tw=t.width();var ww=w.width();if(y+th+ay>=b&&y<=b+wh+ay&&x+tw+ax>=a&&x<=a+ww+ax){if(!t.appeared)t.trigger('appear',settings.data)}else{t.appeared=false}};var modifiedFn=function(){t.appeared=true;if(settings.one){w.unbind('scroll',check);var i=$.inArray(check,$.fn.appear.checks);if(i>=0)$.fn.appear.checks.splice(i,1)}fn.apply(this,arguments)};if(settings.one)t.one('appear',settings.data,modifiedFn);else t.bind('appear',settings.data,modifiedFn);w.scroll(check);$.fn.appear.checks.push(check);(check)()})};$.extend($.fn.appear,{checks:[],timeout:null,checkAll:function(){var length=$.fn.appear.checks.length;if(length>0)while(length--)($.fn.appear.checks[length])()},run:function(){if($.fn.appear.timeout)clearTimeout($.fn.appear.timeout);$.fn.appear.timeout=setTimeout($.fn.appear.checkAll,20)}});$.each(['append','prepend','after','before','attr','removeAttr','addClass','removeClass','toggleClass','remove','css','show','hide'],function(i,n){var old=$.fn[n];if(old){$.fn[n]=function(){var r=old.apply(this,arguments);$.fn.appear.run();return r}}})})(jQuery);
|
||||
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
|
||||
*
|
||||
* Uses the built in easing capabilities added In jQuery 1.1
|
||||
* to offer multiple easing options
|
||||
*
|
||||
* TERMS OF USE - jQuery Easing
|
||||
*
|
||||
* Open source under the BSD License.
|
||||
*
|
||||
* Copyright © 2008 George McGinley Smith
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without modification,
|
||||
* are permitted provided that the following conditions are met:
|
||||
*
|
||||
* Redistributions of source code must retain the above copyright notice, this list of
|
||||
* conditions and the following disclaimer.
|
||||
* Redistributions in binary form must reproduce the above copyright notice, this list
|
||||
* of conditions and the following disclaimer in the documentation and/or other materials
|
||||
* provided with the distribution.
|
||||
*
|
||||
* Neither the name of the author nor the names of contributors may be used to endorse
|
||||
* or promote products derived from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
||||
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
||||
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
*/
|
||||
jQuery.easing['jswing']=jQuery.easing['swing'];jQuery.extend(jQuery.easing,{def:'easeOutQuad',swing:function(x,t,b,c,d){return jQuery.easing[jQuery.easing.def](x,t,b,c,d)},easeInQuad:function(x,t,b,c,d){return c*(t/=d)*t+b},easeOutQuad:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b},easeInOutQuad:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t+b;return-c/2*((--t)*(t-2)-1)+b},easeInCubic:function(x,t,b,c,d){return c*(t/=d)*t*t+b},easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b},easeInOutCubic:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t+b;return c/2*((t-=2)*t*t+2)+b},easeInQuart:function(x,t,b,c,d){return c*(t/=d)*t*t*t+b},easeOutQuart:function(x,t,b,c,d){return-c*((t=t/d-1)*t*t*t-1)+b},easeInOutQuart:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t+b;return-c/2*((t-=2)*t*t*t-2)+b},easeInQuint:function(x,t,b,c,d){return c*(t/=d)*t*t*t*t+b},easeOutQuint:function(x,t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b},easeInOutQuint:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t*t+b;return c/2*((t-=2)*t*t*t*t+2)+b},easeInSine:function(x,t,b,c,d){return-c*Math.cos(t/d*(Math.PI/2))+c+b},easeOutSine:function(x,t,b,c,d){return c*Math.sin(t/d*(Math.PI/2))+b},easeInOutSine:function(x,t,b,c,d){return-c/2*(Math.cos(Math.PI*t/d)-1)+b},easeInExpo:function(x,t,b,c,d){return(t==0)?b:c*Math.pow(2,10*(t/d-1))+b},easeOutExpo:function(x,t,b,c,d){return(t==d)?b+c:c*(-Math.pow(2,-10*t/d)+1)+b},easeInOutExpo:function(x,t,b,c,d){if(t==0)return b;if(t==d)return b+c;if((t/=d/2)<1)return c/2*Math.pow(2,10*(t-1))+b;return c/2*(-Math.pow(2,-10*--t)+2)+b},easeInCirc:function(x,t,b,c,d){return-c*(Math.sqrt(1-(t/=d)*t)-1)+b},easeOutCirc:function(x,t,b,c,d){return c*Math.sqrt(1-(t=t/d-1)*t)+b},easeInOutCirc:function(x,t,b,c,d){if((t/=d/2)<1)return-c/2*(Math.sqrt(1-t*t)-1)+b;return c/2*(Math.sqrt(1-(t-=2)*t)+1)+b},easeInElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b},easeOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b},easeInOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b},easeInBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b},easeOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b},easeInOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b},easeInBounce:function(x,t,b,c,d){return c-jQuery.easing.easeOutBounce(x,d-t,0,c,d)+b},easeOutBounce:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b}},easeInOutBounce:function(x,t,b,c,d){if(t<d/2)return jQuery.easing.easeInBounce(x,t*2,0,c,d)*.5+b;return jQuery.easing.easeOutBounce(x,t*2-d,0,c,d)*.5+c*.5+b}});
|
||||
@@ -0,0 +1,10 @@
|
||||
/*!
|
||||
* FitVids 1.0
|
||||
*
|
||||
* Copyright 2011, Chris Coyier - http://css-tricks.com + Dave Rupert - http://daverupert.com
|
||||
* Credit to Thierry Koblentz - http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/
|
||||
* Released under the WTFPL license - http://sam.zoy.org/wtfpl/
|
||||
*
|
||||
* Date: Thu Sept 01 18:00:00 2011 -0500
|
||||
*/
|
||||
(function($){"use strict";$.fn.fitVids=function(options){var settings={customSelector:null};if(!document.getElementById('fit-vids-style')){var div=document.createElement('div'),ref=document.getElementsByTagName('base')[0]||document.getElementsByTagName('script')[0];div.className='fit-vids-style';div.id='fit-vids-style';div.style.display='none';div.innerHTML='­<style> .fluid-width-video-wrapper { width: 100%; position: relative; padding: 0; min-height: 1px; } .fluid-width-video-wrapper iframe, .fluid-width-video-wrapper object, .fluid-width-video-wrapper embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } </style>';ref.parentNode.insertBefore(div,ref)}if(options){$.extend(settings,options)}return this.each(function(){var selectors=["iframe[src*='player.vimeo.com']","iframe[src*='youtube.com']","iframe[src*='youtube-nocookie.com']","iframe[src*='kickstarter.com'][src*='video.html']","object","embed"];if(settings.customSelector){selectors.push(settings.customSelector)}var $allVideos=$(this).find(selectors.join(','));$allVideos=$allVideos.not("object object");$allVideos.each(function(){var $this=$(this);if(this.tagName.toLowerCase()==='embed'&&$this.parent('object').length||$this.parent('.fluid-width-video-wrapper').length){return}if($this.closest('.flexslider').length>0){if($this.closest('ul').find('li > img').length>0){var height=$this.closest('ul').height()}else if($this.closest('ul').find('video-wrap').length>0){var height=$this.closest('ul').find('video-wrap').height()}else{var height=500}var width=!isNaN(parseInt($this.closest('li').attr('width'),10))?parseInt($this.closest('li').attr('width'),10):$this.closest('li').width();var aspectRatio=height/width}else if($this.closest('.portfolio_images').length>0){var width=$j('.portfolio_images').width();if($this.next('img').length>0){var height=$this.next('img').height()}else{var height=500}var aspectRatio=height/width}else if($this.closest('.post_image').length){var height=(this.tagName.toLowerCase()==='object'||($this.attr('height')&&!isNaN(parseInt($this.attr('height'),10))))?parseInt($this.attr('height'),10):$this.height(),width=!isNaN(parseInt($this.attr('width'),10))?parseInt($this.attr('width'),10):$this.width(),aspectRatio=height/width}else if($this.closest('.q_masonry_blog_post_image').length){var height=(this.tagName.toLowerCase()==='object'||($this.attr('height')&&!isNaN(parseInt($this.attr('height'),10))))?parseInt($this.attr('height'),10):$this.height(),width=!isNaN(parseInt($this.attr('width'),10))?parseInt($this.attr('width'),10):$this.width(),aspectRatio=height/width}else{var height=(this.tagName.toLowerCase()==='object'||($this.attr('height')&&!isNaN(parseInt($this.attr('height'),10))))?parseInt($this.attr('height'),10):$this.height(),width=!isNaN(parseInt($this.attr('width'),10))?parseInt($this.attr('width'),10):$this.parent().width(),aspectRatio=height/width}if(!$this.attr('id')){var videoID='fitvid'+Math.floor(Math.random()*999999);$this.attr('id',videoID)}$this.wrap('<div class="fluid-width-video-wrapper"></div>');$('.fluid-width-video-wrapper').css('padding-top',(aspectRatio*100)+"%")})})}})(jQuery);
|
||||
@@ -0,0 +1 @@
|
||||
!function($){var escape=/["\\\x00-\x1f\x7f-\x9f]/g,meta={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},hasOwn=Object.prototype.hasOwnProperty;$.toJSON="object"==typeof JSON&&JSON.stringify?JSON.stringify:function(t){if(null===t)return"null";var e,r,n,o,i,f,u=$.type(t);if("undefined"!==u){if("number"===u||"boolean"===u)return String(t);if("string"===u)return $.quoteString(t);if("function"==typeof t.toJSON)return $.toJSON(t.toJSON());if("date"===u)return i=t.getUTCMonth()+1,f=t.getUTCDate(),'"'+t.getUTCFullYear()+"-"+(i=i<10?"0"+i:i)+"-"+(f=f<10?"0"+f:f)+"T"+(i=(i=t.getUTCHours())<10?"0"+i:i)+":"+(f=(f=t.getUTCMinutes())<10?"0"+f:f)+":"+(i=(i=t.getUTCSeconds())<10?"0"+i:i)+"."+(f=(f=(f=t.getUTCMilliseconds())<100?"0"+f:f)<10?"0"+f:f)+'Z"';if(e=[],$.isArray(t)){for(r=0;r<t.length;r++)e.push($.toJSON(t[r])||"null");return"["+e.join(",")+"]"}if("object"==typeof t){for(r in t)if(hasOwn.call(t,r)){if("number"===(u=typeof r))n='"'+r+'"';else{if("string"!==u)continue;n=$.quoteString(r)}"function"!==(u=typeof t[r])&&"undefined"!==u&&(o=$.toJSON(t[r]),e.push(n+":"+o))}return"{"+e.join(",")+"}"}}},$.evalJSON="object"==typeof JSON&&JSON.parse?JSON.parse:function(str){return eval("("+str+")")},$.secureEvalJSON="object"==typeof JSON&&JSON.parse?JSON.parse:function(str){var filtered=str.replace(/\\["\\\/bfnrtu]/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"");if(/^[\],:{}\s]*$/.test(filtered))return eval("("+str+")");throw new SyntaxError("Error parsing JSON, source is not valid.")},$.quoteString=function(t){return t.match(escape)?'"'+t.replace(escape,function(t){var e=meta[t];return"string"==typeof e?e:(e=t.charCodeAt(),"\\u00"+Math.floor(e/16).toString(16)+(e%16).toString(16))})+'"':'"'+t+'"'}}(jQuery);
|
||||
@@ -0,0 +1,12 @@
|
||||
/*! Copyright (c) 2011 Brandon Aaron (http://brandonaaron.net)
|
||||
* Licensed under the MIT License (LICENSE.txt).
|
||||
*
|
||||
* Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
|
||||
* Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
|
||||
* Thanks to: Seamus Leahy for adding deltaX and deltaY
|
||||
*
|
||||
* Version: 3.0.6
|
||||
*
|
||||
* Requires: 1.2.2+
|
||||
*/
|
||||
(function(a){function d(b){var c=b||window.event,d=[].slice.call(arguments,1),e=0,f=!0,g=0,h=0;return b=a.event.fix(c),b.type="mousewheel",c.wheelDelta&&(e=c.wheelDelta/120),c.detail&&(e=-c.detail/3),h=e,c.axis!==undefined&&c.axis===c.HORIZONTAL_AXIS&&(h=0,g=-1*e),c.wheelDeltaY!==undefined&&(h=c.wheelDeltaY/120),c.wheelDeltaX!==undefined&&(g=-1*c.wheelDeltaX/120),d.unshift(b,e,g,h),(a.event.dispatch||a.event.handle).apply(this,d)}var b=["DOMMouseScroll","mousewheel"];if(a.event.fixHooks)for(var c=b.length;c;)a.event.fixHooks[b[--c]]=a.event.mouseHooks;a.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=b.length;a;)this.addEventListener(b[--a],d,!1);else this.onmousewheel=d},teardown:function(){if(this.removeEventListener)for(var a=b.length;a;)this.removeEventListener(b[--a],d,!1);else this.onmousewheel=null}},a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})})(jQuery)
|
||||
@@ -0,0 +1,111 @@
|
||||
/* jquery.nicescroll 3.2.0 InuYaksa*2013 MIT http://areaaperta.com/nicescroll */(function(e){var y=!1,D=!1,J=5E3,K=2E3,x=0,L=function(){var e=document.getElementsByTagName("script"),e=e[e.length-1].src.split("?")[0];return 0<e.split("/").length?e.split("/").slice(0,-1).join("/")+"/":""}();Array.prototype.forEach||(Array.prototype.forEach=function(e,c){for(var h=0,l=this.length;h<l;++h)e.call(c,this[h],h,this)});var v=window.requestAnimationFrame||!1,w=window.cancelAnimationFrame||!1;["ms","moz","webkit","o"].forEach(function(e){v||(v=window[e+"RequestAnimationFrame"]);w||(w=
|
||||
window[e+"CancelAnimationFrame"]||window[e+"CancelRequestAnimationFrame"])});var z=window.MutationObserver||window.WebKitMutationObserver||!1,F={zindex:"auto",cursoropacitymin:0,cursoropacitymax:1,cursorcolor:"#424242",cursorwidth:"5px",cursorborder:"1px solid #fff",cursorborderradius:"5px",scrollspeed:60,mousescrollstep:24,touchbehavior:!1,hwacceleration:!0,usetransition:!0,boxzoom:!1,dblclickzoom:!0,gesturezoom:!0,grabcursorenabled:!0,autohidemode:!0,background:"",iframeautoresize:!0,cursorminheight:32,
|
||||
preservenativescrolling:!0,railoffset:!1,bouncescroll:!0,spacebarenabled:!0,railpadding:{top:0,right:0,left:0,bottom:0},disableoutline:!0,horizrailenabled:!0,railalign:"right",railvalign:"bottom",enabletranslate3d:!0,enablemousewheel:!0,enablekeyboard:!0,smoothscroll:!0,sensitiverail:!0,enablemouselockapi:!0,cursorfixedheight:!1,directionlockdeadzone:6,hidecursordelay:400,nativeparentscrolling:!0,enablescrollonselection:!0,overflowx:!0,overflowy:!0,cursordragspeed:0.3,rtlmode:!1,cursordragontouch:!1},
|
||||
E=!1,M=function(){if(E)return E;var e=document.createElement("DIV"),c={haspointerlock:"pointerLockElement"in document||"mozPointerLockElement"in document||"webkitPointerLockElement"in document};c.isopera="opera"in window;c.isopera12=c.isopera&&"getUserMedia"in navigator;c.isie="all"in document&&"attachEvent"in e&&!c.isopera;c.isieold=c.isie&&!("msInterpolationMode"in e.style);c.isie7=c.isie&&!c.isieold&&(!("documentMode"in document)||7==document.documentMode);c.isie8=c.isie&&"documentMode"in document&&
|
||||
8==document.documentMode;c.isie9=c.isie&&"performance"in window&&9<=document.documentMode;c.isie10=c.isie&&"performance"in window&&10<=document.documentMode;c.isie9mobile=/iemobile.9/i.test(navigator.userAgent);c.isie9mobile&&(c.isie9=!1);c.isie7mobile=!c.isie9mobile&&c.isie7&&/iemobile/i.test(navigator.userAgent);c.ismozilla="MozAppearance"in e.style;c.iswebkit="WebkitAppearance"in e.style;c.ischrome="chrome"in window;c.ischrome22=c.ischrome&&c.haspointerlock;c.ischrome26=c.ischrome&&"transition"in
|
||||
e.style;c.cantouch="ontouchstart"in document.documentElement||"ontouchstart"in window;c.hasmstouch=window.navigator.msPointerEnabled||!1;c.ismac=/^mac$/i.test(navigator.platform);c.isios=c.cantouch&&/iphone|ipad|ipod/i.test(navigator.platform);c.isios4=c.isios&&!("seal"in Object);c.isandroid=/android/i.test(navigator.userAgent);c.trstyle=!1;c.hastransform=!1;c.hastranslate3d=!1;c.transitionstyle=!1;c.hastransition=!1;c.transitionend=!1;for(var h=["transform","msTransform","webkitTransform","MozTransform",
|
||||
"OTransform"],l=0;l<h.length;l++)if("undefined"!=typeof e.style[h[l]]){c.trstyle=h[l];break}c.hastransform=!1!=c.trstyle;c.hastransform&&(e.style[c.trstyle]="translate3d(1px,2px,3px)",c.hastranslate3d=/translate3d/.test(e.style[c.trstyle]));c.transitionstyle=!1;c.prefixstyle="";c.transitionend=!1;for(var h="transition webkitTransition MozTransition OTransition OTransition msTransition KhtmlTransition".split(" "),n=" -webkit- -moz- -o- -o -ms- -khtml-".split(" "),t="transitionend webkitTransitionEnd transitionend otransitionend oTransitionEnd msTransitionEnd KhtmlTransitionEnd".split(" "),
|
||||
l=0;l<h.length;l++)if(h[l]in e.style){c.transitionstyle=h[l];c.prefixstyle=n[l];c.transitionend=t[l];break}c.ischrome26&&(c.prefixstyle=n[1]);c.hastransition=c.transitionstyle;a:{h=["-moz-grab","-webkit-grab","grab"];if(c.ischrome&&!c.ischrome22||c.isie)h=[];for(l=0;l<h.length;l++)if(n=h[l],e.style.cursor=n,e.style.cursor==n){h=n;break a}h="url(http://www.google.com/intl/en_ALL/mapfiles/openhand.cur),n-resize"}c.cursorgrabvalue=h;c.hasmousecapture="setCapture"in e;c.hasMutationObserver=!1!==z;return E=
|
||||
c},N=function(k,c){function h(){var d=b.win;if("zIndex"in d)return d.zIndex();for(;0<d.length&&9!=d[0].nodeType;){var c=d.css("zIndex");if(!isNaN(c)&&0!=c)return parseInt(c);d=d.parent()}return!1}function l(d,c,g){c=d.css(c);d=parseFloat(c);return isNaN(d)?(d=u[c]||0,g=3==d?g?b.win.outerHeight()-b.win.innerHeight():b.win.outerWidth()-b.win.innerWidth():1,b.isie8&&d&&(d+=1),g?d:0):d}function n(d,c,g,e){b._bind(d,c,function(b){b=b?b:window.event;var e={original:b,target:b.target||b.srcElement,type:"wheel",
|
||||
deltaMode:"MozMousePixelScroll"==b.type?0:1,deltaX:0,deltaZ:0,preventDefault:function(){b.preventDefault?b.preventDefault():b.returnValue=!1;return!1},stopImmediatePropagation:function(){b.stopImmediatePropagation?b.stopImmediatePropagation():b.cancelBubble=!0}};"mousewheel"==c?(e.deltaY=-0.025*b.wheelDelta,b.wheelDeltaX&&(e.deltaX=-0.025*b.wheelDeltaX)):e.deltaY=b.detail;return g.call(d,e)},e)}function t(d,c,g){var e,f;0==d.deltaMode?(e=-Math.floor(d.deltaX*(b.opt.mousescrollstep/54)),f=-Math.floor(d.deltaY*
|
||||
(b.opt.mousescrollstep/54))):1==d.deltaMode&&(e=-Math.floor(d.deltaX*b.opt.mousescrollstep),f=-Math.floor(d.deltaY*b.opt.mousescrollstep));c&&(0==e&&f)&&(e=f,f=0);e&&(b.scrollmom&&b.scrollmom.stop(),b.lastdeltax+=e,b.debounced("mousewheelx",function(){var d=b.lastdeltax;b.lastdeltax=0;b.rail.drag||b.doScrollLeftBy(d)},120));if(f){if(b.opt.nativeparentscrolling&&g&&!b.ispage&&!b.zoomactive)if(0>f){if(b.getScrollTop()>=b.page.maxh)return!0}else if(0>=b.getScrollTop())return!0;b.scrollmom&&b.scrollmom.stop();
|
||||
b.lastdeltay+=f;b.debounced("mousewheely",function(){var d=b.lastdeltay;b.lastdeltay=0;b.rail.drag||b.doScrollBy(d)},120)}d.stopImmediatePropagation();return d.preventDefault()}var b=this;this.version="3.4.0";this.name="nicescroll";this.me=c;this.opt={doc:e("body"),win:!1};e.extend(this.opt,F);this.opt.snapbackspeed=80;if(k)for(var q in b.opt)"undefined"!=typeof k[q]&&(b.opt[q]=k[q]);this.iddoc=(this.doc=b.opt.doc)&&this.doc[0]?this.doc[0].id||"":"";this.ispage=/BODY|HTML/.test(b.opt.win?b.opt.win[0].nodeName:
|
||||
this.doc[0].nodeName);this.haswrapper=!1!==b.opt.win;this.win=b.opt.win||(this.ispage?e(window):this.doc);this.docscroll=this.ispage&&!this.haswrapper?e(window):this.win;this.body=e("body");this.iframe=this.isfixed=this.viewport=!1;this.isiframe="IFRAME"==this.doc[0].nodeName&&"IFRAME"==this.win[0].nodeName;this.istextarea="TEXTAREA"==this.win[0].nodeName;this.forcescreen=!1;this.canshowonmouseevent="scroll"!=b.opt.autohidemode;this.page=this.view=this.onzoomout=this.onzoomin=this.onscrollcancel=
|
||||
this.onscrollend=this.onscrollstart=this.onclick=this.ongesturezoom=this.onkeypress=this.onmousewheel=this.onmousemove=this.onmouseup=this.onmousedown=!1;this.scroll={x:0,y:0};this.scrollratio={x:0,y:0};this.cursorheight=20;this.scrollvaluemax=0;this.observerremover=this.observer=this.scrollmom=this.scrollrunning=this.checkrtlmode=!1;do this.id="ascrail"+K++;while(document.getElementById(this.id));this.hasmousefocus=this.hasfocus=this.zoomactive=this.zoom=this.selectiondrag=this.cursorfreezed=this.cursor=
|
||||
this.rail=!1;this.visibility=!0;this.hidden=this.locked=!1;this.cursoractive=!0;this.overflowx=b.opt.overflowx;this.overflowy=b.opt.overflowy;this.nativescrollingarea=!1;this.checkarea=0;this.events=[];this.saved={};this.delaylist={};this.synclist={};this.lastdeltay=this.lastdeltax=0;this.detected=M();var f=e.extend({},this.detected);this.ishwscroll=(this.canhwscroll=f.hastransform&&b.opt.hwacceleration)&&b.haswrapper;this.istouchcapable=!1;f.cantouch&&(f.ischrome&&!f.isios&&!f.isandroid)&&(this.istouchcapable=
|
||||
!0,f.cantouch=!1);f.cantouch&&(f.ismozilla&&!f.isios)&&(this.istouchcapable=!0,f.cantouch=!1);b.opt.enablemouselockapi||(f.hasmousecapture=!1,f.haspointerlock=!1);this.delayed=function(d,c,g,e){var f=b.delaylist[d],h=(new Date).getTime();if(!e&&f&&f.tt)return!1;f&&f.tt&&clearTimeout(f.tt);if(f&&f.last+g>h&&!f.tt)b.delaylist[d]={last:h+g,tt:setTimeout(function(){b.delaylist[d].tt=0;c.call()},g)};else if(!f||!f.tt)b.delaylist[d]={last:h,tt:0},setTimeout(function(){c.call()},0)};this.debounced=function(d,
|
||||
c,g){var f=b.delaylist[d];(new Date).getTime();b.delaylist[d]=c;f||setTimeout(function(){var c=b.delaylist[d];b.delaylist[d]=!1;c.call()},g)};this.synched=function(d,c){b.synclist[d]=c;(function(){b.onsync||(v(function(){b.onsync=!1;for(d in b.synclist){var c=b.synclist[d];c&&c.call(b);b.synclist[d]=!1}}),b.onsync=!0)})();return d};this.unsynched=function(d){b.synclist[d]&&(b.synclist[d]=!1)};this.css=function(d,c){for(var g in c)b.saved.css.push([d,g,d.css(g)]),d.css(g,c[g])};this.scrollTop=function(d){return"undefined"==
|
||||
typeof d?b.getScrollTop():b.setScrollTop(d)};this.scrollLeft=function(d){return"undefined"==typeof d?b.getScrollLeft():b.setScrollLeft(d)};BezierClass=function(b,c,g,f,e,h,l){this.st=b;this.ed=c;this.spd=g;this.p1=f||0;this.p2=e||1;this.p3=h||0;this.p4=l||1;this.ts=(new Date).getTime();this.df=this.ed-this.st};BezierClass.prototype={B2:function(b){return 3*b*b*(1-b)},B3:function(b){return 3*b*(1-b)*(1-b)},B4:function(b){return(1-b)*(1-b)*(1-b)},getNow:function(){var b=1-((new Date).getTime()-this.ts)/
|
||||
this.spd,c=this.B2(b)+this.B3(b)+this.B4(b);return 0>b?this.ed:this.st+Math.round(this.df*c)},update:function(b,c){this.st=this.getNow();this.ed=b;this.spd=c;this.ts=(new Date).getTime();this.df=this.ed-this.st;return this}};if(this.ishwscroll){this.doc.translate={x:0,y:0,tx:"0px",ty:"0px"};f.hastranslate3d&&f.isios&&this.doc.css("-webkit-backface-visibility","hidden");var r=function(){var d=b.doc.css(f.trstyle);return d&&"matrix"==d.substr(0,6)?d.replace(/^.*\((.*)\)$/g,"$1").replace(/px/g,"").split(/, +/):
|
||||
!1};this.getScrollTop=function(d){if(!d){if(d=r())return 16==d.length?-d[13]:-d[5];if(b.timerscroll&&b.timerscroll.bz)return b.timerscroll.bz.getNow()}return b.doc.translate.y};this.getScrollLeft=function(d){if(!d){if(d=r())return 16==d.length?-d[12]:-d[4];if(b.timerscroll&&b.timerscroll.bh)return b.timerscroll.bh.getNow()}return b.doc.translate.x};this.notifyScrollEvent=document.createEvent?function(b){var c=document.createEvent("UIEvents");c.initUIEvent("scroll",!1,!0,window,1);b.dispatchEvent(c)}:
|
||||
document.fireEvent?function(b){var c=document.createEventObject();b.fireEvent("onscroll");c.cancelBubble=!0}:function(b,c){};f.hastranslate3d&&b.opt.enabletranslate3d?(this.setScrollTop=function(d,c){b.doc.translate.y=d;b.doc.translate.ty=-1*d+"px";b.doc.css(f.trstyle,"translate3d("+b.doc.translate.tx+","+b.doc.translate.ty+",0px)");c||b.notifyScrollEvent(b.win[0])},this.setScrollLeft=function(d,c){b.doc.translate.x=d;b.doc.translate.tx=-1*d+"px";b.doc.css(f.trstyle,"translate3d("+b.doc.translate.tx+
|
||||
","+b.doc.translate.ty+",0px)");c||b.notifyScrollEvent(b.win[0])}):(this.setScrollTop=function(d,c){b.doc.translate.y=d;b.doc.translate.ty=-1*d+"px";b.doc.css(f.trstyle,"translate("+b.doc.translate.tx+","+b.doc.translate.ty+")");c||b.notifyScrollEvent(b.win[0])},this.setScrollLeft=function(d,c){b.doc.translate.x=d;b.doc.translate.tx=-1*d+"px";b.doc.css(f.trstyle,"translate("+b.doc.translate.tx+","+b.doc.translate.ty+")");c||b.notifyScrollEvent(b.win[0])})}else this.getScrollTop=function(){return b.docscroll.scrollTop()},
|
||||
this.setScrollTop=function(d){return b.docscroll.scrollTop(d)},this.getScrollLeft=function(){return b.docscroll.scrollLeft()},this.setScrollLeft=function(d){return b.docscroll.scrollLeft(d)};this.getTarget=function(b){return!b?!1:b.target?b.target:b.srcElement?b.srcElement:!1};this.hasParent=function(b,c){if(!b)return!1;for(var g=b.target||b.srcElement||b||!1;g&&g.id!=c;)g=g.parentNode||!1;return!1!==g};var u={thin:1,medium:3,thick:5};this.getOffset=function(){if(b.isfixed)return{top:parseFloat(b.win.css("top")),
|
||||
left:parseFloat(b.win.css("left"))};if(!b.viewport)return b.win.offset();var d=b.win.offset(),c=b.viewport.offset();return{top:d.top-c.top+b.viewport.scrollTop(),left:d.left-c.left+b.viewport.scrollLeft()}};this.updateScrollBar=function(d){if(b.ishwscroll)b.rail.css({height:b.win.innerHeight()}),b.railh&&b.railh.css({width:b.win.innerWidth()});else{var c=b.getOffset(),g=c.top,f=c.left,g=g+l(b.win,"border-top-width",!0);b.win.outerWidth();b.win.innerWidth();var f=f+(b.rail.align?b.win.outerWidth()-
|
||||
l(b.win,"border-right-width")-b.rail.width:l(b.win,"border-left-width")),e=b.opt.railoffset;e&&(e.top&&(g+=e.top),b.rail.align&&e.left&&(f+=e.left));b.locked||b.rail.css({top:g,left:f,height:d?d.h:b.win.innerHeight()});b.zoom&&b.zoom.css({top:g+1,left:1==b.rail.align?f-20:f+b.rail.width+4});b.railh&&!b.locked&&(g=c.top,f=c.left,d=b.railh.align?g+l(b.win,"border-top-width",!0)+b.win.innerHeight()-b.railh.height:g+l(b.win,"border-top-width",!0),f+=l(b.win,"border-left-width"),b.railh.css({top:d,left:f,
|
||||
width:b.railh.width}))}};this.doRailClick=function(d,c,g){var f;b.locked||(b.cancelEvent(d),c?(c=g?b.doScrollLeft:b.doScrollTop,f=g?(d.pageX-b.railh.offset().left-b.cursorwidth/2)*b.scrollratio.x:(d.pageY-b.rail.offset().top-b.cursorheight/2)*b.scrollratio.y,c(f)):(c=g?b.doScrollLeftBy:b.doScrollBy,f=g?b.scroll.x:b.scroll.y,d=g?d.pageX-b.railh.offset().left:d.pageY-b.rail.offset().top,g=g?b.view.w:b.view.h,f>=d?c(g):c(-g)))};b.hasanimationframe=v;b.hascancelanimationframe=w;b.hasanimationframe?b.hascancelanimationframe||
|
||||
(w=function(){b.cancelAnimationFrame=!0}):(v=function(b){return setTimeout(b,15-Math.floor(+new Date/1E3)%16)},w=clearInterval);this.init=function(){b.saved.css=[];if(f.isie7mobile)return!0;f.hasmstouch&&b.css(b.ispage?e("html"):b.win,{"-ms-touch-action":"none"});b.zindex="auto";b.zindex=!b.ispage&&"auto"==b.opt.zindex?h()||"auto":b.opt.zindex;!b.ispage&&"auto"!=b.zindex&&b.zindex>x&&(x=b.zindex);b.isie&&(0==b.zindex&&"auto"==b.opt.zindex)&&(b.zindex="auto");if(!b.ispage||!f.cantouch&&!f.isieold&&
|
||||
!f.isie9mobile){var d=b.docscroll;b.ispage&&(d=b.haswrapper?b.win:b.doc);f.isie9mobile||b.css(d,{"overflow-y":"hidden"});b.ispage&&f.isie7&&("BODY"==b.doc[0].nodeName?b.css(e("html"),{"overflow-y":"hidden"}):"HTML"==b.doc[0].nodeName&&b.css(e("body"),{"overflow-y":"hidden"}));f.isios&&(!b.ispage&&!b.haswrapper)&&b.css(e("body"),{"-webkit-overflow-scrolling":"touch"});var c=e(document.createElement("div"));c.css({position:"relative",top:0,"float":"right",width:b.opt.cursorwidth,height:"0px","background-color":b.opt.cursorcolor,
|
||||
border:b.opt.cursorborder,"background-clip":"padding-box","-webkit-border-radius":b.opt.cursorborderradius,"-moz-border-radius":b.opt.cursorborderradius,"border-radius":b.opt.cursorborderradius});c.hborder=parseFloat(c.outerHeight()-c.innerHeight());b.cursor=c;var g=e(document.createElement("div"));g.attr("id",b.id);g.addClass("nicescroll-rails");var l,k,n=["left","right"],G;for(G in n)k=n[G],(l=b.opt.railpadding[k])?g.css("padding-"+k,l+"px"):b.opt.railpadding[k]=0;g.append(c);g.width=Math.max(parseFloat(b.opt.cursorwidth),
|
||||
c.outerWidth())+b.opt.railpadding.left+b.opt.railpadding.right;g.css({width:g.width+"px",zIndex:b.zindex,background:b.opt.background,cursor:"default"});g.visibility=!0;g.scrollable=!0;g.align="left"==b.opt.railalign?0:1;b.rail=g;c=b.rail.drag=!1;b.opt.boxzoom&&(!b.ispage&&!f.isieold)&&(c=document.createElement("div"),b.bind(c,"click",b.doZoom),b.zoom=e(c),b.zoom.css({cursor:"pointer","z-index":b.zindex,backgroundImage:"url("+L+"zoomico.png)",height:18,width:18,backgroundPosition:"0px 0px"}),b.opt.dblclickzoom&&
|
||||
b.bind(b.win,"dblclick",b.doZoom),f.cantouch&&b.opt.gesturezoom&&(b.ongesturezoom=function(d){1.5<d.scale&&b.doZoomIn(d);0.8>d.scale&&b.doZoomOut(d);return b.cancelEvent(d)},b.bind(b.win,"gestureend",b.ongesturezoom)));b.railh=!1;if(b.opt.horizrailenabled){b.css(d,{"overflow-x":"hidden"});c=e(document.createElement("div"));c.css({position:"relative",top:0,height:b.opt.cursorwidth,width:"0px","background-color":b.opt.cursorcolor,border:b.opt.cursorborder,"background-clip":"padding-box","-webkit-border-radius":b.opt.cursorborderradius,
|
||||
"-moz-border-radius":b.opt.cursorborderradius,"border-radius":b.opt.cursorborderradius});c.wborder=parseFloat(c.outerWidth()-c.innerWidth());b.cursorh=c;var m=e(document.createElement("div"));m.attr("id",b.id+"-hr");m.addClass("nicescroll-rails");m.height=Math.max(parseFloat(b.opt.cursorwidth),c.outerHeight());m.css({height:m.height+"px",zIndex:b.zindex,background:b.opt.background});m.append(c);m.visibility=!0;m.scrollable=!0;m.align="top"==b.opt.railvalign?0:1;b.railh=m;b.railh.drag=!1}b.ispage?
|
||||
(g.css({position:"fixed",top:"0px",height:"100%"}),g.align?g.css({right:"0px"}):g.css({left:"0px"}),b.body.append(g),b.railh&&(m.css({position:"fixed",left:"0px",width:"100%"}),m.align?m.css({bottom:"0px"}):m.css({top:"0px"}),b.body.append(m))):(b.ishwscroll?("static"==b.win.css("position")&&b.css(b.win,{position:"relative"}),d="HTML"==b.win[0].nodeName?b.body:b.win,b.zoom&&(b.zoom.css({position:"absolute",top:1,right:0,"margin-right":g.width+4}),d.append(b.zoom)),g.css({position:"absolute",top:0}),
|
||||
g.align?g.css({right:0}):g.css({left:0}),d.append(g),m&&(m.css({position:"absolute",left:0,bottom:0}),m.align?m.css({bottom:0}):m.css({top:0}),d.append(m))):(b.isfixed="fixed"==b.win.css("position"),d=b.isfixed?"fixed":"absolute",b.isfixed||(b.viewport=b.getViewport(b.win[0])),b.viewport&&(b.body=b.viewport,!1==/relative|absolute/.test(b.viewport.css("position"))&&b.css(b.viewport,{position:"relative"})),g.css({position:d}),b.zoom&&b.zoom.css({position:d}),b.updateScrollBar(),b.body.append(g),b.zoom&&
|
||||
b.body.append(b.zoom),b.railh&&(m.css({position:d}),b.body.append(m))),f.isios&&b.css(b.win,{"-webkit-tap-highlight-color":"rgba(0,0,0,0)","-webkit-touch-callout":"none"}),f.isie&&b.opt.disableoutline&&b.win.attr("hideFocus","true"),f.iswebkit&&b.opt.disableoutline&&b.win.css({outline:"none"}));!1===b.opt.autohidemode?(b.autohidedom=!1,b.rail.css({opacity:b.opt.cursoropacitymax}),b.railh&&b.railh.css({opacity:b.opt.cursoropacitymax})):!0===b.opt.autohidemode?(b.autohidedom=e().add(b.rail),f.isie8&&
|
||||
(b.autohidedom=b.autohidedom.add(b.cursor)),b.railh&&(b.autohidedom=b.autohidedom.add(b.railh)),b.railh&&f.isie8&&(b.autohidedom=b.autohidedom.add(b.cursorh))):"scroll"==b.opt.autohidemode?(b.autohidedom=e().add(b.rail),b.railh&&(b.autohidedom=b.autohidedom.add(b.railh))):"cursor"==b.opt.autohidemode?(b.autohidedom=e().add(b.cursor),b.railh&&(b.autohidedom=b.autohidedom.add(b.cursorh))):"hidden"==b.opt.autohidemode&&(b.autohidedom=!1,b.hide(),b.locked=!1);if(f.isie9mobile)b.scrollmom=new H(b),b.onmangotouch=
|
||||
function(d){d=b.getScrollTop();var c=b.getScrollLeft();if(d==b.scrollmom.lastscrolly&&c==b.scrollmom.lastscrollx)return!0;var g=d-b.mangotouch.sy,f=c-b.mangotouch.sx;if(0!=Math.round(Math.sqrt(Math.pow(f,2)+Math.pow(g,2)))){var p=0>g?-1:1,e=0>f?-1:1,h=+new Date;b.mangotouch.lazy&&clearTimeout(b.mangotouch.lazy);80<h-b.mangotouch.tm||b.mangotouch.dry!=p||b.mangotouch.drx!=e?(b.scrollmom.stop(),b.scrollmom.reset(c,d),b.mangotouch.sy=d,b.mangotouch.ly=d,b.mangotouch.sx=c,b.mangotouch.lx=c,b.mangotouch.dry=
|
||||
p,b.mangotouch.drx=e,b.mangotouch.tm=h):(b.scrollmom.stop(),b.scrollmom.update(b.mangotouch.sx-f,b.mangotouch.sy-g),b.mangotouch.tm=h,g=Math.max(Math.abs(b.mangotouch.ly-d),Math.abs(b.mangotouch.lx-c)),b.mangotouch.ly=d,b.mangotouch.lx=c,2<g&&(b.mangotouch.lazy=setTimeout(function(){b.mangotouch.lazy=!1;b.mangotouch.dry=0;b.mangotouch.drx=0;b.mangotouch.tm=0;b.scrollmom.doMomentum(30)},100)))}},g=b.getScrollTop(),m=b.getScrollLeft(),b.mangotouch={sy:g,ly:g,dry:0,sx:m,lx:m,drx:0,lazy:!1,tm:0},b.bind(b.docscroll,
|
||||
"scroll",b.onmangotouch);else{if(f.cantouch||b.istouchcapable||b.opt.touchbehavior||f.hasmstouch){b.scrollmom=new H(b);b.ontouchstart=function(d){if(d.pointerType&&2!=d.pointerType)return!1;if(!b.locked){if(f.hasmstouch)for(var c=d.target?d.target:!1;c;){var g=e(c).getNiceScroll();if(0<g.length&&g[0].me==b.me)break;if(0<g.length)return!1;if("DIV"==c.nodeName&&c.id==b.id)break;c=c.parentNode?c.parentNode:!1}b.cancelScroll();if((c=b.getTarget(d))&&/INPUT/i.test(c.nodeName)&&/range/i.test(c.type))return b.stopPropagation(d);
|
||||
!("clientX"in d)&&"changedTouches"in d&&(d.clientX=d.changedTouches[0].clientX,d.clientY=d.changedTouches[0].clientY);b.forcescreen&&(g=d,d={original:d.original?d.original:d},d.clientX=g.screenX,d.clientY=g.screenY);b.rail.drag={x:d.clientX,y:d.clientY,sx:b.scroll.x,sy:b.scroll.y,st:b.getScrollTop(),sl:b.getScrollLeft(),pt:2,dl:!1};if(b.ispage||!b.opt.directionlockdeadzone)b.rail.drag.dl="f";else{var g=e(window).width(),p=e(window).height(),h=Math.max(document.body.scrollWidth,document.documentElement.scrollWidth),
|
||||
l=Math.max(document.body.scrollHeight,document.documentElement.scrollHeight),p=Math.max(0,l-p),g=Math.max(0,h-g);b.rail.drag.ck=!b.rail.scrollable&&b.railh.scrollable?0<p?"v":!1:b.rail.scrollable&&!b.railh.scrollable?0<g?"h":!1:!1;b.rail.drag.ck||(b.rail.drag.dl="f")}b.opt.touchbehavior&&(b.isiframe&&f.isie)&&(g=b.win.position(),b.rail.drag.x+=g.left,b.rail.drag.y+=g.top);b.hasmoving=!1;b.lastmouseup=!1;b.scrollmom.reset(d.clientX,d.clientY);if(!f.cantouch&&!this.istouchcapable&&!f.hasmstouch){if(!c||
|
||||
!/INPUT|SELECT|TEXTAREA/i.test(c.nodeName))return!b.ispage&&f.hasmousecapture&&c.setCapture(),b.cancelEvent(d);/SUBMIT|CANCEL|BUTTON/i.test(e(c).attr("type"))&&(pc={tg:c,click:!1},b.preventclick=pc)}}};b.ontouchend=function(d){if(d.pointerType&&2!=d.pointerType)return!1;if(b.rail.drag&&2==b.rail.drag.pt&&(b.scrollmom.doMomentum(),b.rail.drag=!1,b.hasmoving&&(b.hasmoving=!1,b.lastmouseup=!0,b.hideCursor(),f.hasmousecapture&&document.releaseCapture(),!f.cantouch)))return b.cancelEvent(d)};var q=b.opt.touchbehavior&&
|
||||
b.isiframe&&!f.hasmousecapture;b.ontouchmove=function(d,c){if(d.pointerType&&2!=d.pointerType)return!1;if(b.rail.drag&&2==b.rail.drag.pt){if(f.cantouch&&"undefined"==typeof d.original)return!0;b.hasmoving=!0;b.preventclick&&!b.preventclick.click&&(b.preventclick.click=b.preventclick.tg.onclick||!1,b.preventclick.tg.onclick=b.onpreventclick);d=e.extend({original:d},d);"changedTouches"in d&&(d.clientX=d.changedTouches[0].clientX,d.clientY=d.changedTouches[0].clientY);if(b.forcescreen){var g=d;d={original:d.original?
|
||||
d.original:d};d.clientX=g.screenX;d.clientY=g.screenY}g=ofy=0;if(q&&!c){var p=b.win.position(),g=-p.left;ofy=-p.top}var h=d.clientY+ofy,p=h-b.rail.drag.y,l=d.clientX+g,k=l-b.rail.drag.x,s=b.rail.drag.st-p;b.ishwscroll&&b.opt.bouncescroll?0>s?s=Math.round(s/2):s>b.page.maxh&&(s=b.page.maxh+Math.round((s-b.page.maxh)/2)):(0>s&&(h=s=0),s>b.page.maxh&&(s=b.page.maxh,h=0));if(b.railh&&b.railh.scrollable){var m=b.rail.drag.sl-k;b.ishwscroll&&b.opt.bouncescroll?0>m?m=Math.round(m/2):m>b.page.maxw&&(m=b.page.maxw+
|
||||
Math.round((m-b.page.maxw)/2)):(0>m&&(l=m=0),m>b.page.maxw&&(m=b.page.maxw,l=0))}g=!1;if(b.rail.drag.dl)g=!0,"v"==b.rail.drag.dl?m=b.rail.drag.sl:"h"==b.rail.drag.dl&&(s=b.rail.drag.st);else{var p=Math.abs(p),k=Math.abs(k),n=b.opt.directionlockdeadzone;if("v"==b.rail.drag.ck){if(p>n&&k<=0.3*p)return b.rail.drag=!1,!0;k>n&&(b.rail.drag.dl="f",e("body").scrollTop(e("body").scrollTop()))}else if("h"==b.rail.drag.ck){if(k>n&&p<=0.3*az)return b.rail.drag=!1,!0;p>n&&(b.rail.drag.dl="f",e("body").scrollLeft(e("body").scrollLeft()))}}b.synched("touchmove",
|
||||
function(){b.rail.drag&&2==b.rail.drag.pt&&(b.prepareTransition&&b.prepareTransition(0),b.rail.scrollable&&b.setScrollTop(s),b.scrollmom.update(l,h),b.railh&&b.railh.scrollable?(b.setScrollLeft(m),b.showCursor(s,m)):b.showCursor(s),f.isie10&&document.selection.clear())});f.ischrome&&b.istouchcapable&&(g=!1);if(g)return b.cancelEvent(d)}}}b.onmousedown=function(d,c){if(!(b.rail.drag&&1!=b.rail.drag.pt)){if(b.locked)return b.cancelEvent(d);b.cancelScroll();b.rail.drag={x:d.clientX,y:d.clientY,sx:b.scroll.x,
|
||||
sy:b.scroll.y,pt:1,hr:!!c};var g=b.getTarget(d);!b.ispage&&f.hasmousecapture&&g.setCapture();b.isiframe&&!f.hasmousecapture&&(b.saved.csspointerevents=b.doc.css("pointer-events"),b.css(b.doc,{"pointer-events":"none"}));return b.cancelEvent(d)}};b.onmouseup=function(d){if(b.rail.drag&&(f.hasmousecapture&&document.releaseCapture(),b.isiframe&&!f.hasmousecapture&&b.doc.css("pointer-events",b.saved.csspointerevents),1==b.rail.drag.pt))return b.rail.drag=!1,b.cancelEvent(d)};b.onmousemove=function(d){if(b.rail.drag&&
|
||||
1==b.rail.drag.pt){if(f.ischrome&&0==d.which)return b.onmouseup(d);b.cursorfreezed=!0;if(b.rail.drag.hr){b.scroll.x=b.rail.drag.sx+(d.clientX-b.rail.drag.x);0>b.scroll.x&&(b.scroll.x=0);var c=b.scrollvaluemaxw;b.scroll.x>c&&(b.scroll.x=c)}else b.scroll.y=b.rail.drag.sy+(d.clientY-b.rail.drag.y),0>b.scroll.y&&(b.scroll.y=0),c=b.scrollvaluemax,b.scroll.y>c&&(b.scroll.y=c);b.synched("mousemove",function(){b.rail.drag&&1==b.rail.drag.pt&&(b.showCursor(),b.rail.drag.hr?b.doScrollLeft(Math.round(b.scroll.x*
|
||||
b.scrollratio.x),b.opt.cursordragspeed):b.doScrollTop(Math.round(b.scroll.y*b.scrollratio.y),b.opt.cursordragspeed))});return b.cancelEvent(d)}};if(f.cantouch||b.opt.touchbehavior)b.onpreventclick=function(d){if(b.preventclick)return b.preventclick.tg.onclick=b.preventclick.click,b.preventclick=!1,b.cancelEvent(d)},b.bind(b.win,"mousedown",b.ontouchstart),b.onclick=f.isios?!1:function(d){return b.lastmouseup?(b.lastmouseup=!1,b.cancelEvent(d)):!0},b.opt.grabcursorenabled&&f.cursorgrabvalue&&(b.css(b.ispage?
|
||||
b.doc:b.win,{cursor:f.cursorgrabvalue}),b.css(b.rail,{cursor:f.cursorgrabvalue}));else{var r=function(d){if(b.selectiondrag){if(d){var c=b.win.outerHeight();d=d.pageY-b.selectiondrag.top;0<d&&d<c&&(d=0);d>=c&&(d-=c);b.selectiondrag.df=d}0!=b.selectiondrag.df&&(b.doScrollBy(2*-Math.floor(b.selectiondrag.df/6)),b.debounced("doselectionscroll",function(){r()},50))}};b.hasTextSelected="getSelection"in document?function(){return 0<document.getSelection().rangeCount}:"selection"in document?function(){return"None"!=
|
||||
document.selection.type}:function(){return!1};b.onselectionstart=function(d){b.ispage||(b.selectiondrag=b.win.offset())};b.onselectionend=function(d){b.selectiondrag=!1};b.onselectiondrag=function(d){b.selectiondrag&&b.hasTextSelected()&&b.debounced("selectionscroll",function(){r(d)},250)}}f.hasmstouch&&(b.css(b.rail,{"-ms-touch-action":"none"}),b.css(b.cursor,{"-ms-touch-action":"none"}),b.bind(b.win,"MSPointerDown",b.ontouchstart),b.bind(document,"MSPointerUp",b.ontouchend),b.bind(document,"MSPointerMove",
|
||||
b.ontouchmove),b.bind(b.cursor,"MSGestureHold",function(b){b.preventDefault()}),b.bind(b.cursor,"contextmenu",function(b){b.preventDefault()}));this.istouchcapable&&(b.bind(b.win,"touchstart",b.ontouchstart),b.bind(document,"touchend",b.ontouchend),b.bind(document,"touchcancel",b.ontouchend),b.bind(document,"touchmove",b.ontouchmove));b.bind(b.cursor,"mousedown",b.onmousedown);b.bind(b.cursor,"mouseup",b.onmouseup);b.railh&&(b.bind(b.cursorh,"mousedown",function(d){b.onmousedown(d,!0)}),b.bind(b.cursorh,
|
||||
"mouseup",function(d){if(!(b.rail.drag&&2==b.rail.drag.pt))return b.rail.drag=!1,b.hasmoving=!1,b.hideCursor(),f.hasmousecapture&&document.releaseCapture(),b.cancelEvent(d)}));if(b.opt.cursordragontouch||!f.cantouch&&!b.opt.touchbehavior)b.rail.css({cursor:"default"}),b.railh&&b.railh.css({cursor:"default"}),b.jqbind(b.rail,"mouseenter",function(){b.canshowonmouseevent&&b.showCursor();b.rail.active=!0}),b.jqbind(b.rail,"mouseleave",function(){b.rail.active=!1;b.rail.drag||b.hideCursor()}),b.opt.sensitiverail&&
|
||||
(b.bind(b.rail,"click",function(d){b.doRailClick(d,!1,!1)}),b.bind(b.rail,"dblclick",function(d){b.doRailClick(d,!0,!1)}),b.bind(b.cursor,"click",function(d){b.cancelEvent(d)}),b.bind(b.cursor,"dblclick",function(d){b.cancelEvent(d)})),b.railh&&(b.jqbind(b.railh,"mouseenter",function(){b.canshowonmouseevent&&b.showCursor();b.rail.active=!0}),b.jqbind(b.railh,"mouseleave",function(){b.rail.active=!1;b.rail.drag||b.hideCursor()}),b.opt.sensitiverail&&(b.bind(b.railh,"click",function(d){b.doRailClick(d,
|
||||
!1,!0)}),b.bind(b.railh,"dblclick",function(d){b.doRailClick(d,!0,!0)}),b.bind(b.cursorh,"click",function(d){b.cancelEvent(d)}),b.bind(b.cursorh,"dblclick",function(d){b.cancelEvent(d)})));!f.cantouch&&!b.opt.touchbehavior?(b.bind(f.hasmousecapture?b.win:document,"mouseup",b.onmouseup),b.bind(document,"mousemove",b.onmousemove),b.onclick&&b.bind(document,"click",b.onclick),!b.ispage&&b.opt.enablescrollonselection&&(b.bind(b.win[0],"mousedown",b.onselectionstart),b.bind(document,"mouseup",b.onselectionend),
|
||||
b.bind(b.cursor,"mouseup",b.onselectionend),b.cursorh&&b.bind(b.cursorh,"mouseup",b.onselectionend),b.bind(document,"mousemove",b.onselectiondrag)),b.zoom&&(b.jqbind(b.zoom,"mouseenter",function(){b.canshowonmouseevent&&b.showCursor();b.rail.active=!0}),b.jqbind(b.zoom,"mouseleave",function(){b.rail.active=!1;b.rail.drag||b.hideCursor()}))):(b.bind(f.hasmousecapture?b.win:document,"mouseup",b.ontouchend),b.bind(document,"mousemove",b.ontouchmove),b.onclick&&b.bind(document,"click",b.onclick),b.opt.cursordragontouch&&
|
||||
(b.bind(b.cursor,"mousedown",b.onmousedown),b.bind(b.cursor,"mousemove",b.onmousemove),b.cursorh&&b.bind(b.cursorh,"mousedown",b.onmousedown),b.cursorh&&b.bind(b.cursorh,"mousemove",b.onmousemove)));b.opt.enablemousewheel&&(b.isiframe||b.bind(f.isie&&b.ispage?document:b.docscroll,"mousewheel",b.onmousewheel),b.bind(b.rail,"mousewheel",b.onmousewheel),b.railh&&b.bind(b.railh,"mousewheel",b.onmousewheelhr));!b.ispage&&(!f.cantouch&&!/HTML|BODY/.test(b.win[0].nodeName))&&(b.win.attr("tabindex")||b.win.attr({tabindex:J++}),
|
||||
b.jqbind(b.win,"focus",function(d){y=b.getTarget(d).id||!0;b.hasfocus=!0;b.canshowonmouseevent&&b.noticeCursor()}),b.jqbind(b.win,"blur",function(d){y=!1;b.hasfocus=!1}),b.jqbind(b.win,"mouseenter",function(d){D=b.getTarget(d).id||!0;b.hasmousefocus=!0;b.canshowonmouseevent&&b.noticeCursor()}),b.jqbind(b.win,"mouseleave",function(){D=!1;b.hasmousefocus=!1}))}b.onkeypress=function(d){if(b.locked&&0==b.page.maxh)return!0;d=d?d:window.e;var c=b.getTarget(d);if(c&&/INPUT|TEXTAREA|SELECT|OPTION/.test(c.nodeName)&&
|
||||
(!c.getAttribute("type")&&!c.type||!/submit|button|cancel/i.tp))return!0;if(b.hasfocus||b.hasmousefocus&&!y||b.ispage&&!y&&!D){c=d.keyCode;if(b.locked&&27!=c)return b.cancelEvent(d);var g=d.ctrlKey||!1,p=d.shiftKey||!1,f=!1;switch(c){case 38:case 63233:b.doScrollBy(72);f=!0;break;case 40:case 63235:b.doScrollBy(-72);f=!0;break;case 37:case 63232:b.railh&&(g?b.doScrollLeft(0):b.doScrollLeftBy(72),f=!0);break;case 39:case 63234:b.railh&&(g?b.doScrollLeft(b.page.maxw):b.doScrollLeftBy(-72),f=!0);break;
|
||||
case 33:case 63276:b.doScrollBy(b.view.h);f=!0;break;case 34:case 63277:b.doScrollBy(-b.view.h);f=!0;break;case 36:case 63273:b.railh&&g?b.doScrollPos(0,0):b.doScrollTo(0);f=!0;break;case 35:case 63275:b.railh&&g?b.doScrollPos(b.page.maxw,b.page.maxh):b.doScrollTo(b.page.maxh);f=!0;break;case 32:b.opt.spacebarenabled&&(p?b.doScrollBy(b.view.h):b.doScrollBy(-b.view.h),f=!0);break;case 27:b.zoomactive&&(b.doZoom(),f=!0)}if(f)return b.cancelEvent(d)}};b.opt.enablekeyboard&&b.bind(document,f.isopera&&
|
||||
!f.isopera12?"keypress":"keydown",b.onkeypress);b.bind(window,"resize",b.lazyResize);b.bind(window,"orientationchange",b.lazyResize);b.bind(window,"load",b.lazyResize);if(f.ischrome&&!b.ispage&&!b.haswrapper){var t=b.win.attr("style"),g=parseFloat(b.win.css("width"))+1;b.win.css("width",g);b.synched("chromefix",function(){b.win.attr("style",t)})}b.onAttributeChange=function(d){b.lazyResize(250)};!b.ispage&&!b.haswrapper&&(!1!==z?(b.observer=new z(function(d){d.forEach(b.onAttributeChange)}),b.observer.observe(b.win[0],
|
||||
{childList:!0,characterData:!1,attributes:!0,subtree:!1}),b.observerremover=new z(function(d){d.forEach(function(d){if(0<d.removedNodes.length)for(var c in d.removedNodes)if(d.removedNodes[c]==b.win[0])return b.remove()})}),b.observerremover.observe(b.win[0].parentNode,{childList:!0,characterData:!1,attributes:!1,subtree:!1})):(b.bind(b.win,f.isie&&!f.isie9?"propertychange":"DOMAttrModified",b.onAttributeChange),f.isie9&&b.win[0].attachEvent("onpropertychange",b.onAttributeChange),b.bind(b.win,"DOMNodeRemoved",
|
||||
function(d){d.target==b.win[0]&&b.remove()})));!b.ispage&&b.opt.boxzoom&&b.bind(window,"resize",b.resizeZoom);b.istextarea&&b.bind(b.win,"mouseup",b.lazyResize);b.checkrtlmode=!0;b.lazyResize(30)}if("IFRAME"==this.doc[0].nodeName){var I=function(d){b.iframexd=!1;try{var c="contentDocument"in this?this.contentDocument:this.contentWindow.document}catch(g){b.iframexd=!0,c=!1}if(b.iframexd)return"console"in window&&console.log("NiceScroll error: policy restriced iframe"),!0;b.forcescreen=!0;b.isiframe&&
|
||||
(b.iframe={doc:e(c),html:b.doc.contents().find("html")[0],body:b.doc.contents().find("body")[0]},b.getContentSize=function(){return{w:Math.max(b.iframe.html.scrollWidth,b.iframe.body.scrollWidth),h:Math.max(b.iframe.html.scrollHeight,b.iframe.body.scrollHeight)}},b.docscroll=e(b.iframe.body));!f.isios&&(b.opt.iframeautoresize&&!b.isiframe)&&(b.win.scrollTop(0),b.doc.height(""),d=Math.max(c.getElementsByTagName("html")[0].scrollHeight,c.body.scrollHeight),b.doc.height(d));b.lazyResize(30);f.isie7&&
|
||||
b.css(e(b.iframe.html),{"overflow-y":"hidden"});b.css(e(b.iframe.body),{"overflow-y":"hidden"});"contentWindow"in this?b.bind(this.contentWindow,"scroll",b.onscroll):b.bind(c,"scroll",b.onscroll);b.opt.enablemousewheel&&b.bind(c,"mousewheel",b.onmousewheel);b.opt.enablekeyboard&&b.bind(c,f.isopera?"keypress":"keydown",b.onkeypress);if(f.cantouch||b.opt.touchbehavior)b.bind(c,"mousedown",b.onmousedown),b.bind(c,"mousemove",function(d){b.onmousemove(d,!0)}),b.opt.grabcursorenabled&&f.cursorgrabvalue&&
|
||||
b.css(e(c.body),{cursor:f.cursorgrabvalue});b.bind(c,"mouseup",b.onmouseup);b.zoom&&(b.opt.dblclickzoom&&b.bind(c,"dblclick",b.doZoom),b.ongesturezoom&&b.bind(c,"gestureend",b.ongesturezoom))};this.doc[0].readyState&&"complete"==this.doc[0].readyState&&setTimeout(function(){I.call(b.doc[0],!1)},500);b.bind(this.doc,"load",I)}};this.showCursor=function(d,c){b.cursortimeout&&(clearTimeout(b.cursortimeout),b.cursortimeout=0);if(b.rail){b.autohidedom&&(b.autohidedom.stop().css({opacity:b.opt.cursoropacitymax}),
|
||||
b.cursoractive=!0);if(!b.rail.drag||1!=b.rail.drag.pt)"undefined"!=typeof d&&!1!==d&&(b.scroll.y=Math.round(1*d/b.scrollratio.y)),"undefined"!=typeof c&&(b.scroll.x=Math.round(1*c/b.scrollratio.x));b.cursor.css({height:b.cursorheight,top:b.scroll.y});b.cursorh&&(!b.rail.align&&b.rail.visibility?b.cursorh.css({width:b.cursorwidth,left:b.scroll.x+b.rail.width}):b.cursorh.css({width:b.cursorwidth,left:b.scroll.x}),b.cursoractive=!0);b.zoom&&b.zoom.stop().css({opacity:b.opt.cursoropacitymax})}};this.hideCursor=
|
||||
function(d){!b.cursortimeout&&(b.rail&&b.autohidedom)&&(b.cursortimeout=setTimeout(function(){if(!b.rail.active||!b.showonmouseevent)b.autohidedom.stop().animate({opacity:b.opt.cursoropacitymin}),b.zoom&&b.zoom.stop().animate({opacity:b.opt.cursoropacitymin}),b.cursoractive=!1;b.cursortimeout=0},d||b.opt.hidecursordelay))};this.noticeCursor=function(d,c,g){b.showCursor(c,g);b.rail.active||b.hideCursor(d)};this.getContentSize=b.ispage?function(){return{w:Math.max(document.body.scrollWidth,document.documentElement.scrollWidth),
|
||||
h:Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)}}:b.haswrapper?function(){return{w:b.doc.outerWidth()+parseInt(b.win.css("paddingLeft"))+parseInt(b.win.css("paddingRight")),h:b.doc.outerHeight()+parseInt(b.win.css("paddingTop"))+parseInt(b.win.css("paddingBottom"))}}:function(){return{w:b.docscroll[0].scrollWidth,h:b.docscroll[0].scrollHeight}};this.onResize=function(d,c){if(!b.win)return!1;if(!b.haswrapper&&!b.ispage){if("none"==b.win.css("display"))return b.visibility&&
|
||||
b.hideRail().hideRailHr(),!1;!b.hidden&&!b.visibility&&b.showRail().showRailHr()}var g=b.page.maxh,f=b.page.maxw,e=b.view.w;b.view={w:b.ispage?b.win.width():parseInt(b.win[0].clientWidth),h:b.ispage?b.win.height():parseInt(b.win[0].clientHeight)};b.page=c?c:b.getContentSize();b.page.maxh=Math.max(0,b.page.h-b.view.h);b.page.maxw=Math.max(0,b.page.w-b.view.w);if(b.page.maxh==g&&b.page.maxw==f&&b.view.w==e){if(b.ispage)return b;g=b.win.offset();if(b.lastposition&&(f=b.lastposition,f.top==g.top&&f.left==
|
||||
g.left))return b;b.lastposition=g}0==b.page.maxh?(b.hideRail(),b.scrollvaluemax=0,b.scroll.y=0,b.scrollratio.y=0,b.cursorheight=0,b.setScrollTop(0),b.rail.scrollable=!1):b.rail.scrollable=!0;0==b.page.maxw?(b.hideRailHr(),b.scrollvaluemaxw=0,b.scroll.x=0,b.scrollratio.x=0,b.cursorwidth=0,b.setScrollLeft(0),b.railh.scrollable=!1):b.railh.scrollable=!0;b.locked=0==b.page.maxh&&0==b.page.maxw;if(b.locked)return b.ispage||b.updateScrollBar(b.view),!1;!b.hidden&&!b.visibility?b.showRail().showRailHr():
|
||||
!b.hidden&&!b.railh.visibility&&b.showRailHr();b.istextarea&&(b.win.css("resize")&&"none"!=b.win.css("resize"))&&(b.view.h-=20);b.cursorheight=Math.min(b.view.h,Math.round(b.view.h*(b.view.h/b.page.h)));b.cursorheight=b.opt.cursorfixedheight?b.opt.cursorfixedheight:Math.max(b.opt.cursorminheight,b.cursorheight);b.cursorwidth=Math.min(b.view.w,Math.round(b.view.w*(b.view.w/b.page.w)));b.cursorwidth=b.opt.cursorfixedheight?b.opt.cursorfixedheight:Math.max(b.opt.cursorminheight,b.cursorwidth);b.scrollvaluemax=
|
||||
b.view.h-b.cursorheight-b.cursor.hborder;b.railh&&(b.railh.width=0<b.page.maxh?b.view.w-b.rail.width:b.view.w,b.scrollvaluemaxw=b.railh.width-b.cursorwidth-b.cursorh.wborder);b.checkrtlmode&&b.railh&&(b.checkrtlmode=!1,b.opt.rtlmode&&0==b.scroll.x&&b.setScrollLeft(b.page.maxw));b.ispage||b.updateScrollBar(b.view);b.scrollratio={x:b.page.maxw/b.scrollvaluemaxw,y:b.page.maxh/b.scrollvaluemax};b.getScrollTop()>b.page.maxh?b.doScrollTop(b.page.maxh):(b.scroll.y=Math.round(b.getScrollTop()*(1/b.scrollratio.y)),
|
||||
b.scroll.x=Math.round(b.getScrollLeft()*(1/b.scrollratio.x)),b.cursoractive&&b.noticeCursor());b.scroll.y&&0==b.getScrollTop()&&b.doScrollTo(Math.floor(b.scroll.y*b.scrollratio.y));return b};this.resize=b.onResize;this.lazyResize=function(d){d=isNaN(d)?30:d;b.delayed("resize",b.resize,d);return b};this._bind=function(d,c,g,f){b.events.push({e:d,n:c,f:g,b:f,q:!1});d.addEventListener?d.addEventListener(c,g,f||!1):d.attachEvent?d.attachEvent("on"+c,g):d["on"+c]=g};this.jqbind=function(d,c,g){b.events.push({e:d,
|
||||
n:c,f:g,q:!0});e(d).bind(c,g)};this.bind=function(d,c,g,e){var h="jquery"in d?d[0]:d;"mousewheel"==c?"onwheel"in b.win?b._bind(h,"wheel",g,e||!1):(d="undefined"!=typeof document.onmousewheel?"mousewheel":"DOMMouseScroll",n(h,d,g,e||!1),"DOMMouseScroll"==d&&n(h,"MozMousePixelScroll",g,e||!1)):h.addEventListener?(f.cantouch&&/mouseup|mousedown|mousemove/.test(c)&&b._bind(h,"mousedown"==c?"touchstart":"mouseup"==c?"touchend":"touchmove",function(b){if(b.touches){if(2>b.touches.length){var d=b.touches.length?
|
||||
b.touches[0]:b;d.original=b;g.call(this,d)}}else b.changedTouches&&(d=b.changedTouches[0],d.original=b,g.call(this,d))},e||!1),b._bind(h,c,g,e||!1),f.cantouch&&"mouseup"==c&&b._bind(h,"touchcancel",g,e||!1)):b._bind(h,c,function(d){if((d=d||window.event||!1)&&d.srcElement)d.target=d.srcElement;"pageY"in d||(d.pageX=d.clientX+document.documentElement.scrollLeft,d.pageY=d.clientY+document.documentElement.scrollTop);return!1===g.call(h,d)||!1===e?b.cancelEvent(d):!0})};this._unbind=function(b,c,g,f){b.removeEventListener?
|
||||
b.removeEventListener(c,g,f):b.detachEvent?b.detachEvent("on"+c,g):b["on"+c]=!1};this.unbindAll=function(){for(var d=0;d<b.events.length;d++){var c=b.events[d];c.q?c.e.unbind(c.n,c.f):b._unbind(c.e,c.n,c.f,c.b)}};this.cancelEvent=function(b){b=b.original?b.original:b?b:window.event||!1;if(!b)return!1;b.preventDefault&&b.preventDefault();b.stopPropagation&&b.stopPropagation();b.preventManipulation&&b.preventManipulation();b.cancelBubble=!0;b.cancel=!0;return b.returnValue=!1};this.stopPropagation=
|
||||
function(b){b=b.original?b.original:b?b:window.event||!1;if(!b)return!1;if(b.stopPropagation)return b.stopPropagation();b.cancelBubble&&(b.cancelBubble=!0);return!1};this.showRail=function(){if(0!=b.page.maxh&&(b.ispage||"none"!=b.win.css("display")))b.visibility=!0,b.rail.visibility=!0,b.rail.css("display","block");return b};this.showRailHr=function(){if(!b.railh)return b;if(0!=b.page.maxw&&(b.ispage||"none"!=b.win.css("display")))b.railh.visibility=!0,b.railh.css("display","block");return b};this.hideRail=
|
||||
function(){b.visibility=!1;b.rail.visibility=!1;b.rail.css("display","none");return b};this.hideRailHr=function(){if(!b.railh)return b;b.railh.visibility=!1;b.railh.css("display","none");return b};this.show=function(){b.hidden=!1;b.locked=!1;return b.showRail().showRailHr()};this.hide=function(){b.hidden=!0;b.locked=!0;return b.hideRail().hideRailHr()};this.toggle=function(){return b.hidden?b.show():b.hide()};this.remove=function(){b.stop();b.cursortimeout&&clearTimeout(b.cursortimeout);b.doZoomOut();
|
||||
b.unbindAll();!1!==b.observer&&b.observer.disconnect();!1!==b.observerremover&&b.observerremover.disconnect();b.events=[];b.cursor&&(b.cursor.remove(),b.cursor=null);b.cursorh&&(b.cursorh.remove(),b.cursorh=null);b.rail&&(b.rail.remove(),b.rail=null);b.railh&&(b.railh.remove(),b.railh=null);b.zoom&&(b.zoom.remove(),b.zoom=null);for(var d=0;d<b.saved.css.length;d++){var c=b.saved.css[d];c[0].css(c[1],"undefined"==typeof c[2]?"":c[2])}b.saved=!1;b.me.data("__nicescroll","");b.me=null;b.doc=null;b.docscroll=
|
||||
null;b.win=null;return b};this.scrollstart=function(d){this.onscrollstart=d;return b};this.scrollend=function(d){this.onscrollend=d;return b};this.scrollcancel=function(d){this.onscrollcancel=d;return b};this.zoomin=function(d){this.onzoomin=d;return b};this.zoomout=function(d){this.onzoomout=d;return b};this.isScrollable=function(b){b=b.target?b.target:b;if("OPTION"==b.nodeName)return!0;for(;b&&1==b.nodeType&&!/BODY|HTML/.test(b.nodeName);){var c=e(b),c=c.css("overflowY")||c.css("overflowX")||c.css("overflow")||
|
||||
"";if(/scroll|auto/.test(c))return b.clientHeight!=b.scrollHeight;b=b.parentNode?b.parentNode:!1}return!1};this.getViewport=function(b){for(b=b&&b.parentNode?b.parentNode:!1;b&&1==b.nodeType&&!/BODY|HTML/.test(b.nodeName);){var c=e(b),g=c.css("overflowY")||c.css("overflowX")||c.css("overflow")||"";if(/scroll|auto/.test(g)&&b.clientHeight!=b.scrollHeight||0<c.getNiceScroll().length)return c;b=b.parentNode?b.parentNode:!1}return!1};this.onmousewheel=function(d){if(b.locked)return!0;if(b.rail.drag)return b.cancelEvent(d);
|
||||
if(!b.rail.scrollable)return b.railh&&b.railh.scrollable?b.onmousewheelhr(d):!0;var c=+new Date,g=!1;b.opt.preservenativescrolling&&b.checkarea+600<c&&(b.nativescrollingarea=b.isScrollable(d),g=!0);b.checkarea=c;if(b.nativescrollingarea)return!0;if(d=t(d,!1,g))b.checkarea=0;return d};this.onmousewheelhr=function(d){if(b.locked||!b.railh.scrollable)return!0;if(b.rail.drag)return b.cancelEvent(d);var c=+new Date,g=!1;b.opt.preservenativescrolling&&b.checkarea+600<c&&(b.nativescrollingarea=b.isScrollable(d),
|
||||
g=!0);b.checkarea=c;return b.nativescrollingarea?!0:b.locked?b.cancelEvent(d):t(d,!0,g)};this.stop=function(){b.cancelScroll();b.scrollmon&&b.scrollmon.stop();b.cursorfreezed=!1;b.scroll.y=Math.round(b.getScrollTop()*(1/b.scrollratio.y));b.noticeCursor();return b};this.getTransitionSpeed=function(c){var f=Math.round(10*b.opt.scrollspeed);c=Math.min(f,Math.round(c/20*b.opt.scrollspeed));return 20<c?c:0};b.opt.smoothscroll?b.ishwscroll&&f.hastransition&&b.opt.usetransition?(this.prepareTransition=function(c,
|
||||
e){var g=e?20<c?c:0:b.getTransitionSpeed(c),h=g?f.prefixstyle+"transform "+g+"ms ease-out":"";if(!b.lasttransitionstyle||b.lasttransitionstyle!=h)b.lasttransitionstyle=h,b.doc.css(f.transitionstyle,h);return g},this.doScrollLeft=function(c,f){var g=b.scrollrunning?b.newscrolly:b.getScrollTop();b.doScrollPos(c,g,f)},this.doScrollTop=function(c,f){var g=b.scrollrunning?b.newscrollx:b.getScrollLeft();b.doScrollPos(g,c,f)},this.doScrollPos=function(c,e,g){var h=b.getScrollTop(),l=b.getScrollLeft();(0>
|
||||
(b.newscrolly-h)*(e-h)||0>(b.newscrollx-l)*(c-l))&&b.cancelScroll();!1==b.opt.bouncescroll&&(0>e?e=0:e>b.page.maxh&&(e=b.page.maxh),0>c?c=0:c>b.page.maxw&&(c=b.page.maxw));if(b.scrollrunning&&c==b.newscrollx&&e==b.newscrolly)return!1;b.newscrolly=e;b.newscrollx=c;b.newscrollspeed=g||!1;if(b.timer)return!1;b.timer=setTimeout(function(){var g=b.getScrollTop(),h=b.getScrollLeft(),l,k;l=c-h;k=e-g;l=Math.round(Math.sqrt(Math.pow(l,2)+Math.pow(k,2)));l=b.newscrollspeed&&1<b.newscrollspeed?b.newscrollspeed:
|
||||
b.getTransitionSpeed(l);b.newscrollspeed&&1>=b.newscrollspeed&&(l*=b.newscrollspeed);b.prepareTransition(l,!0);b.timerscroll&&b.timerscroll.tm&&clearInterval(b.timerscroll.tm);0<l&&(!b.scrollrunning&&b.onscrollstart&&b.onscrollstart.call(b,{type:"scrollstart",current:{x:h,y:g},request:{x:c,y:e},end:{x:b.newscrollx,y:b.newscrolly},speed:l}),f.transitionend?b.scrollendtrapped||(b.scrollendtrapped=!0,b.bind(b.doc,f.transitionend,b.onScrollEnd,!1)):(b.scrollendtrapped&&clearTimeout(b.scrollendtrapped),
|
||||
b.scrollendtrapped=setTimeout(b.onScrollEnd,l)),b.timerscroll={bz:new BezierClass(g,b.newscrolly,l,0,0,0.58,1),bh:new BezierClass(h,b.newscrollx,l,0,0,0.58,1)},b.cursorfreezed||(b.timerscroll.tm=setInterval(function(){b.showCursor(b.getScrollTop(),b.getScrollLeft())},60)));b.synched("doScroll-set",function(){b.timer=0;b.scrollendtrapped&&(b.scrollrunning=!0);b.setScrollTop(b.newscrolly);b.setScrollLeft(b.newscrollx);if(!b.scrollendtrapped)b.onScrollEnd()})},50)},this.cancelScroll=function(){if(!b.scrollendtrapped)return!0;
|
||||
var c=b.getScrollTop(),e=b.getScrollLeft();b.scrollrunning=!1;f.transitionend||clearTimeout(f.transitionend);b.scrollendtrapped=!1;b._unbind(b.doc,f.transitionend,b.onScrollEnd);b.prepareTransition(0);b.setScrollTop(c);b.railh&&b.setScrollLeft(e);b.timerscroll&&b.timerscroll.tm&&clearInterval(b.timerscroll.tm);b.timerscroll=!1;b.cursorfreezed=!1;b.showCursor(c,e);return b},this.onScrollEnd=function(){b.scrollendtrapped&&b._unbind(b.doc,f.transitionend,b.onScrollEnd);b.scrollendtrapped=!1;b.prepareTransition(0);
|
||||
b.timerscroll&&b.timerscroll.tm&&clearInterval(b.timerscroll.tm);b.timerscroll=!1;var c=b.getScrollTop(),e=b.getScrollLeft();b.setScrollTop(c);b.railh&&b.setScrollLeft(e);b.noticeCursor(!1,c,e);b.cursorfreezed=!1;0>c?c=0:c>b.page.maxh&&(c=b.page.maxh);0>e?e=0:e>b.page.maxw&&(e=b.page.maxw);if(c!=b.newscrolly||e!=b.newscrollx)return b.doScrollPos(e,c,b.opt.snapbackspeed);b.onscrollend&&b.scrollrunning&&b.onscrollend.call(b,{type:"scrollend",current:{x:e,y:c},end:{x:b.newscrollx,y:b.newscrolly}});b.scrollrunning=
|
||||
!1}):(this.doScrollLeft=function(c,f){var g=b.scrollrunning?b.newscrolly:b.getScrollTop();b.doScrollPos(c,g,f)},this.doScrollTop=function(c,f){var g=b.scrollrunning?b.newscrollx:b.getScrollLeft();b.doScrollPos(g,c,f)},this.doScrollPos=function(c,f,g){function e(){if(b.cancelAnimationFrame)return!0;b.scrollrunning=!0;if(r=1-r)return b.timer=v(e)||1;var c=0,d=sy=b.getScrollTop();if(b.dst.ay){var d=b.bzscroll?b.dst.py+b.bzscroll.getNow()*b.dst.ay:b.newscrolly,g=d-sy;if(0>g&&d<b.newscrolly||0<g&&d>b.newscrolly)d=
|
||||
b.newscrolly;b.setScrollTop(d);d==b.newscrolly&&(c=1)}else c=1;var f=sx=b.getScrollLeft();if(b.dst.ax){f=b.bzscroll?b.dst.px+b.bzscroll.getNow()*b.dst.ax:b.newscrollx;g=f-sx;if(0>g&&f<b.newscrollx||0<g&&f>b.newscrollx)f=b.newscrollx;b.setScrollLeft(f);f==b.newscrollx&&(c+=1)}else c+=1;2==c?(b.timer=0,b.cursorfreezed=!1,b.bzscroll=!1,b.scrollrunning=!1,0>d?d=0:d>b.page.maxh&&(d=b.page.maxh),0>f?f=0:f>b.page.maxw&&(f=b.page.maxw),f!=b.newscrollx||d!=b.newscrolly?b.doScrollPos(f,d):b.onscrollend&&b.onscrollend.call(b,
|
||||
{type:"scrollend",current:{x:sx,y:sy},end:{x:b.newscrollx,y:b.newscrolly}})):b.timer=v(e)||1}f="undefined"==typeof f||!1===f?b.getScrollTop(!0):f;if(b.timer&&b.newscrolly==f&&b.newscrollx==c)return!0;b.timer&&w(b.timer);b.timer=0;var h=b.getScrollTop(),l=b.getScrollLeft();(0>(b.newscrolly-h)*(f-h)||0>(b.newscrollx-l)*(c-l))&&b.cancelScroll();b.newscrolly=f;b.newscrollx=c;if(!b.bouncescroll||!b.rail.visibility)0>b.newscrolly?b.newscrolly=0:b.newscrolly>b.page.maxh&&(b.newscrolly=b.page.maxh);if(!b.bouncescroll||
|
||||
!b.railh.visibility)0>b.newscrollx?b.newscrollx=0:b.newscrollx>b.page.maxw&&(b.newscrollx=b.page.maxw);b.dst={};b.dst.x=c-l;b.dst.y=f-h;b.dst.px=l;b.dst.py=h;var k=Math.round(Math.sqrt(Math.pow(b.dst.x,2)+Math.pow(b.dst.y,2)));b.dst.ax=b.dst.x/k;b.dst.ay=b.dst.y/k;var n=0,q=k;0==b.dst.x?(n=h,q=f,b.dst.ay=1,b.dst.py=0):0==b.dst.y&&(n=l,q=c,b.dst.ax=1,b.dst.px=0);k=b.getTransitionSpeed(k);g&&1>=g&&(k*=g);b.bzscroll=0<k?b.bzscroll?b.bzscroll.update(q,k):new BezierClass(n,q,k,0,1,0,1):!1;if(!b.timer){(h==
|
||||
b.page.maxh&&f>=b.page.maxh||l==b.page.maxw&&c>=b.page.maxw)&&b.checkContentSize();var r=1;b.cancelAnimationFrame=!1;b.timer=1;b.onscrollstart&&!b.scrollrunning&&b.onscrollstart.call(b,{type:"scrollstart",current:{x:l,y:h},request:{x:c,y:f},end:{x:b.newscrollx,y:b.newscrolly},speed:k});e();(h==b.page.maxh&&f>=h||l==b.page.maxw&&c>=l)&&b.checkContentSize();b.noticeCursor()}},this.cancelScroll=function(){b.timer&&w(b.timer);b.timer=0;b.bzscroll=!1;b.scrollrunning=!1;return b}):(this.doScrollLeft=function(c,
|
||||
f){var g=b.getScrollTop();b.doScrollPos(c,g,f)},this.doScrollTop=function(c,f){var g=b.getScrollLeft();b.doScrollPos(g,c,f)},this.doScrollPos=function(c,f,g){var e=c>b.page.maxw?b.page.maxw:c;0>e&&(e=0);var h=f>b.page.maxh?b.page.maxh:f;0>h&&(h=0);b.synched("scroll",function(){b.setScrollTop(h);b.setScrollLeft(e)})},this.cancelScroll=function(){});this.doScrollBy=function(c,f){var g=0,g=f?Math.floor((b.scroll.y-c)*b.scrollratio.y):(b.timer?b.newscrolly:b.getScrollTop(!0))-c;if(b.bouncescroll){var e=
|
||||
Math.round(b.view.h/2);g<-e?g=-e:g>b.page.maxh+e&&(g=b.page.maxh+e)}b.cursorfreezed=!1;py=b.getScrollTop(!0);if(0>g&&0>=py)return b.noticeCursor();if(g>b.page.maxh&&py>=b.page.maxh)return b.checkContentSize(),b.noticeCursor();b.doScrollTop(g)};this.doScrollLeftBy=function(c,f){var g=0,g=f?Math.floor((b.scroll.x-c)*b.scrollratio.x):(b.timer?b.newscrollx:b.getScrollLeft(!0))-c;if(b.bouncescroll){var e=Math.round(b.view.w/2);g<-e?g=-e:g>b.page.maxw+e&&(g=b.page.maxw+e)}b.cursorfreezed=!1;px=b.getScrollLeft(!0);
|
||||
if(0>g&&0>=px||g>b.page.maxw&&px>=b.page.maxw)return b.noticeCursor();b.doScrollLeft(g)};this.doScrollTo=function(c,f){f&&Math.round(c*b.scrollratio.y);b.cursorfreezed=!1;b.doScrollTop(c)};this.checkContentSize=function(){var c=b.getContentSize();(c.h!=b.page.h||c.w!=b.page.w)&&b.resize(!1,c)};b.onscroll=function(c){b.rail.drag||b.cursorfreezed||b.synched("scroll",function(){b.scroll.y=Math.round(b.getScrollTop()*(1/b.scrollratio.y));b.railh&&(b.scroll.x=Math.round(b.getScrollLeft()*(1/b.scrollratio.x)));
|
||||
b.noticeCursor()})};b.bind(b.docscroll,"scroll",b.onscroll);this.doZoomIn=function(c){if(!b.zoomactive){b.zoomactive=!0;b.zoomrestore={style:{}};var h="position top left zIndex backgroundColor marginTop marginBottom marginLeft marginRight".split(" "),g=b.win[0].style,l;for(l in h){var k=h[l];b.zoomrestore.style[k]="undefined"!=typeof g[k]?g[k]:""}b.zoomrestore.style.width=b.win.css("width");b.zoomrestore.style.height=b.win.css("height");b.zoomrestore.padding={w:b.win.outerWidth()-b.win.width(),h:b.win.outerHeight()-
|
||||
b.win.height()};f.isios4&&(b.zoomrestore.scrollTop=e(window).scrollTop(),e(window).scrollTop(0));b.win.css({position:f.isios4?"absolute":"fixed",top:0,left:0,"z-index":x+100,margin:"0px"});h=b.win.css("backgroundColor");(""==h||/transparent|rgba\(0, 0, 0, 0\)|rgba\(0,0,0,0\)/.test(h))&&b.win.css("backgroundColor","#fff");b.rail.css({"z-index":x+101});b.zoom.css({"z-index":x+102});b.zoom.css("backgroundPosition","0px -18px");b.resizeZoom();b.onzoomin&&b.onzoomin.call(b);return b.cancelEvent(c)}};this.doZoomOut=
|
||||
function(c){if(b.zoomactive)return b.zoomactive=!1,b.win.css("margin",""),b.win.css(b.zoomrestore.style),f.isios4&&e(window).scrollTop(b.zoomrestore.scrollTop),b.rail.css({"z-index":b.zindex}),b.zoom.css({"z-index":b.zindex}),b.zoomrestore=!1,b.zoom.css("backgroundPosition","0px 0px"),b.onResize(),b.onzoomout&&b.onzoomout.call(b),b.cancelEvent(c)};this.doZoom=function(c){return b.zoomactive?b.doZoomOut(c):b.doZoomIn(c)};this.resizeZoom=function(){if(b.zoomactive){var c=b.getScrollTop();b.win.css({width:e(window).width()-
|
||||
b.zoomrestore.padding.w+"px",height:e(window).height()-b.zoomrestore.padding.h+"px"});b.onResize();b.setScrollTop(Math.min(b.page.maxh,c))}};this.init();e.nicescroll.push(this)},H=function(e){var c=this;this.nc=e;this.steptime=this.lasttime=this.speedy=this.speedx=this.lasty=this.lastx=0;this.snapy=this.snapx=!1;this.demuly=this.demulx=0;this.lastscrolly=this.lastscrollx=-1;this.timer=this.chky=this.chkx=0;this.time=function(){return+new Date};this.reset=function(e,l){c.stop();var k=c.time();c.steptime=
|
||||
0;c.lasttime=k;c.speedx=0;c.speedy=0;c.lastx=e;c.lasty=l;c.lastscrollx=-1;c.lastscrolly=-1};this.update=function(e,l){var k=c.time();c.steptime=k-c.lasttime;c.lasttime=k;var k=l-c.lasty,t=e-c.lastx,b=c.nc.getScrollTop(),q=c.nc.getScrollLeft(),b=b+k,q=q+t;c.snapx=0>q||q>c.nc.page.maxw;c.snapy=0>b||b>c.nc.page.maxh;c.speedx=t;c.speedy=k;c.lastx=e;c.lasty=l};this.stop=function(){c.nc.unsynched("domomentum2d");c.timer&&clearTimeout(c.timer);c.timer=0;c.lastscrollx=-1;c.lastscrolly=-1};this.doSnapy=function(e,
|
||||
l){var k=!1;0>l?(l=0,k=!0):l>c.nc.page.maxh&&(l=c.nc.page.maxh,k=!0);0>e?(e=0,k=!0):e>c.nc.page.maxw&&(e=c.nc.page.maxw,k=!0);k&&c.nc.doScrollPos(e,l,c.nc.opt.snapbackspeed)};this.doMomentum=function(e){var l=c.time(),k=e?l+e:c.lasttime;e=c.nc.getScrollLeft();var t=c.nc.getScrollTop(),b=c.nc.page.maxh,q=c.nc.page.maxw;c.speedx=0<q?Math.min(60,c.speedx):0;c.speedy=0<b?Math.min(60,c.speedy):0;k=k&&50>=l-k;if(0>t||t>b||0>e||e>q)k=!1;e=c.speedx&&k?c.speedx:!1;if(c.speedy&&k&&c.speedy||e){var f=Math.max(16,
|
||||
c.steptime);50<f&&(e=f/50,c.speedx*=e,c.speedy*=e,f=50);c.demulxy=0;c.lastscrollx=c.nc.getScrollLeft();c.chkx=c.lastscrollx;c.lastscrolly=c.nc.getScrollTop();c.chky=c.lastscrolly;var r=c.lastscrollx,u=c.lastscrolly,d=function(){var e=600<c.time()-l?0.04:0.02;if(c.speedx&&(r=Math.floor(c.lastscrollx-c.speedx*(1-c.demulxy)),c.lastscrollx=r,0>r||r>q))e=0.1;if(c.speedy&&(u=Math.floor(c.lastscrolly-c.speedy*(1-c.demulxy)),c.lastscrolly=u,0>u||u>b))e=0.1;c.demulxy=Math.min(1,c.demulxy+e);c.nc.synched("domomentum2d",
|
||||
function(){c.speedx&&(c.nc.getScrollLeft()!=c.chkx&&c.stop(),c.chkx=r,c.nc.setScrollLeft(r));c.speedy&&(c.nc.getScrollTop()!=c.chky&&c.stop(),c.chky=u,c.nc.setScrollTop(u));c.timer||(c.nc.hideCursor(),c.doSnapy(r,u))});1>c.demulxy?c.timer=setTimeout(d,f):(c.stop(),c.nc.hideCursor(),c.doSnapy(r,u))};d()}else c.doSnapy(c.nc.getScrollLeft(),c.nc.getScrollTop())}},A=e.fn.scrollTop;e.cssHooks.pageYOffset={get:function(k,c,h){return(c=e.data(k,"__nicescroll")||!1)&&c.ishwscroll?c.getScrollTop():A.call(k)},
|
||||
set:function(k,c){var h=e.data(k,"__nicescroll")||!1;h&&h.ishwscroll?h.setScrollTop(parseInt(c)):A.call(k,c);return this}};e.fn.scrollTop=function(k){if("undefined"==typeof k){var c=this[0]?e.data(this[0],"__nicescroll")||!1:!1;return c&&c.ishwscroll?c.getScrollTop():A.call(this)}return this.each(function(){var c=e.data(this,"__nicescroll")||!1;c&&c.ishwscroll?c.setScrollTop(parseInt(k)):A.call(e(this),k)})};var B=e.fn.scrollLeft;e.cssHooks.pageXOffset={get:function(k,c,h){return(c=e.data(k,"__nicescroll")||
|
||||
!1)&&c.ishwscroll?c.getScrollLeft():B.call(k)},set:function(k,c){var h=e.data(k,"__nicescroll")||!1;h&&h.ishwscroll?h.setScrollLeft(parseInt(c)):B.call(k,c);return this}};e.fn.scrollLeft=function(k){if("undefined"==typeof k){var c=this[0]?e.data(this[0],"__nicescroll")||!1:!1;return c&&c.ishwscroll?c.getScrollLeft():B.call(this)}return this.each(function(){var c=e.data(this,"__nicescroll")||!1;c&&c.ishwscroll?c.setScrollLeft(parseInt(k)):B.call(e(this),k)})};var C=function(k){var c=this;this.length=
|
||||
0;this.name="nicescrollarray";this.each=function(e){for(var h=0;h<c.length;h++)e.call(c[h]);return c};this.push=function(e){c[c.length]=e;c.length++};this.eq=function(e){return c[e]};if(k)for(a=0;a<k.length;a++){var h=e.data(k[a],"__nicescroll")||!1;h&&(this[this.length]=h,this.length++)}return this};(function(e,c,h){for(var l=0;l<c.length;l++)h(e,c[l])})(C.prototype,"show hide toggle onResize resize remove stop doScrollPos".split(" "),function(e,c){e[c]=function(){var e=arguments;return this.each(function(){this[c].apply(this,
|
||||
e)})}});e.fn.getNiceScroll=function(k){return"undefined"==typeof k?new C(this):e.data(this[k],"__nicescroll")||!1};e.extend(e.expr[":"],{nicescroll:function(k){return e.data(k,"__nicescroll")?!0:!1}});e.fn.niceScroll=function(k,c){"undefined"==typeof c&&("object"==typeof k&&!("jquery"in k))&&(c=k,k=!1);var h=new C;"undefined"==typeof c&&(c={});k&&(c.doc=e(k),c.win=e(this));var l=!("doc"in c);!l&&!("win"in c)&&(c.win=e(this));this.each(function(){var k=e(this).data("__nicescroll")||!1;k||(c.doc=l?
|
||||
e(this):c.doc,k=new N(c,e(this)),e(this).data("__nicescroll",k));h.push(k)});return 1==h.length?h[0]:h};window.NiceScroll={getjQuery:function(){return e}};e.nicescroll||(e.nicescroll=new C,e.nicescroll.options=F)})(jQuery);
|
||||
@@ -0,0 +1,185 @@
|
||||
// jQuery(function() {
|
||||
// ParallaxScroll.init();
|
||||
// });
|
||||
|
||||
var ParallaxScroll = {
|
||||
/* PUBLIC VARIABLES */
|
||||
showLogs: false,
|
||||
round: 1000,
|
||||
|
||||
/* PUBLIC FUNCTIONS */
|
||||
init: function() {
|
||||
this._log("init");
|
||||
if (this._inited) {
|
||||
this._log("Already Inited");
|
||||
this._inited = true;
|
||||
return;
|
||||
}
|
||||
this._requestAnimationFrame = (function(){
|
||||
return window.requestAnimationFrame ||
|
||||
window.webkitRequestAnimationFrame ||
|
||||
window.mozRequestAnimationFrame ||
|
||||
window.oRequestAnimationFrame ||
|
||||
window.msRequestAnimationFrame ||
|
||||
function(/* function */ callback, /* DOMElement */ element){
|
||||
window.setTimeout(callback, 1000 / 60);
|
||||
};
|
||||
})();
|
||||
this._onScroll(true);
|
||||
},
|
||||
|
||||
/* PRIVATE VARIABLES */
|
||||
_inited: false,
|
||||
_properties: ['x', 'y', 'z', 'rotateX', 'rotateY', 'rotateZ', 'scaleX', 'scaleY', 'scaleZ', 'scale'],
|
||||
_requestAnimationFrame:null,
|
||||
|
||||
/* PRIVATE FUNCTIONS */
|
||||
_log: function(message) {
|
||||
if (this.showLogs) console.log("Parallax Scroll / " + message);
|
||||
},
|
||||
_onScroll: function(noSmooth) {
|
||||
var scroll = jQuery(document).scrollTop();
|
||||
var windowHeight = jQuery(window).height();
|
||||
this._log("onScroll " + scroll);
|
||||
jQuery("[data-parallax]").each(jQuery.proxy(function(index, el) {
|
||||
var jQueryel = jQuery(el);
|
||||
var properties = [];
|
||||
var applyProperties = false;
|
||||
var style = jQueryel.data("style");
|
||||
if (style == undefined) {
|
||||
style = jQueryel.attr("style") || "";
|
||||
jQueryel.data("style", style);
|
||||
}
|
||||
var datas = [jQueryel.data("parallax")];
|
||||
var iData;
|
||||
for(iData = 2; ; iData++) {
|
||||
if(jQueryel.data("parallax"+iData)) {
|
||||
datas.push(jQueryel.data("parallax-"+iData));
|
||||
}
|
||||
else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
var datasLength = datas.length;
|
||||
for(iData = 0; iData < datasLength; iData ++) {
|
||||
var data = datas[iData];
|
||||
var scrollFrom = data["from-scroll"];
|
||||
if (scrollFrom == undefined) scrollFrom = Math.max(0, jQuery(el).offset().top - windowHeight);
|
||||
scrollFrom = scrollFrom | 0;
|
||||
var scrollDistance = data["distance"];
|
||||
var scrollTo = data["to-scroll"];
|
||||
if (scrollDistance == undefined && scrollTo == undefined) scrollDistance = windowHeight;
|
||||
scrollDistance = Math.max(scrollDistance | 0, 1);
|
||||
var easing = data["easing"];
|
||||
var easingReturn = data["easing-return"];
|
||||
if (easing == undefined || !jQuery.easing|| !jQuery.easing[easing]) easing = null;
|
||||
if (easingReturn == undefined || !jQuery.easing|| !jQuery.easing[easingReturn]) easingReturn = easing;
|
||||
if (easing) {
|
||||
var totalTime = data["duration"];
|
||||
if (totalTime == undefined) totalTime = scrollDistance;
|
||||
totalTime = Math.max(totalTime | 0, 1);
|
||||
var totalTimeReturn = data["duration-return"];
|
||||
if (totalTimeReturn == undefined) totalTimeReturn = totalTime;
|
||||
scrollDistance = 1;
|
||||
var currentTime = jQueryel.data("current-time");
|
||||
if(currentTime == undefined) currentTime = 0;
|
||||
}
|
||||
if (scrollTo == undefined) scrollTo = scrollFrom + scrollDistance;
|
||||
scrollTo = scrollTo | 0;
|
||||
var smoothness = data["smoothness"];
|
||||
if (smoothness == undefined) smoothness = 30;
|
||||
smoothness = smoothness | 0;
|
||||
if (noSmooth || smoothness == 0) smoothness = 1;
|
||||
smoothness = smoothness | 0;
|
||||
var scrollCurrent = scroll;
|
||||
scrollCurrent = Math.max(scrollCurrent, scrollFrom);
|
||||
scrollCurrent = Math.min(scrollCurrent, scrollTo);
|
||||
if(easing) {
|
||||
if(jQueryel.data("sens") == undefined) jQueryel.data("sens", "back");
|
||||
if(scrollCurrent>scrollFrom) {
|
||||
if(jQueryel.data("sens") == "back") {
|
||||
currentTime = 1;
|
||||
jQueryel.data("sens", "go");
|
||||
}
|
||||
else {
|
||||
currentTime++;
|
||||
}
|
||||
}
|
||||
if(scrollCurrent<scrollTo) {
|
||||
if(jQueryel.data("sens") == "go") {
|
||||
currentTime = 1;
|
||||
jQueryel.data("sens", "back");
|
||||
}
|
||||
else {
|
||||
currentTime++;
|
||||
}
|
||||
}
|
||||
if(noSmooth) currentTime = totalTime;
|
||||
jQueryel.data("current-time", currentTime);
|
||||
}
|
||||
this._properties.map(jQuery.proxy(function(prop) {
|
||||
var defaultProp = 0;
|
||||
var to = data[prop];
|
||||
if (to == undefined) return;
|
||||
if(prop=="scale" || prop=="scaleX" || prop=="scaleY" || prop=="scaleZ" ) {
|
||||
defaultProp = 1;
|
||||
}
|
||||
else {
|
||||
to = to | 0;
|
||||
}
|
||||
var prev = jQueryel.data("_" + prop);
|
||||
if (prev == undefined) prev = defaultProp;
|
||||
var next = ((to-defaultProp) * ((scrollCurrent - scrollFrom) / (scrollTo - scrollFrom))) + defaultProp;
|
||||
var val = prev + (next - prev) / smoothness;
|
||||
if(easing && currentTime>0 && currentTime<=totalTime) {
|
||||
var from = defaultProp;
|
||||
if(jQueryel.data("sens") == "back") {
|
||||
from = to;
|
||||
to = -to;
|
||||
easing = easingReturn;
|
||||
totalTime = totalTimeReturn;
|
||||
}
|
||||
val = jQuery.easing[easing](null, currentTime, from, to, totalTime);
|
||||
}
|
||||
val = Math.ceil(val * this.round) / this.round;
|
||||
if(val==prev&&next==to) val = to;
|
||||
if(!properties[prop]) properties[prop] = 0;
|
||||
properties[prop] += val;
|
||||
if (prev != properties[prop]) {
|
||||
jQueryel.data("_" + prop, properties[prop]);
|
||||
applyProperties = true;
|
||||
}
|
||||
}, this));
|
||||
}
|
||||
if (applyProperties) {
|
||||
if (properties["z"] != undefined) {
|
||||
var perspective = data["perspective"];
|
||||
if (perspective == undefined) perspective = 800;
|
||||
var jQueryparent = jQueryel.parent();
|
||||
if(!jQueryparent.data("style")) jQueryparent.data("style", jQueryparent.attr("style") || "");
|
||||
jQueryparent.attr("style", "perspective:" + perspective + "px; -webkit-perspective:" + perspective + "px; "+ jQueryparent.data("style"));
|
||||
}
|
||||
if(properties["scaleX"] == undefined) properties["scaleX"] = 1;
|
||||
if(properties["scaleY"] == undefined) properties["scaleY"] = 1;
|
||||
if(properties["scaleZ"] == undefined) properties["scaleZ"] = 1;
|
||||
if (properties["scale"] != undefined) {
|
||||
properties["scaleX"] *= properties["scale"];
|
||||
properties["scaleY"] *= properties["scale"];
|
||||
properties["scaleZ"] *= properties["scale"];
|
||||
}
|
||||
var translate3d = "translate3d(" + (properties["x"] ? properties["x"] : 0) + "px, " + (properties["y"] ? properties["y"] : 0) + "px, " + (properties["z"] ? properties["z"] : 0) + "px)";
|
||||
var rotate3d = "rotateX(" + (properties["rotateX"] ? properties["rotateX"] : 0) + "deg) rotateY(" + (properties["rotateY"] ? properties["rotateY"] : 0) + "deg) rotateZ(" + (properties["rotateZ"] ? properties["rotateZ"] : 0) + "deg)";
|
||||
var scale3d = "scaleX(" + properties["scaleX"] + ") scaleY(" + properties["scaleY"] + ") scaleZ(" + properties["scaleZ"] + ")";
|
||||
var cssTransform = translate3d + " " + rotate3d + " " + scale3d + ";";
|
||||
this._log(cssTransform);
|
||||
jQueryel.attr("style", "transform:" + cssTransform + " -webkit-transform:" + cssTransform + " " + style);
|
||||
}
|
||||
}, this));
|
||||
if(window.requestAnimationFrame) {
|
||||
window.requestAnimationFrame(jQuery.proxy(this._onScroll, this, false));
|
||||
}
|
||||
else {
|
||||
this._requestAnimationFrame(jQuery.proxy(this._onScroll, this, false));
|
||||
}
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,4 @@
|
||||
/** Abstract base class for collection plugins v1.0.1.
|
||||
Written by Keith Wood (kbwood{at}iinet.com.au) December 2013.
|
||||
Licensed under the MIT (http://keith-wood.name/licence.html) license. */
|
||||
(function(){var j=false;window.JQClass=function(){};JQClass.classes={};JQClass.extend=function extender(f){var g=this.prototype;j=true;var h=new this();j=false;for(var i in f){h[i]=typeof f[i]=='function'&&typeof g[i]=='function'?(function(d,e){return function(){var b=this._super;this._super=function(a){return g[d].apply(this,a||[])};var c=e.apply(this,arguments);this._super=b;return c}})(i,f[i]):f[i]}function JQClass(){if(!j&&this._init){this._init.apply(this,arguments)}}JQClass.prototype=h;JQClass.prototype.constructor=JQClass;JQClass.extend=extender;return JQClass}})();(function($){JQClass.classes.JQPlugin=JQClass.extend({name:'plugin',defaultOptions:{},regionalOptions:{},_getters:[],_getMarker:function(){return'is-'+this.name},_init:function(){$.extend(this.defaultOptions,(this.regionalOptions&&this.regionalOptions[''])||{});var c=camelCase(this.name);$[c]=this;$.fn[c]=function(a){var b=Array.prototype.slice.call(arguments,1);if($[c]._isNotChained(a,b)){return $[c][a].apply($[c],[this[0]].concat(b))}return this.each(function(){if(typeof a==='string'){if(a[0]==='_'||!$[c][a]){throw'Unknown method: '+a;}$[c][a].apply($[c],[this].concat(b))}else{$[c]._attach(this,a)}})}},setDefaults:function(a){$.extend(this.defaultOptions,a||{})},_isNotChained:function(a,b){if(a==='option'&&(b.length===0||(b.length===1&&typeof b[0]==='string'))){return true}return $.inArray(a,this._getters)>-1},_attach:function(a,b){a=$(a);if(a.hasClass(this._getMarker())){return}a.addClass(this._getMarker());b=$.extend({},this.defaultOptions,this._getMetadata(a),b||{});var c=$.extend({name:this.name,elem:a,options:b},this._instSettings(a,b));a.data(this.name,c);this._postAttach(a,c);this.option(a,b)},_instSettings:function(a,b){return{}},_postAttach:function(a,b){},_getMetadata:function(d){try{var f=d.data(this.name.toLowerCase())||'';f=f.replace(/'/g,'"');f=f.replace(/([a-zA-Z0-9]+):/g,function(a,b,i){var c=f.substring(0,i).match(/"/g);return(!c||c.length%2===0?'"'+b+'":':b+':')});f=$.parseJSON('{'+f+'}');for(var g in f){var h=f[g];if(typeof h==='string'&&h.match(/^new Date\((.*)\)$/)){f[g]=eval(h)}}return f}catch(e){return{}}},_getInst:function(a){return $(a).data(this.name)||{}},option:function(a,b,c){a=$(a);var d=a.data(this.name);if(!b||(typeof b==='string'&&c==null)){var e=(d||{}).options;return(e&&b?e[b]:e)}if(!a.hasClass(this._getMarker())){return}var e=b||{};if(typeof b==='string'){e={};e[b]=c}this._optionsChanged(a,d,e);$.extend(d.options,e)},_optionsChanged:function(a,b,c){},destroy:function(a){a=$(a);if(!a.hasClass(this._getMarker())){return}this._preDestroy(a,this._getInst(a));a.removeData(this.name).removeClass(this._getMarker())},_preDestroy:function(a,b){}});function camelCase(c){return c.replace(/-([a-z])/g,function(a,b){return b.toUpperCase()})}$.JQPlugin={createPlugin:function(a,b){if(typeof a==='object'){b=a;a='JQPlugin'}a=camelCase(a);var c=camelCase(b.name);JQClass.classes[c]=JQClass.classes[a].extend(b);new JQClass.classes[c]()}}})(jQuery);
|
||||
@@ -0,0 +1,10 @@
|
||||
/*
|
||||
* waitForImages 1.4.2
|
||||
* -------------------
|
||||
* Provides a callback when all images have loaded in your given selector.
|
||||
* https://github.com/alexanderdickson/waitForImages
|
||||
*
|
||||
* Copyright (c) 2013 Alex Dickson
|
||||
* Licensed under the MIT license.
|
||||
*/
|
||||
(function($){var eventNamespace='waitForImages';$.waitForImages={hasImageProperties:['backgroundImage','listStyleImage','borderImage','borderCornerImage']};$.expr[':'].uncached=function(obj){if(!$(obj).is('img[src!=""]')){return false}var img=new Image();img.src=obj.src;return!img.complete};$.fn.waitForImages=function(finishedCallback,eachCallback,waitForAll){var allImgsLength=0;var allImgsLoaded=0;if($.isPlainObject(arguments[0])){waitForAll=arguments[0].waitForAll;eachCallback=arguments[0].each;finishedCallback=arguments[0].finished}finishedCallback=finishedCallback||$.noop;eachCallback=eachCallback||$.noop;waitForAll=!!waitForAll;if(!$.isFunction(finishedCallback)||!$.isFunction(eachCallback)){throw new TypeError('An invalid callback was supplied.');}return this.each(function(){var obj=$(this);var allImgs=[];var hasImgProperties=$.waitForImages.hasImageProperties||[];var matchUrl=/url\(\s*(['"]?)(.*?)\1\s*\)/g;if(waitForAll){obj.find('*').andSelf().each(function(){var element=$(this);if(element.is('img:uncached')){allImgs.push({src:element.attr('src'),element:element[0]})}$.each(hasImgProperties,function(i,property){var propertyValue=element.css(property);var match;if(!propertyValue){return true}while(match=matchUrl.exec(propertyValue)){allImgs.push({src:match[2],element:element[0]})}})})}else{obj.find('img:uncached').each(function(){allImgs.push({src:this.src,element:this})})}allImgsLength=allImgs.length;allImgsLoaded=0;if(allImgsLength===0){finishedCallback.call(obj[0])}$.each(allImgs,function(i,img){var image=new Image();$(image).bind('load.'+eventNamespace+' error.'+eventNamespace,function(event){allImgsLoaded++;eachCallback.call(img.element,allImgsLoaded,allImgsLength,event.type=='load');if(allImgsLoaded==allImgsLength){finishedCallback.call(obj[0]);return false}});image.src=img.src})})}}(jQuery));
|
||||
@@ -0,0 +1,357 @@
|
||||
/*
|
||||
* Lemmon Slider - jQuery Plugin
|
||||
* Simple and lightweight slider/carousel supporting variable elements/images widths.
|
||||
*
|
||||
* Examples and documentation at: http://jquery.lemmonjuice.com/plugins/slider-variable-widths.php
|
||||
*
|
||||
* Copyright (c) 2011 Jakub Pelák <jpelak@gmail.com>
|
||||
*
|
||||
* Version: 0.2 (9/6/2011)
|
||||
* Requires: jQuery v1.4+
|
||||
*
|
||||
* Licensed under the MIT license:
|
||||
* http://www.opensource.org/licenses/mit-license.php
|
||||
*/
|
||||
(function( $ ) {
|
||||
|
||||
var _css = {};
|
||||
|
||||
var methods = {
|
||||
//
|
||||
// Initialzie plugin
|
||||
//
|
||||
init: function( options ) {
|
||||
options = $.extend( {}, $.fn.lemmonSlider.defaults, options );
|
||||
|
||||
return this.each( function() {
|
||||
|
||||
var $slider = $( this ),
|
||||
data = $slider.data( 'slider' );
|
||||
|
||||
if( !data ) {
|
||||
|
||||
var $sliderContainer = $slider.find( options.slider ),
|
||||
$sliderControls = $slider.next().filter( '.controls' ),
|
||||
$items = $sliderContainer.find( options.items ),
|
||||
originalWidth = 1;
|
||||
|
||||
$items.each( function() { originalWidth += $( this ).outerWidth( true ) } );
|
||||
$sliderContainer.width( originalWidth );
|
||||
|
||||
// slide to last item
|
||||
if( options.slideToLast ) $sliderContainer.css( 'padding-right', $slider.width() );
|
||||
|
||||
// infinite carousel
|
||||
if( options.infinite ) {
|
||||
$slider.data( 'slider-infinite', true );
|
||||
|
||||
originalWidth = originalWidth * 3;
|
||||
$sliderContainer.width( originalWidth );
|
||||
|
||||
$items.clone(true, true).addClass( '-after' ).insertAfter( $items.filter( ':last' ) );
|
||||
$items.filter( ':first' ).before( $items.clone(true, true).addClass( '-before' ) );
|
||||
|
||||
$items = $sliderContainer.find( options.items );
|
||||
|
||||
}
|
||||
|
||||
$slider.items = $items;
|
||||
$slider.options = options;
|
||||
|
||||
// first item
|
||||
//$items.filter( ':first' ).addClass( 'active' );
|
||||
|
||||
slideTo( {}, $slider, 0, 0, 0 );
|
||||
|
||||
// attach events
|
||||
$slider.bind( 'nextSlide', function( e, t ) {
|
||||
|
||||
var scroll = $slider.scrollLeft();
|
||||
var x = 0;
|
||||
var slide = 0;
|
||||
|
||||
$items.each( function( i ) {
|
||||
if( x == 0 && $( this ).position().left > options.offset ) {
|
||||
x = $( this ).position().left;
|
||||
slide = i;
|
||||
}
|
||||
} );
|
||||
|
||||
if( x > 0 && $sliderContainer.outerWidth() - scroll - $slider.width() - 1 > 0 ) {
|
||||
slideTo( e, $slider, scroll + x, slide, 'slow' );
|
||||
} else if( options.loop ) {
|
||||
// return to first
|
||||
slideTo( e, $slider, 0, 0, 'slow' );
|
||||
}
|
||||
|
||||
} );
|
||||
$slider.bind( 'prevSlide', function( e, t ) {
|
||||
|
||||
var scroll = $slider.scrollLeft();
|
||||
var x = 0;
|
||||
var slide = 0;
|
||||
|
||||
$items.each( function( i ) {
|
||||
if( $( this ).position().left < options.offset ) {
|
||||
x = $( this ).position().left;
|
||||
slide = i;
|
||||
}
|
||||
} );
|
||||
|
||||
if( x ) {
|
||||
slideTo( e, $slider, scroll + x, slide, 'slow' )
|
||||
} else if( options.loop ) {
|
||||
// return to last
|
||||
var a = $sliderContainer.outerWidth() - $slider.width();
|
||||
var b = $items.filter( ':last' ).position().left;
|
||||
slide = $items.size() - 1;
|
||||
if( a > b ) {
|
||||
slideTo( e, $slider, b, slide, 'slow' );
|
||||
} else {
|
||||
slideTo( e, $slider, a, slide, 'slow' );
|
||||
}
|
||||
}
|
||||
|
||||
} );
|
||||
$slider.bind( 'nextPage', function( e, t ) {
|
||||
|
||||
var scroll = $slider.scrollLeft();
|
||||
var w = $slider.width();
|
||||
var x = 0;
|
||||
var slide = 0;
|
||||
|
||||
$items.each( function( i ) {
|
||||
if( $( this ).position().left < w ) {
|
||||
x = $( this ).position().left;
|
||||
slide = i;
|
||||
}
|
||||
} );
|
||||
|
||||
if( x > 0 && scroll + w + 1 < originalWidth ) {
|
||||
slideTo( e, $slider, scroll + x, slide, 'slow' );
|
||||
} else if( options.loop ) {
|
||||
// return to first
|
||||
slideTo( e, $slider, 0, 0, 'slow' );
|
||||
}
|
||||
|
||||
} );
|
||||
$slider.bind( 'prevPage', function( e, t ) {
|
||||
|
||||
var scroll = $slider.scrollLeft();
|
||||
var w = $slider.width();
|
||||
var x = 0;
|
||||
|
||||
$items.each( function( i ) {
|
||||
if( $( this ).position().left < 1 - w ) {
|
||||
x = $( this ).next().position().left;
|
||||
slide = i;
|
||||
}
|
||||
} );
|
||||
|
||||
if( scroll ) {
|
||||
if( x == 0 ) {
|
||||
//$slider.animate({ 'scrollLeft' : 0 }, 'slow' );
|
||||
slideTo( e, $slider, 0, 0, 'slow' );
|
||||
} else {
|
||||
//$slider.animate({ 'scrollLeft' : scroll + x }, 'slow' );
|
||||
slideTo( e, $slider, scroll + x, slide, 'slow' );
|
||||
}
|
||||
} else if( options.loop ) {
|
||||
// return to last
|
||||
var a = $sliderContainer.outerWidth() - $slider.width();
|
||||
var b = $items.filter( ':last' ).position().left;
|
||||
if( a > b ) {
|
||||
$slider.animate( { 'scrollLeft': b }, 'slow' );
|
||||
} else {
|
||||
$slider.animate( { 'scrollLeft': a }, 'slow' );
|
||||
}
|
||||
}
|
||||
|
||||
} );
|
||||
$slider.bind( 'slideTo', function( e, i, t ) {
|
||||
|
||||
slideTo(
|
||||
e, $slider,
|
||||
$slider.scrollLeft() + $items.filter( ':eq(' + i + ')' ).position().left,
|
||||
i, t );
|
||||
|
||||
} );
|
||||
|
||||
// controls
|
||||
$sliderControls.find( '.next-slide' ).on('click', function() {
|
||||
$slider.trigger( 'nextSlide' );
|
||||
return false;
|
||||
} );
|
||||
$sliderControls.find( '.prev-slide' ).on('click', function() {
|
||||
$slider.trigger( 'prevSlide' );
|
||||
return false;
|
||||
} );
|
||||
$sliderControls.find( '.next-page' ).on('click', function() {
|
||||
$slider.trigger( 'nextPage' );
|
||||
return false;
|
||||
} );
|
||||
$sliderControls.find( '.prev-page' ).on('click', function() {
|
||||
$slider.trigger( 'prevPage' );
|
||||
return false;
|
||||
} );
|
||||
|
||||
//if ( typeof $slider.options.create == 'function' ) $slider.options.create();
|
||||
|
||||
$slider.data( 'slider', {
|
||||
'target': $slider,
|
||||
'options': options
|
||||
} )
|
||||
|
||||
}
|
||||
|
||||
} );
|
||||
|
||||
},
|
||||
//
|
||||
// Add Item
|
||||
//
|
||||
addItem: function( options ) {
|
||||
var options = $.extend( {}, $.fn.lemmonSlider.defaults, options );
|
||||
|
||||
var $slider = $( this ),
|
||||
$sliderContainer = $slider.find( options.slider ),
|
||||
$sliderControls = $slider.next().filter( '.controls' ),
|
||||
$items = $sliderContainer.find( options.items )
|
||||
|
||||
options.infinite = $slider.data( 'slider-infinite' )
|
||||
|
||||
if( !options.item ) {
|
||||
return false
|
||||
}
|
||||
methods.destroy.apply( this );
|
||||
if( options.prepend ) {
|
||||
$sliderContainer.prepend( options.item );
|
||||
} else {
|
||||
$sliderContainer.append( options.item );
|
||||
}
|
||||
methods.init.apply( this, [options] );
|
||||
},
|
||||
//
|
||||
// Destroy plugin
|
||||
//
|
||||
destroy: function() {
|
||||
|
||||
return this.each( function() {
|
||||
|
||||
var $slider = $( this ),
|
||||
$sliderControls = $slider.next().filter( '.controls' ),
|
||||
$items = $slider.find( '> *:first > *' ),
|
||||
data = $slider.data( 'slider' );
|
||||
|
||||
$slider.unbind( 'nextSlide' );
|
||||
$slider.unbind( 'prevSlide' );
|
||||
$slider.unbind( 'nextPage' );
|
||||
$slider.unbind( 'prevPage' );
|
||||
$slider.unbind( 'slideTo' );
|
||||
|
||||
$sliderControls.find( '.next-slide' ).unbind( 'click' );
|
||||
$sliderControls.find( '.prev-slide' ).unbind( 'click' );
|
||||
$sliderControls.find( '.next-page' ).unbind( 'click' );
|
||||
$sliderControls.find( '.next-page' ).unbind( 'click' );
|
||||
|
||||
$slider.removeData( 'slider' );
|
||||
|
||||
if( $slider.data( 'slider-infinite' ) ) {
|
||||
$.merge( $items.filter( '.-before' ), $items.filter( '.-after' ) ).each( function( index, item ) {
|
||||
$( item ).remove();
|
||||
} );
|
||||
}
|
||||
} );
|
||||
|
||||
}
|
||||
//
|
||||
//
|
||||
//
|
||||
}
|
||||
//
|
||||
// Private functions
|
||||
//
|
||||
function slideTo( e, $slider, x, i, t ) {
|
||||
|
||||
$slider.items.filter( 'li:eq(' + i + ')' ).addClass( 'active' ).siblings( '.active' ).removeClass( 'active' );
|
||||
|
||||
if( $slider.options.center ) {
|
||||
var currentElement = $( $slider.items[ i ] );
|
||||
$slider.options.offset = Math.floor( ( $('.qode_image_gallery_holder').width() - currentElement.width() ) / 2 );
|
||||
console.log( 'set offset to ', $slider.options.offset );
|
||||
}
|
||||
|
||||
if( typeof t == 'undefined' ) {
|
||||
t = 'slow';
|
||||
}
|
||||
if( t ) {
|
||||
$slider.animate( { 'scrollLeft': x - $slider.options.offset }, t, function() {
|
||||
checkInfinite( $slider );
|
||||
} );
|
||||
} else {
|
||||
var time = 0;
|
||||
$slider.scrollLeft( x - $slider.options.offset );
|
||||
checkInfinite( $slider );
|
||||
}
|
||||
|
||||
//if ( typeof $slider.options.slide == 'function' ) $slider.options.slide( e, i, time );
|
||||
}
|
||||
|
||||
function checkInfinite( $slider ) {
|
||||
|
||||
var $active = $slider.items.filter( '.active' );
|
||||
if( $active.hasClass( '-before' ) ) {
|
||||
|
||||
var i = $active.prevAll().size();
|
||||
$active.removeClass( 'active' );
|
||||
$active = $slider.items.filter( ':not(.-before):eq(' + i + ')' ).addClass( 'active' );
|
||||
$slider.scrollLeft( $slider.scrollLeft() + $active.position().left - $slider.options.offset );
|
||||
|
||||
} else if( $active.hasClass( '-after' ) ) {
|
||||
|
||||
var i = $active.prevAll( '.-after' ).size();
|
||||
$active.removeClass( 'active' );
|
||||
$active = $slider.items.filter( ':not(.-before):eq(' + i + ')' ).addClass( 'active' );
|
||||
$slider.scrollLeft( $slider.scrollLeft() + $active.position().left - $slider.options.offset );
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//
|
||||
// Debug
|
||||
//
|
||||
function debug( text ) {
|
||||
$( '#debug span' ).text( text );
|
||||
}
|
||||
|
||||
//
|
||||
//
|
||||
//
|
||||
$.fn.lemmonSlider = function( method, options ) {
|
||||
if( methods[method] ) {
|
||||
return methods[ method ].apply( this, Array.prototype.slice.call( arguments, 1 ) );
|
||||
} else if( typeof method === 'object' || !method ) {
|
||||
return methods.init.apply( this, arguments );
|
||||
} else {
|
||||
$.error( 'Method ' + method + ' does not exist on jQuery.lemmonSlider' );
|
||||
}
|
||||
|
||||
};
|
||||
//
|
||||
//
|
||||
//
|
||||
$.fn.lemmonSlider.defaults = {
|
||||
|
||||
'items': '> *',
|
||||
'loop': true,
|
||||
'slideToLast': false,
|
||||
'slider': '> *:first',
|
||||
// since 0.2
|
||||
'infinite': true,
|
||||
'center': true,
|
||||
'offset': 0
|
||||
|
||||
}
|
||||
|
||||
})( jQuery );
|
||||
|
After Width: | Height: | Size: 148 B |
|
After Width: | Height: | Size: 149 B |